GitHub Readme Stats

GitHub Readme Stats

Get dynamically generated GitHub stats on your READMEs!

Tests Passing GitHub Contributors Tests Coverage Issues GitHub pull requests OpenSSF Scorecard

View Demo · Report Bug · Request Feature · FAQ · Ask Question

Français · 简体中文 · Español · Deutsch · 日本語 · Português Brasileiro · Italiano · 한국어 · Nederlands · नेपाली · Türkçe

Please note that documentation translations may be outdated; try to use English documentation if possible.

Love the project? Please consider donating to help it improve!

Give india logo

Are you considering supporting the project by donating to me? Please DO NOT!!!

Picture of Coromandel Express train tragedy

India has recently suffered one of the most devastating train accidents, and your help will be immensely valuable for the people who were affected by this tragedy.

Please visit this link and make a small donation to help the people in need. A small donation goes a long way. ❤️

Features

Important Notices

Important

Since the GitHub API only allows 5k requests per hour per user account, the public Vercel instance hosted on https://github-readme-stats.vercel.app/api could possibly hit the rate limiter (see #1471). We use caching to prevent this from happening (see https://github.com/anuraghazra/github-readme-stats#common-options). You can turn off these rate limit protections by deploying your own Vercel instance.

Uptime Badge

Important

We're a small team, and to prioritize, we rely on upvotes 👍. We use the Top Issues dashboard for tracking community demand (see #1935). Do not hesitate to upvote the issues and pull requests you are interested in. We will work on the most upvoted first.

GitHub Stats Card

Copy and paste this into your markdown, and that's it. Simple!

Change the ?username= value to your GitHub username.

[![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra)](https://github.com/anuraghazra/github-readme-stats)

Warning

By default, the stats card only shows statistics like stars, commits, and pull requests from public repositories. To show private statistics on the stats card, you should deploy your own instance using your own GitHub API token.

Note

Available ranks are S (top 1%), A+ (12.5%), A (25%), A- (37.5%), B+ (50%), B (62.5%), B- (75%), C+ (87.5%) and C (everyone). This ranking scheme is based on the Japanese academic grading system. The global percentile is calculated as a weighted sum of percentiles for each statistic (number of commits, pull requests, reviews, issues, stars, and followers), based on the cumulative distribution function of the exponential and the log-normal distributions. The implementation can be investigated at src/calculateRank.js. The circle around the rank shows 100 minus the global percentile.

Hiding individual stats

You can pass a query parameter &hide= to hide any specific stats with comma-separated values.

Options: &hide=stars,commits,prs,issues,contribs

![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&hide=contribs,prs)

Showing additional individual stats

You can pass a query parameter &show= to show any specific additional stats with comma-separated values.

Options: &show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage

![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage)

Showing icons

To enable icons, you can pass &show_icons=true in the query param, like so:

![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&show_icons=true)

Themes

With inbuilt themes, you can customize the look of the card without doing any manual customization.

Use &theme=THEME_NAME parameter like so :

![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&show_icons=true&theme=radical)

All inbuilt themes

GitHub Readme Stats comes with several built-in themes (e.g. dark, radical, merko, gruvbox, tokyonight, onedark, cobalt, synthwave, highcontrast, dracula).

GitHub Readme Stats Themes

You can look at a preview for all available themes or checkout the theme config file. Please note that we paused the addition of new themes to decrease maintenance efforts; all pull requests related to new themes will be closed.

Responsive Card Theme

Anurag's GitHub stats-Dark Anurag's GitHub stats-Light

Since GitHub will re-upload the cards and serve them from their CDN, we can not infer the browser/GitHub theme on the server side. There are, however, four methods you can use to create dynamics themes on the client side.

Use the transparent theme

We have included a transparent theme that has a transparent background. This theme is optimized to look good on GitHub's dark and light default themes. You can enable this theme using the &theme=transparent parameter like so:

![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&show_icons=true&theme=transparent)
👀 Show example

Anurag's GitHub stats

Add transparent alpha channel to a themes bg_color

You can use the bg_color parameter to make any of the available themes transparent. This is done by setting the bg_color to a color with a transparent alpha channel (i.e. bg_color=00000000):

![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&show_icons=true&bg_color=00000000)
👀 Show example

Anurag's GitHub stats

Use GitHub's theme context tag

You can use GitHub's theme context tags to switch the theme based on the user GitHub theme automatically. This is done by appending #gh-dark-mode-only or #gh-light-mode-only to the end of an image URL. This tag will define whether the image specified in the markdown is only shown to viewers using a light or a dark GitHub theme:

[![Anurag's GitHub stats-Dark](https://github-readme-stats.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark#gh-dark-mode-only)](https://github.com/anuraghazra/github-readme-stats#gh-dark-mode-only)
[![Anurag's GitHub stats-Light](https://github-readme-stats.vercel.app/api?username=anuraghazra&show_icons=true&theme=default#gh-light-mode-only)](https://github.com/anuraghazra/github-readme-stats#gh-light-mode-only)
👀 Show example

Anurag's GitHub stats-Dark Anurag's GitHub stats-Light

Use GitHub's new media feature

You can use GitHub's new media feature in HTML to specify whether to display images for light or dark themes. This is done using the HTML <picture> element in combination with the prefers-color-scheme media feature.

<picture>
  <source
    srcset="https://github-readme-stats.vercel.app/api?username=anuraghazra&show_icons=true&theme=dark"
    media="(prefers-color-scheme: dark)"
  />
  <source
    srcset="https://github-readme-stats.vercel.app/api?username=anuraghazra&show_icons=true"
    media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
  />
  <img src="https://github-readme-stats.vercel.app/api?username=anuraghazra&show_icons=true" />
</picture>
👀 Show example

Customization

You can customize the appearance of all your cards however you wish with URL parameters.

Common Options

Name Description Type Default value
title_color Card's title color. string (hex color) 2f80ed
text_color Body text color. string (hex color) 434d58
icon_color Icons color if available. string (hex color) 4c71f2
border_color Card's border color. Does not apply when hide_border is enabled. string (hex color) e4e2e2
bg_color Card's background color. string (hex color or a gradient in the form of angle,start,end) fffefe
hide_border Hides the card's border. boolean false
theme Name of the theme, choose from all available themes. enum default
cache_seconds Sets the cache header manually (min: 21600, max: 86400). integer 21600
locale Sets the language in the card, you can check full list of available locales here. enum en
border_radius Corner rounding on the card. number 4.5

Warning

We use caching to decrease the load on our servers (see #1471 (comment)). Our cards have a default cache of 6 hours (21600 seconds). Also, note that the cache is clamped to a minimum of 6 hours and a maximum of 24 hours. If you want the data on your statistics card to be updated more often you can deploy your own instance and set environment variable CACHE_SECONDS to a value of your choosing.

Gradient in bg_color

You can provide multiple comma-separated values in the bg_color option to render a gradient with the following format:

&bg_color=DEG,COLOR1,COLOR2,COLOR3...COLOR10
Available locales

Here is a list of all available locales:

Code Locale
cn Chinese
zh-tw Chinese (Taiwan)
ar Arabic
cs Czech
de German
en English
bn Bengali
es Spanish
fr French
hu Hungarian
Code Locale
it Italian
ja Japanese
kr Korean
nl Dutch
pt-pt Portuguese (Portugal)
pt-br Portuguese (Brazil)
np Nepali
el Greek
ru Russian
uk-ua Ukrainian
Code Locale
id Indonesian
ml Malayalam
my Burmese
sk Slovak
tr Turkish
pl Polish
uz Uzbek
vi Vietnamese
se Swedish

If we don't support your language, please consider contributing! You can find more information about how to do it in our contributing guidelines.

Stats Card Exclusive Options

Name Description Type Default value
hide Hides the specified items from stats. string (comma-separated values) null
hide_title Hides the title of your stats card. boolean false
card_width Sets the card's width manually. number 500px (approx.)
hide_rank Hides the rank and automatically resizes the card width. boolean false
rank_icon Shows alternative rank icon (i.e. github, percentile or default). enum default
show_icons Shows icons near all stats. boolean false
include_all_commits Count total commits instead of just the current year commits. boolean false
line_height Sets the line height between text. integer 25
exclude_repo Excludes specified repositories. string (comma-separated values) null
custom_title Sets a custom title for the card. string <username> GitHub Stats
text_bold Uses bold text. boolean true
disable_animations Disables all animations in the card. boolean false
ring_color Color of the rank circle. string (hex color) 2f80ed
number_format Switches between two available formats for displaying the card values short (i.e. 6.6k) and long (i.e. 6626). enum short
show Shows additional items on stats card (i.e. reviews, discussions_started, discussions_answered, prs_merged or prs_merged_percentage). string (comma-separated values) null

Note

When hide_rank=true, the minimum card width is 270 px + the title length and padding.

Repo Card Exclusive Options

Name Description Type Default value
show_owner Shows the repo's owner name. boolean false
description_lines_count Manually set the number of lines for the description. Specified value will be clamped between 1 and 3. If this parameter is not specified, the number of lines will be automatically adjusted according to the actual length of the description. number null

Gist Card Exclusive Options

Name Description Type Default value
show_owner Shows the gist's owner name. boolean false

Language Card Exclusive Options

Name Description Type Default value
hide Hides the specified languages from card. string (comma-separated values) null
hide_title Hides the title of your card. boolean false
layout Switches between five available layouts normal & compact & donut & donut-vertical & pie. enum normal
card_width Sets the card's width manually. number 300
langs_count Shows more languages on the card, between 1-20. integer 5 for normal and donut, 6 for other layouts
exclude_repo Excludes specified repositories. string (comma-separated values) null
custom_title Sets a custom title for the card. string Most Used Languages
disable_animations Disables all animations in the card. boolean false
hide_progress Uses the compact layout option, hides percentages, and removes the bars. boolean false
size_weight Configures language stats algorithm (see Language stats algorithm). integer 1
count_weight Configures language stats algorithm (see Language stats algorithm). integer 0

Warning

Language names should be URI-escaped, as specified in Percent Encoding (i.e: c++ should become c%2B%2B, jupyter notebook should become jupyter%20notebook, etc.) You can use urlencoder.org to help you do this automatically.

WakaTime Card Exclusive Options

Name Description Type Default value
hide Hides the languages specified from the card. string (comma-separated values) null
hide_title Hides the title of your card. boolean false
line_height Sets the line height between text. integer 25
hide_progress Hides the progress bar and percentage. boolean false
custom_title Sets a custom title for the card. string WakaTime Stats
layout Switches between two available layouts default & compact. enum default
langs_count Limits the number of languages on the card, defaults to all reported languages. integer null
api_domain Sets a custom API domain for the card, e.g. to use services like Hakatime or Wakapi string wakatime.com
display_format Sets the WakaTime stats display format. Choose time to display time-based stats or percent to show percentages. enum time
disable_animations Disables all animations in the card. boolean false

GitHub Extra Pins

GitHub extra pins allow you to pin more than 6 repositories in your profile using a GitHub readme profile.

Yay! You are no longer limited to 6 pinned repositories.

Usage

Copy-paste this code into your readme and change the links.

Endpoint: api/pin?username=anuraghazra&repo=github-readme-stats

[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats)](https://github.com/anuraghazra/github-readme-stats)

Demo

Readme Card

Use show_owner query option to include the repo's owner username

Readme Card

GitHub Gist Pins

GitHub gist pins allow you to pin gists in your GitHub profile using a GitHub readme profile.

Usage

Copy-paste this code into your readme and change the links.

Endpoint: api/gist?id=bbfce31e0217a3689c8d961a356cb10d

[![Gist Card](https://github-readme-stats.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d)](https://gist.github.com/Yizack/bbfce31e0217a3689c8d961a356cb10d/)

Demo

Gist Card

Use show_owner query option to include the gist's owner username

Gist Card

Top Languages Card

The top languages card shows a GitHub user's most frequently used languages.

Warning

By default, the language card shows language results only from public repositories. To include languages used in private repositories, you should deploy your own instance using your own GitHub API token.

Note

Top Languages does not indicate the user's skill level or anything like that; it's a GitHub metric to determine which languages have the most code on GitHub. It is a new feature of github-readme-stats.

Warning

This card shows language usage only inside your own non-forked repositories, not depending on who the author of the commits is. It does not include your contributions into another users/organizations repositories. Currently there are no way to get this data from GitHub API. If you want this behavior to be improved you can support this feature request created by @rickstaa inside GitHub Community.

Warning

Currently this card shows data only about first 100 repositories. This is because GitHub API limitations which cause downtimes of public instances (see #1471). In future this behavior will be improved by releasing GitHub action or providing environment variables for user's own instances.

Usage

Copy-paste this code into your readme and change the links.

Endpoint: api/top-langs?username=anuraghazra

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

Language stats algorithm

We use the following algorithm to calculate the languages percentages on the language card:

ranking_index = (byte_count ^ size_weight) * (repo_count ^ count_weight)

By default, only the byte count is used for determining the languages percentages shown on the language card (i.e. size_weight=1 and count_weight=0). You can, however, use the &size_weight= and &count_weight= options to weight the language usage calculation. The values must be positive real numbers. More details about the algorithm can be found here.

  • &size_weight=1&count_weight=0 - (default) Orders by byte count.
  • &size_weight=0.5&count_weight=0.5 - (recommended) Uses both byte and repo count for ranking
  • &size_weight=0&count_weight=1 - Orders by repo count
![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&size_weight=0.5&count_weight=0.5)

Exclude individual repositories

You can use the &exclude_repo=repo1,repo2 parameter to exclude individual repositories.

![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&exclude_repo=github-readme-stats,anuraghazra.github.io)

Hide individual languages

You can use &hide=language1,language2 parameter to hide individual languages.

![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&hide=javascript,html)

Show more languages

You can use the &langs_count= option to increase or decrease the number of languages shown on the card. Valid values are integers between 1 and 20 (inclusive). By default it was set to 5 for normal & donut and 6 for other layouts.

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

Compact Language Card Layout

You can use the &layout=compact option to change the card design.

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

Donut Chart Language Card Layout

You can use the &layout=donut option to change the card design.

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

Donut Vertical Chart Language Card Layout

You can use the &layout=donut-vertical option to change the card design.

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

Pie Chart Language Card Layout

You can use the &layout=pie option to change the card design.

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

Hide Progress Bars

You can use the &hide_progress=true option to hide the percentages and the progress bars (layout will be automatically set to compact).

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

Demo

Top Langs

  • Compact layout

Top Langs

  • Donut Chart layout

Top Langs

  • Donut Vertical Chart layout

Top Langs

  • Pie Chart layout

Top Langs

  • Hidden progress bars

Top Langs

WakaTime Stats Card

Warning

Please be aware that we currently only show data from WakaTime profiles that are public. You therefore have to make sure that BOTH Display code time publicly and Display languages, editors, os, categories publicly are enabled.

Change the ?username= value to your WakaTime username.

[![Harlok's WakaTime stats](https://github-readme-stats.vercel.app/api/wakatime?username=ffflabs)](https://github.com/anuraghazra/github-readme-stats)

Demo

Harlok's WakaTime stats

Harlok's WakaTime stats

  • Compact layout

Harlok's WakaTime stats


All Demos

  • Default

Anurag's GitHub stats

  • Hiding specific stats

Anurag's GitHub stats

  • Showing additional stats

Anurag's GitHub stats

  • Showing icons

Anurag's GitHub stats

  • Shows Github logo instead rank level

Anurag's GitHub stats

  • Shows user rank percentile instead of rank level

Anurag's GitHub stats

  • Customize Border Color

Anurag's GitHub stats

  • Include All Commits

Anurag's GitHub stats

  • Themes

Choose from any of the default themes

Anurag's GitHub stats

  • Gradient

Anurag's GitHub stats

  • Customizing stats card

Anurag's GitHub stats

  • Setting card locale

Anurag's GitHub stats

  • Customizing repo card

Customized Card

  • Gist card

Gist Card

  • Customizing gist card

Gist Card

  • Top languages

Top Langs

  • WakaTime card

Harlok's WakaTime stats


Quick Tip (Align The Cards)

By default, GitHub does not lay out the cards side by side. To do that, you can use this approach:

<a href="https://github.com/anuraghazra/github-readme-stats">
  <img height=200 align="center" src="https://github-readme-stats.vercel.app/api?username=anuraghazra" />
</a>
<a href="https://github.com/anuraghazra/convoychat">
  <img height=200 align="center" src="https://github-readme-stats.vercel.app/api/top-langs?username=anuraghazra&layout=compact&langs_count=8&card_width=320" />
</a>
<a href="https://github.com/anuraghazra/github-readme-stats">
  <img align="center" src="https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats" />
</a>
<a href="https://github.com/anuraghazra/convoychat">
  <img align="center" src="https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&repo=convoychat" />
</a>
👀 Show example

Deploy on your own

On Vercel

Since the GitHub API only allows 5k requests per hour, my https://github-readme-stats.vercel.app/api could possibly hit the rate limiter. If you host it on your own Vercel server, then you do not have to worry about anything. Click on the deploy button to get started!

Note

Since #58, we should be able to handle more than 5k requests and have fewer issues with downtime 😁.

Note

If you are on the Pro (i.e. paid) Vercel plan, the maxDuration value found in the vercel.json can be increased when your Vercel instance frequently times out during the card request. You are advised to keep this value lower than 30 seconds to prevent high memory usage.

Deploy to Vercel

🛠️ Step-by-step guide on setting up your own Vercel instance
  1. Go to vercel.com.
  2. Click on Log in.
  3. Sign in with GitHub by pressing Continue with GitHub.
  4. Sign in to GitHub and allow access to all repositories if prompted.
  5. Fork this repo.
  6. Go back to your Vercel dashboard.
  7. To import a project, click the Add New... button and select the Project option.
  8. Click the Continue with GitHub button, search for the required Git Repository and import it by clicking the Import button. Alternatively, you can import a Third-Party Git Repository using the Import Third-Party Git Repository -> link at the bottom of the page.
  9. Create a personal access token (PAT) here and enable the repo and user permissions (this allows access to see private repo and user stats).
  10. Add the PAT as an environment variable named PAT_1 (as shown).
  11. Click deploy, and you're good to go. See your domains to use the API!

On other platforms

Warning

This way of using GRS is not officially supported and was added to cater to some particular use cases where Vercel could not be used (e.g. #2341). The support for this method, therefore, is limited.

🛠️ Step-by-step guide for deploying on other platforms
  1. Fork or clone this repo as per your needs
  2. Add express to the dependencies section of package.json
    "dependencies": {
    "axios": "^0.24.0",
    "dotenv": "^8.2.0",
    "emoji-name-map": "^1.2.8",
    "github-username-regex": "^1.0.0",
    "upgrade": "^1.1.0",
    "word-wrap": "^1.2.3"
    },
  3. Run npm i if needed (initial setup)
  4. Run node express.js to start the server, or set the entry point to express.js in package.json if you're deploying on a managed service
    "main": "src/index.js",
  5. You're done 🎉

Disable rate limit protections

Github Readme Stats contains several Vercel environment variables that can be used to remove the rate limit protections:

  • CACHE_SECONDS: This environment variable takes precedence over our cache minimum and maximum values and can circumvent these values for self-hosted Vercel instances.

See the Vercel documentation on adding these environment variables to your Vercel instance.

Keep your fork up to date

You can keep your fork, and thus your private Vercel instance up to date with the upstream using GitHub's Sync Fork button. You can also use the pull package created by @wei to automate this process.

💖 Support the project

I open-source almost everything I can and try to reply to everyone needing help using these projects. Obviously, this takes time. You can use this service for free.

However, if you are using this project and are happy with it or just want to encourage me to continue creating stuff, there are a few ways you can do it:

  • Giving proper credit when you use github-readme-stats on your readme, linking back to it. :D
  • Starring and sharing the project. 🚀
  • paypal.me/anuraghazra - You can make a one-time donations via PayPal. I'll probably buy a coffee tea. 🍵

Thanks! ❤️


https://vercel.com?utm_source=github_readme_stats_team&utm_campaign=oss

Contributions are welcome! <3

Made with ❤️ and JavaScript.

anuraghazra/github-readme-stats

{
"props": {
"initialPayload": {
"allShortcutsEnabled": false,
"path": "/",
"repo": {
"id": 278335273,
"defaultBranch": "master",
"name": "github-readme-stats",
"ownerLogin": "anuraghazra",
"currentUserCanPush": false,
"isFork": false,
"isEmpty": false,
"createdAt": "2020-07-09T10:34:22.000Z",
"ownerAvatar": "https://avatars.githubusercontent.com/u/35374649?v=4",
"public": true,
"private": false,
"isOrgOwned": false
},
"currentUser": null,
"refInfo": {
"name": "master",
"listCacheKey": "v0:1721845449.0",
"canEdit": false,
"refType": "branch",
"currentOid": "bf7a3b0f4581e6d8b3c0d7ff7c9773aa3b0491eb"
},
"tree": {
"items": [
{
"name": ".github",
"path": ".github",
"contentType": "directory"
},
{
"name": ".husky",
"path": ".husky",
"contentType": "directory"
},
{
"name": ".vscode",
"path": ".vscode",
"contentType": "directory"
},
{
"name": "api",
"path": "api",
"contentType": "directory"
},
{
"name": "docs",
"path": "docs",
"contentType": "directory"
},
{
"name": "scripts",
"path": "scripts",
"contentType": "directory"
},
{
"name": "src",
"path": "src",
"contentType": "directory"
},
{
"name": "tests",
"path": "tests",
"contentType": "directory"
},
{
"name": "themes",
"path": "themes",
"contentType": "directory"
},
{
"name": ".eslintrc.json",
"path": ".eslintrc.json",
"contentType": "file"
},
{
"name": ".gitattributes",
"path": ".gitattributes",
"contentType": "file"
},
{
"name": ".gitignore",
"path": ".gitignore",
"contentType": "file"
},
{
"name": ".nvmrc",
"path": ".nvmrc",
"contentType": "file"
},
{
"name": ".prettierignore",
"path": ".prettierignore",
"contentType": "file"
},
{
"name": ".prettierrc.json",
"path": ".prettierrc.json",
"contentType": "file"
},
{
"name": ".vercelignore",
"path": ".vercelignore",
"contentType": "file"
},
{
"name": "CODE_OF_CONDUCT.md",
"path": "CODE_OF_CONDUCT.md",
"contentType": "file"
},
{
"name": "CONTRIBUTING.md",
"path": "CONTRIBUTING.md",
"contentType": "file"
},
{
"name": "LICENSE",
"path": "LICENSE",
"contentType": "file"
},
{
"name": "SECURITY.md",
"path": "SECURITY.md",
"contentType": "file"
},
{
"name": "codecov.yml",
"path": "codecov.yml",
"contentType": "file"
},
{
"name": "express.js",
"path": "express.js",
"contentType": "file"
},
{
"name": "jest.bench.config.js",
"path": "jest.bench.config.js",
"contentType": "file"
},
{
"name": "jest.config.js",
"path": "jest.config.js",
"contentType": "file"
},
{
"name": "jest.e2e.config.js",
"path": "jest.e2e.config.js",
"contentType": "file"
},
{
"name": "package-lock.json",
"path": "package-lock.json",
"contentType": "file"
},
{
"name": "package.json",
"path": "package.json",
"contentType": "file"
},
{
"name": "powered-by-vercel.svg",
"path": "powered-by-vercel.svg",
"contentType": "file"
},
{
"name": "readme.md",
"path": "readme.md",
"contentType": "file"
},
{
"name": "vercel.json",
"path": "vercel.json",
"contentType": "file"
}
],
"templateDirectorySuggestionUrl": null,
"readme": null,
"totalCount": 30,
"showBranchInfobar": false
},
"fileTree": null,
"fileTreeProcessingTime": null,
"foldersToFetch": [],
"treeExpanded": false,
"symbolsExpanded": false,
"isOverview": true,
"overview": {
"banners": {
"shouldRecommendReadme": false,
"isPersonalRepo": false,
"showUseActionBanner": false,
"actionSlug": null,
"actionId": null,
"showProtectBranchBanner": false,
"publishBannersInfo": {
"dismissActionNoticePath": "/settings/dismiss-notice/publish_action_from_repo",
"releasePath": "/anuraghazra/github-readme-stats/releases/new?marketplace=true",
"showPublishActionBanner": false
},
"interactionLimitBanner": null,
"showInvitationBanner": false,
"inviterName": null
},
"codeButton": {
"contactPath": "/contact",
"isEnterprise": false,
"local": {
"protocolInfo": {
"httpAvailable": true,
"sshAvailable": null,
"httpUrl": "https://github.com/anuraghazra/github-readme-stats.git",
"showCloneWarning": null,
"sshUrl": null,
"sshCertificatesRequired": null,
"sshCertificatesAvailable": null,
"ghCliUrl": "gh repo clone anuraghazra/github-readme-stats",
"defaultProtocol": "http",
"newSshKeyUrl": "/settings/ssh/new",
"setProtocolPath": "/users/set_protocol"
},
"platformInfo": {
"cloneUrl": "https://desktop.github.com",
"showVisualStudioCloneButton": false,
"visualStudioCloneUrl": "https://windows.github.com",
"showXcodeCloneButton": false,
"xcodeCloneUrl": "https://developer.apple.com",
"zipballUrl": "/anuraghazra/github-readme-stats/archive/refs/heads/master.zip"
}
},
"newCodespacePath": "/codespaces/new?hide_repo_select=true&repo=278335273"
},
"popovers": {
"rename": null,
"renamedParentRepo": null
},
"commitCount": "1,335",
"overviewFiles": [
{
"displayName": "readme.md",
"repoName": "github-readme-stats",
"refName": "master",
"path": "readme.md",
"preferredFileType": "readme",
"tabName": "README",
"richText": "<article class=\"markdown-body entry-content container-lg\" itemprop=\"text\"><p align=\"center\" dir=\"auto\">\n <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/5ed5810247a4af3a8a9992314473ffbcebe4d8a62530d7f66d992a384b3ab2de/68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f616e7572616768617a72612f696d6167652f75706c6f61642f76313539343930383234322f6c6f676f5f636373776d652e737667\"><img width=\"100px\" src=\"https://camo.githubusercontent.com/5ed5810247a4af3a8a9992314473ffbcebe4d8a62530d7f66d992a384b3ab2de/68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f616e7572616768617a72612f696d6167652f75706c6f61642f76313539343930383234322f6c6f676f5f636373776d652e737667\" align=\"center\" alt=\"GitHub Readme Stats\" data-canonical-src=\"https://res.cloudinary.com/anuraghazra/image/upload/v1594908242/logo_ccswme.svg\" style=\"max-width: 100%;\"></a>\n </p><div class=\"markdown-heading\" dir=\"auto\"><h2 align=\"center\" tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">GitHub Readme Stats</h2><a id=\"user-content-github-readme-stats\" class=\"anchor\" aria-label=\"Permalink: GitHub Readme Stats\" href=\"#github-readme-stats\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n <p align=\"center\" dir=\"auto\">Get dynamically generated GitHub stats on your READMEs!</p>\n<p dir=\"auto\"></p>\n <p align=\"center\" dir=\"auto\">\n <a href=\"https://github.com/anuraghazra/github-readme-stats/actions\">\n <img alt=\"Tests Passing\" src=\"https://github.com/anuraghazra/github-readme-stats/workflows/Test/badge.svg\" style=\"max-width: 100%;\">\n </a>\n <a href=\"https://github.com/anuraghazra/github-readme-stats/graphs/contributors\">\n <img alt=\"GitHub Contributors\" src=\"https://camo.githubusercontent.com/c4b452dcd7120efb3287e3f6822ff044b987d66abbf26d914e41c057442f82b5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6e7472696275746f72732f616e7572616768617a72612f6769746875622d726561646d652d7374617473\" data-canonical-src=\"https://img.shields.io/github/contributors/anuraghazra/github-readme-stats\" style=\"max-width: 100%;\">\n </a>\n <a href=\"https://codecov.io/gh/anuraghazra/github-readme-stats\" rel=\"nofollow\">\n <img alt=\"Tests Coverage\" src=\"https://camo.githubusercontent.com/5a8e8a278fa2d93431018b01fe38bdcc06e4b4a99157194bd03c36b9cf842372/68747470733a2f2f636f6465636f762e696f2f67682f616e7572616768617a72612f6769746875622d726561646d652d73746174732f6272616e63682f6d61737465722f67726170682f62616467652e737667\" data-canonical-src=\"https://codecov.io/gh/anuraghazra/github-readme-stats/branch/master/graph/badge.svg\" style=\"max-width: 100%;\">\n </a>\n <a href=\"https://github.com/anuraghazra/github-readme-stats/issues\">\n <img alt=\"Issues\" src=\"https://camo.githubusercontent.com/5b918b6c1ae73c626a2eac5db540b580acdc765758ce3710dda8a9413c49ee27/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f616e7572616768617a72612f6769746875622d726561646d652d73746174733f636f6c6f723d303038386666\" data-canonical-src=\"https://img.shields.io/github/issues/anuraghazra/github-readme-stats?color=0088ff\" style=\"max-width: 100%;\">\n </a>\n <a href=\"https://github.com/anuraghazra/github-readme-stats/pulls\">\n <img alt=\"GitHub pull requests\" src=\"https://camo.githubusercontent.com/69a59d356be90cf607cf8c3c42a771108864d414436d0a19880e3947c0b51500/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f616e7572616768617a72612f6769746875622d726561646d652d73746174733f636f6c6f723d303038386666\" data-canonical-src=\"https://img.shields.io/github/issues-pr/anuraghazra/github-readme-stats?color=0088ff\" style=\"max-width: 100%;\">\n </a>\n <a href=\"https://securityscorecards.dev/viewer/?uri=github.com/anuraghazra/github-readme-stats\" rel=\"nofollow\">\n <img alt=\"OpenSSF Scorecard\" src=\"https://camo.githubusercontent.com/8af5a230369ab98ba6fcebeba7ee9dc029794c48547912c2259691ae1f3d050f/68747470733a2f2f6170692e736563757269747973636f726563617264732e6465762f70726f6a656374732f6769746875622e636f6d2f616e7572616768617a72612f6769746875622d726561646d652d73746174732f6261646765\" data-canonical-src=\"https://api.securityscorecards.dev/projects/github.com/anuraghazra/github-readme-stats/badge\" style=\"max-width: 100%;\">\n </a>\n <br>\n <br>\n <a href=\"https://vercel.com?utm\\_source=github\\_readme\\_stats\\_team\\&amp;utm\\_campaign=oss\" rel=\"nofollow\">\n <img src=\"/anuraghazra/github-readme-stats/raw/master/powered-by-vercel.svg\" style=\"max-width: 100%;\">\n </a>\n </p>\n <p align=\"center\" dir=\"auto\">\n <a href=\"#all-demos\">View Demo</a>\n ·\n <a href=\"https://github.com/anuraghazra/github-readme-stats/issues/new?assignees=&amp;labels=bug&amp;projects=&amp;template=bug_report.yml\">Report Bug</a>\n ·\n <a href=\"https://github.com/anuraghazra/github-readme-stats/issues/new?assignees=&amp;labels=enhancement&amp;projects=&amp;template=feature_request.yml\">Request Feature</a>\n ·\n <a href=\"https://github.com/anuraghazra/github-readme-stats/discussions/1770\" data-hovercard-type=\"discussion\" data-hovercard-url=\"/anuraghazra/github-readme-stats/discussions/1770/hovercard\">FAQ</a>\n ·\n <a href=\"https://github.com/anuraghazra/github-readme-stats/discussions/new?category=q-a\">Ask Question</a>\n </p>\n <p align=\"center\" dir=\"auto\">\n <a href=\"/anuraghazra/github-readme-stats/blob/master/docs/readme_fr.md\">Français </a>\n ·\n <a href=\"/anuraghazra/github-readme-stats/blob/master/docs/readme_cn.md\">简体中文</a>\n ·\n <a href=\"/anuraghazra/github-readme-stats/blob/master/docs/readme_es.md\">Español</a>\n ·\n <a href=\"/anuraghazra/github-readme-stats/blob/master/docs/readme_de.md\">Deutsch</a>\n ·\n <a href=\"/anuraghazra/github-readme-stats/blob/master/docs/readme_ja.md\">日本語</a>\n ·\n <a href=\"/anuraghazra/github-readme-stats/blob/master/docs/readme_pt-BR.md\">Português Brasileiro</a>\n ·\n <a href=\"/anuraghazra/github-readme-stats/blob/master/docs/readme_it.md\">Italiano</a>\n ·\n <a href=\"/anuraghazra/github-readme-stats/blob/master/docs/readme_kr.md\">한국어</a>\n ·\n <a href=\"/anuraghazra/github-readme-stats/blob/master/docs/readme_nl.md\">Nederlands</a>\n ·\n <a href=\"/anuraghazra/github-readme-stats/blob/master/docs/readme_np.md\">नेपाली</a>\n ·\n <a href=\"/anuraghazra/github-readme-stats/blob/master/docs/readme_tr.md\">Türkçe</a>\n </p>\n<p dir=\"auto\"></p>\n<p align=\"center\" dir=\"auto\">Please note that documentation translations may be outdated; try to use English documentation if possible.</p>\n<p align=\"center\" dir=\"auto\">Love the project? Please consider <a href=\"https://www.paypal.me/anuraghazra\" rel=\"nofollow\">donating</a> to help it improve!</p>\n<a href=\"https://indiafightscorona.giveindia.org\" rel=\"nofollow\">\n <img src=\"https://camo.githubusercontent.com/d42e06ae38b14612b51ec4173d41d8c9b575089f7128df1a4db62ede73259ea7/68747470733a2f2f63667374617469632e676976652e646f2f6c6f676f2e706e67\" alt=\"Give india logo\" width=\"200\" data-canonical-src=\"https://cfstatic.give.do/logo.png\" style=\"max-width: 100%;\">\n</a>\n<p dir=\"auto\">Are you considering supporting the project by donating to me? Please DO NOT!!!</p>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/ffaf39c0ca494a55ea2c66f25821a2c95cde0810f8b791a2aafbe067d0cb9d52/68747470733a2f2f63667374617469632e676976652e646f2f39313065646532612d373839322d343366652d386338612d6465613435653936643935302e77656270\"><img src=\"https://camo.githubusercontent.com/ffaf39c0ca494a55ea2c66f25821a2c95cde0810f8b791a2aafbe067d0cb9d52/68747470733a2f2f63667374617469632e676976652e646f2f39313065646532612d373839322d343366652d386338612d6465613435653936643935302e77656270\" alt=\"Picture of Coromandel Express train tragedy\" width=\"35%\" data-canonical-src=\"https://cfstatic.give.do/910ede2a-7892-43fe-8c8a-dea45e96d950.webp\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">India has recently suffered one of the most devastating train accidents, and your help will be immensely valuable for the people who were affected by this tragedy.</p>\n<p dir=\"auto\">Please visit <a href=\"https://give.do/fundraisers/stand-beside-the-victims-of-the-coromandel-express-train-tragedy-in-odisha-donate-now\" rel=\"nofollow\">this link</a> and make a small donation to help the people in need. A small donation goes a long way. ❤️</p>\n<p dir=\"auto\"></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Features </h1><a id=\"user-content-features-\" class=\"anchor\" aria-label=\"Permalink: Features \" href=\"#features-\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"#github-stats-card\">GitHub Stats Card</a>\n<ul dir=\"auto\">\n<li><a href=\"#hiding-individual-stats\">Hiding individual stats</a></li>\n<li><a href=\"#showing-additional-individual-stats\">Showing additional individual stats</a></li>\n<li><a href=\"#showing-icons\">Showing icons</a></li>\n<li><a href=\"#themes\">Themes</a></li>\n<li><a href=\"#customization\">Customization</a></li>\n</ul>\n</li>\n<li><a href=\"#github-extra-pins\">GitHub Extra Pins</a>\n<ul dir=\"auto\">\n<li><a href=\"#usage\">Usage</a></li>\n<li><a href=\"#demo\">Demo</a></li>\n</ul>\n</li>\n<li><a href=\"#github-gist-pins\">GitHub Gist Pins</a>\n<ul dir=\"auto\">\n<li><a href=\"#usage-1\">Usage</a></li>\n<li><a href=\"#demo-1\">Demo</a></li>\n</ul>\n</li>\n<li><a href=\"#top-languages-card\">Top Languages Card</a>\n<ul dir=\"auto\">\n<li><a href=\"#usage-2\">Usage</a></li>\n<li><a href=\"#language-stats-algorithm\">Language stats algorithm</a></li>\n<li><a href=\"#exclude-individual-repositories\">Exclude individual repositories</a></li>\n<li><a href=\"#hide-individual-languages\">Hide individual languages</a></li>\n<li><a href=\"#show-more-languages\">Show more languages</a></li>\n<li><a href=\"#compact-language-card-layout\">Compact Language Card Layout</a></li>\n<li><a href=\"#donut-chart-language-card-layout\">Donut Chart Language Card Layout</a></li>\n<li><a href=\"#donut-vertical-chart-language-card-layout\">Donut Vertical Chart Language Card Layout</a></li>\n<li><a href=\"#pie-chart-language-card-layout\">Pie Chart Language Card Layout</a></li>\n<li><a href=\"#hide-progress-bars\">Hide Progress Bars</a></li>\n<li><a href=\"#demo-2\">Demo</a></li>\n</ul>\n</li>\n<li><a href=\"#wakatime-stats-card\">WakaTime Stats Card</a>\n<ul dir=\"auto\">\n<li><a href=\"#demo-3\">Demo</a></li>\n</ul>\n</li>\n<li><a href=\"#all-demos\">All Demos</a>\n<ul dir=\"auto\">\n<li><a href=\"#quick-tip-align-the-cards\">Quick Tip (Align The Cards)</a></li>\n</ul>\n</li>\n<li><a href=\"#deploy-on-your-own\">Deploy on your own</a>\n<ul dir=\"auto\">\n<li><a href=\"#on-vercel\">On Vercel</a>\n<ul dir=\"auto\">\n<li><a href=\"#film_projector-check-out-step-by-step-video-tutorial-by-codestackr\">📽️ Check Out Step By Step Video Tutorial By @codeSTACKr</a></li>\n</ul>\n</li>\n<li><a href=\"#on-other-platforms\">On other platforms</a></li>\n<li><a href=\"#disable-rate-limit-protections\">Disable rate limit protections</a></li>\n<li><a href=\"#keep-your-fork-up-to-date\">Keep your fork up to date</a></li>\n</ul>\n</li>\n<li><a href=\"#sparkling_heart-support-the-project\">💖 Support the project</a></li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Important Notices </h1><a id=\"user-content-important-notices-\" class=\"anchor\" aria-label=\"Permalink: Important Notices \" href=\"#important-notices-\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-alert markdown-alert-important\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-report mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"></path></svg>Important</p><p dir=\"auto\">Since the GitHub API only <a href=\"https://docs.github.com/en/graphql/overview/resource-limitations\">allows 5k requests per hour per user account</a>, the public Vercel instance hosted on <code>https://github-readme-stats.vercel.app/api</code> could possibly hit the rate limiter (see <a href=\"https://github.com/anuraghazra/github-readme-stats/issues/1471\" data-hovercard-type=\"issue\" data-hovercard-url=\"/anuraghazra/github-readme-stats/issues/1471/hovercard\">#1471</a>). We use caching to prevent this from happening (see <a href=\"https://github.com/anuraghazra/github-readme-stats#common-options\">https://github.com/anuraghazra/github-readme-stats#common-options</a>). You can turn off these rate limit protections by deploying <a href=\"#disable-rate-limit-protections\">your own Vercel instance</a>.</p>\n</div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/55c0075a4feb07a11e5eed1a4814945af5f80d939f3c4b83acdb5d22d05a58cf/68747470733a2f2f696d672e736869656c64732e696f2f656e64706f696e743f75726c3d68747470732533412532462532466769746875622d726561646d652d73746174732d6769742d6d6f6e69746f72696e672d6769746875622d726561646d652d73746174732d7465616d2e76657263656c2e617070253246617069253246737461747573253246757025334674797065253344736869656c6473\"><img alt=\"Uptime Badge\" src=\"https://camo.githubusercontent.com/55c0075a4feb07a11e5eed1a4814945af5f80d939f3c4b83acdb5d22d05a58cf/68747470733a2f2f696d672e736869656c64732e696f2f656e64706f696e743f75726c3d68747470732533412532462532466769746875622d726561646d652d73746174732d6769742d6d6f6e69746f72696e672d6769746875622d726561646d652d73746174732d7465616d2e76657263656c2e617070253246617069253246737461747573253246757025334674797065253344736869656c6473\" data-canonical-src=\"https://img.shields.io/endpoint?url=https%3A%2F%2Fgithub-readme-stats-git-monitoring-github-readme-stats-team.vercel.app%2Fapi%2Fstatus%2Fup%3Ftype%3Dshields\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-alert markdown-alert-important\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-report mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"></path></svg>Important</p><p dir=\"auto\">We're a small team, and to prioritize, we rely on upvotes 👍. We use the Top Issues dashboard for tracking community demand (see <a href=\"https://github.com/anuraghazra/github-readme-stats/issues/1935\" data-hovercard-type=\"issue\" data-hovercard-url=\"/anuraghazra/github-readme-stats/issues/1935/hovercard\">#1935</a>). Do not hesitate to upvote the issues and pull requests you are interested in. We will work on the most upvoted first.</p>\n</div>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">GitHub Stats Card</h1><a id=\"user-content-github-stats-card\" class=\"anchor\" aria-label=\"Permalink: GitHub Stats Card\" href=\"#github-stats-card\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Copy and paste this into your markdown, and that's it. Simple!</p>\n<p dir=\"auto\">Change the <code>?username=</code> value to your GitHub username.</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"[![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra)](https://github.com/anuraghazra/github-readme-stats)\"><pre><span class=\"pl-s\">[</span><span class=\"pl-s\">![</span>Anurag's GitHub stats<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api?username=anuraghazra</span><span class=\"pl-s\">)]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github.com/anuraghazra/github-readme-stats</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-alert markdown-alert-warning\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-alert mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"></path></svg>Warning</p><p dir=\"auto\">By default, the stats card only shows statistics like stars, commits, and pull requests from public repositories. To show private statistics on the stats card, you should <a href=\"#deploy-on-your-own\">deploy your own instance</a> using your own GitHub API token.</p>\n</div>\n<div class=\"markdown-alert markdown-alert-note\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-info mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"></path></svg>Note</p><p dir=\"auto\">Available ranks are S (top 1%), A+ (12.5%), A (25%), A- (37.5%), B+ (50%), B (62.5%), B- (75%), C+ (87.5%) and C (everyone). This ranking scheme is based on the <a href=\"https://wikipedia.org/wiki/Academic_grading_in_Japan\" rel=\"nofollow\">Japanese academic grading</a> system. The global percentile is calculated as a weighted sum of percentiles for each statistic (number of commits, pull requests, reviews, issues, stars, and followers), based on the cumulative distribution function of the <a href=\"https://wikipedia.org/wiki/exponential_distribution\" rel=\"nofollow\">exponential</a> and the <a href=\"https://wikipedia.org/wiki/Log-normal_distribution\" rel=\"nofollow\">log-normal</a> distributions. The implementation can be investigated at <a href=\"https://github.com/anuraghazra/github-readme-stats/blob/master/src/calculateRank.js\">src/calculateRank.js</a>. The circle around the rank shows 100 minus the global percentile.</p>\n</div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Hiding individual stats</h3><a id=\"user-content-hiding-individual-stats\" class=\"anchor\" aria-label=\"Permalink: Hiding individual stats\" href=\"#hiding-individual-stats\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can pass a query parameter <code>&amp;hide=</code> to hide any specific stats with comma-separated values.</p>\n<blockquote>\n<p dir=\"auto\">Options: <code>&amp;hide=stars,commits,prs,issues,contribs</code></p>\n</blockquote>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;hide=contribs,prs)\"><pre><span class=\"pl-s\">![</span>Anurag's GitHub stats<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;hide=contribs,prs</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Showing additional individual stats</h3><a id=\"user-content-showing-additional-individual-stats\" class=\"anchor\" aria-label=\"Permalink: Showing additional individual stats\" href=\"#showing-additional-individual-stats\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can pass a query parameter <code>&amp;show=</code> to show any specific additional stats with comma-separated values.</p>\n<blockquote>\n<p dir=\"auto\">Options: <code>&amp;show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage</code></p>\n</blockquote>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage)\"><pre><span class=\"pl-s\">![</span>Anurag's GitHub stats<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Showing icons</h3><a id=\"user-content-showing-icons\" class=\"anchor\" aria-label=\"Permalink: Showing icons\" href=\"#showing-icons\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">To enable icons, you can pass <code>&amp;show_icons=true</code> in the query param, like so:</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true)\"><pre><span class=\"pl-s\">![</span>Anurag's GitHub stats<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Themes</h3><a id=\"user-content-themes\" class=\"anchor\" aria-label=\"Permalink: Themes\" href=\"#themes\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">With inbuilt themes, you can customize the look of the card without doing any <a href=\"#customization\">manual customization</a>.</p>\n<p dir=\"auto\">Use <code>&amp;theme=THEME_NAME</code> parameter like so :</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=radical)\"><pre><span class=\"pl-s\">![</span>Anurag's GitHub stats<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=radical</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">All inbuilt themes</h4><a id=\"user-content-all-inbuilt-themes\" class=\"anchor\" aria-label=\"Permalink: All inbuilt themes\" href=\"#all-inbuilt-themes\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">GitHub Readme Stats comes with several built-in themes (e.g. <code>dark</code>, <code>radical</code>, <code>merko</code>, <code>gruvbox</code>, <code>tokyonight</code>, <code>onedark</code>, <code>cobalt</code>, <code>synthwave</code>, <code>highcontrast</code>, <code>dracula</code>).</p>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8a03f3bb3a4dc91351b24a0cc77408afc9923d0ce595f54e8b6e7f8c89b5ce46/68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f616e7572616768617a72612f696d6167652f75706c6f61642f76313539353137343533362f6772732d7468656d65735f6c34796e6a612e706e67\"><img src=\"https://camo.githubusercontent.com/8a03f3bb3a4dc91351b24a0cc77408afc9923d0ce595f54e8b6e7f8c89b5ce46/68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f616e7572616768617a72612f696d6167652f75706c6f61642f76313539353137343533362f6772732d7468656d65735f6c34796e6a612e706e67\" alt=\"GitHub Readme Stats Themes\" width=\"600px\" data-canonical-src=\"https://res.cloudinary.com/anuraghazra/image/upload/v1595174536/grs-themes_l4ynja.png\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">You can look at a preview for <a href=\"/anuraghazra/github-readme-stats/blob/master/themes/README.md\">all available themes</a> or checkout the <a href=\"/anuraghazra/github-readme-stats/blob/master/themes/index.js\">theme config file</a>. Please note that we paused the addition of new themes to decrease maintenance efforts; all pull requests related to new themes will be closed.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Responsive Card Theme</h4><a id=\"user-content-responsive-card-theme\" class=\"anchor\" aria-label=\"Permalink: Responsive Card Theme\" href=\"#responsive-card-theme\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://github.com/anuraghazra/github-readme-stats#responsive-card-theme#gh-dark-mode-only\"><img src=\"https://camo.githubusercontent.com/fba0009e2f7e3a808d647400c6586fc2aa4c4fa8b7f858da729352f4d5492d9f/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565267468656d653d6461726b2367682d6461726b2d6d6f64652d6f6e6c79\" alt=\"Anurag's GitHub stats-Dark\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=dark#gh-dark-mode-only\" style=\"max-width: 100%;\"></a>\n<a href=\"https://github.com/anuraghazra/github-readme-stats#responsive-card-theme#gh-light-mode-only\"><img src=\"https://camo.githubusercontent.com/d15d3a1d35773667147194f45ee69d14330aece4da53a8b85734b3cef4ede7b3/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565267468656d653d64656661756c742367682d6c696768742d6d6f64652d6f6e6c79\" alt=\"Anurag's GitHub stats-Light\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=default#gh-light-mode-only\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">Since GitHub will re-upload the cards and serve them from their <a href=\"https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-anonymized-urls\">CDN</a>, we can not infer the browser/GitHub theme on the server side. There are, however, four methods you can use to create dynamics themes on the client side.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h5 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Use the transparent theme</h5><a id=\"user-content-use-the-transparent-theme\" class=\"anchor\" aria-label=\"Permalink: Use the transparent theme\" href=\"#use-the-transparent-theme\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">We have included a <code>transparent</code> theme that has a transparent background. This theme is optimized to look good on GitHub's dark and light default themes. You can enable this theme using the <code>&amp;theme=transparent</code> parameter like so:</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=transparent)\"><pre><span class=\"pl-s\">![</span>Anurag's GitHub stats<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=transparent</span><span class=\"pl-s\">)</span></pre></div>\n<details>\n<summary>👀 Show example</summary>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/a81daac90f37a6c5bb0ed6b9d21ee9686d2f7088bb177bb4397813383b892acf/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565267468656d653d7472616e73706172656e74\"><img src=\"https://camo.githubusercontent.com/a81daac90f37a6c5bb0ed6b9d21ee9686d2f7088bb177bb4397813383b892acf/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565267468656d653d7472616e73706172656e74\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=transparent\" style=\"max-width: 100%;\"></a></p>\n</details>\n<div class=\"markdown-heading\" dir=\"auto\"><h5 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Add transparent alpha channel to a themes bg_color</h5><a id=\"user-content-add-transparent-alpha-channel-to-a-themes-bg_color\" class=\"anchor\" aria-label=\"Permalink: Add transparent alpha channel to a themes bg_color\" href=\"#add-transparent-alpha-channel-to-a-themes-bg_color\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can use the <code>bg_color</code> parameter to make any of <a href=\"/anuraghazra/github-readme-stats/blob/master/themes/README.md\">the available themes</a> transparent. This is done by setting the <code>bg_color</code> to a color with a transparent alpha channel (i.e. <code>bg_color=00000000</code>):</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;bg_color=00000000)\"><pre><span class=\"pl-s\">![</span>Anurag's GitHub stats<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;bg_color=00000000</span><span class=\"pl-s\">)</span></pre></div>\n<details>\n<summary>👀 Show example</summary>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/f4d3bcf64b7585533d415c32553f166cd2452c356d2628556e1b2a33d6d29cd9/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d747275652662675f636f6c6f723d3030303030303030\"><img src=\"https://camo.githubusercontent.com/f4d3bcf64b7585533d415c32553f166cd2452c356d2628556e1b2a33d6d29cd9/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d747275652662675f636f6c6f723d3030303030303030\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;bg_color=00000000\" style=\"max-width: 100%;\"></a></p>\n</details>\n<div class=\"markdown-heading\" dir=\"auto\"><h5 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Use GitHub's theme context tag</h5><a id=\"user-content-use-githubs-theme-context-tag\" class=\"anchor\" aria-label=\"Permalink: Use GitHub's theme context tag\" href=\"#use-githubs-theme-context-tag\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can use <a href=\"https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/\" rel=\"nofollow\">GitHub's theme context</a> tags to switch the theme based on the user GitHub theme automatically. This is done by appending <code>#gh-dark-mode-only</code> or <code>#gh-light-mode-only</code> to the end of an image URL. This tag will define whether the image specified in the markdown is only shown to viewers using a light or a dark GitHub theme:</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"[![Anurag's GitHub stats-Dark](https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=dark#gh-dark-mode-only)](https://github.com/anuraghazra/github-readme-stats#gh-dark-mode-only)\n[![Anurag's GitHub stats-Light](https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=default#gh-light-mode-only)](https://github.com/anuraghazra/github-readme-stats#gh-light-mode-only)\"><pre><span class=\"pl-s\">[</span><span class=\"pl-s\">![</span>Anurag's GitHub stats-Dark<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=dark#gh-dark-mode-only</span><span class=\"pl-s\">)]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github.com/anuraghazra/github-readme-stats#gh-dark-mode-only</span><span class=\"pl-s\">)</span>\n<span class=\"pl-s\">[</span><span class=\"pl-s\">![</span>Anurag's GitHub stats-Light<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=default#gh-light-mode-only</span><span class=\"pl-s\">)]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github.com/anuraghazra/github-readme-stats#gh-light-mode-only</span><span class=\"pl-s\">)</span></pre></div>\n<details>\n<summary>👀 Show example</summary>\n<p dir=\"auto\"><a href=\"https://github.com/anuraghazra/github-readme-stats#gh-dark-mode-only\"><img src=\"https://camo.githubusercontent.com/fba0009e2f7e3a808d647400c6586fc2aa4c4fa8b7f858da729352f4d5492d9f/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565267468656d653d6461726b2367682d6461726b2d6d6f64652d6f6e6c79\" alt=\"Anurag's GitHub stats-Dark\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=dark#gh-dark-mode-only\" style=\"max-width: 100%;\"></a>\n<a href=\"https://github.com/anuraghazra/github-readme-stats#gh-light-mode-only\"><img src=\"https://camo.githubusercontent.com/d15d3a1d35773667147194f45ee69d14330aece4da53a8b85734b3cef4ede7b3/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565267468656d653d64656661756c742367682d6c696768742d6d6f64652d6f6e6c79\" alt=\"Anurag's GitHub stats-Light\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=default#gh-light-mode-only\" style=\"max-width: 100%;\"></a></p>\n</details>\n<div class=\"markdown-heading\" dir=\"auto\"><h5 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Use GitHub's new media feature</h5><a id=\"user-content-use-githubs-new-media-feature\" class=\"anchor\" aria-label=\"Permalink: Use GitHub's new media feature\" href=\"#use-githubs-new-media-feature\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can use <a href=\"https://github.blog/changelog/2022-05-19-specify-theme-context-for-images-in-markdown-beta/\" rel=\"nofollow\">GitHub's new media feature</a> in HTML to specify whether to display images for light or dark themes. This is done using the HTML <code>&lt;picture&gt;</code> element in combination with the <code>prefers-color-scheme</code> media feature.</p>\n<div class=\"highlight highlight-text-html-basic notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;picture&gt;\n &lt;source\n srcset=&quot;https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=dark&quot;\n media=&quot;(prefers-color-scheme: dark)&quot;\n /&gt;\n &lt;source\n srcset=&quot;https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&quot;\n media=&quot;(prefers-color-scheme: light), (prefers-color-scheme: no-preference)&quot;\n /&gt;\n &lt;img src=&quot;https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&quot; /&gt;\n&lt;/picture&gt;\"><pre><span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">picture</span><span class=\"pl-kos\">&gt;</span>\n <span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">source</span>\n <span class=\"pl-c1\">srcset</span>=\"<span class=\"pl-s\">https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=dark</span>\"\n <span class=\"pl-c1\">media</span>=\"<span class=\"pl-s\">(prefers-color-scheme: dark)</span>\"\n /&gt;\n <span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">source</span>\n <span class=\"pl-c1\">srcset</span>=\"<span class=\"pl-s\">https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true</span>\"\n <span class=\"pl-c1\">media</span>=\"<span class=\"pl-s\">(prefers-color-scheme: light), (prefers-color-scheme: no-preference)</span>\"\n /&gt;\n <span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true</span>\" /&gt;\n<span class=\"pl-kos\">&lt;/</span><span class=\"pl-ent\">picture</span><span class=\"pl-kos\">&gt;</span></pre></div>\n<details>\n<summary>👀 Show example</summary>\n<themed-picture data-catalyst-inline=\"true\"><picture>\n <source srcset=\"https://camo.githubusercontent.com/6ed0416d0acefb43f41d160673bf1454578349e6308027c1c3d6339b4b1148fe/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565267468656d653d6461726b\" media=\"(prefers-color-scheme: dark)\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=dark\">\n <source srcset=\"https://camo.githubusercontent.com/3ea384a4806373ccd247f789b945332f2d392e6a3823424a9f19788446435cea/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565\" media=\"(prefers-color-scheme: light), (prefers-color-scheme: no-preference)\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true\">\n <img src=\"https://camo.githubusercontent.com/3ea384a4806373ccd247f789b945332f2d392e6a3823424a9f19788446435cea/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true\">\n</picture></themed-picture>\n</details>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Customization</h3><a id=\"user-content-customization\" class=\"anchor\" aria-label=\"Permalink: Customization\" href=\"#customization\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can customize the appearance of all your cards however you wish with URL parameters.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Common Options</h4><a id=\"user-content-common-options\" class=\"anchor\" aria-label=\"Permalink: Common Options\" href=\"#common-options\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<markdown-accessiblity-table><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Type</th>\n<th>Default value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>title_color</code></td>\n<td>Card's title color.</td>\n<td>string (hex color)</td>\n<td><code>2f80ed</code></td>\n</tr>\n<tr>\n<td><code>text_color</code></td>\n<td>Body text color.</td>\n<td>string (hex color)</td>\n<td><code>434d58</code></td>\n</tr>\n<tr>\n<td><code>icon_color</code></td>\n<td>Icons color if available.</td>\n<td>string (hex color)</td>\n<td><code>4c71f2</code></td>\n</tr>\n<tr>\n<td><code>border_color</code></td>\n<td>Card's border color. Does not apply when <code>hide_border</code> is enabled.</td>\n<td>string (hex color)</td>\n<td><code>e4e2e2</code></td>\n</tr>\n<tr>\n<td><code>bg_color</code></td>\n<td>Card's background color.</td>\n<td>string (hex color or a gradient in the form of <em>angle,start,end</em>)</td>\n<td><code>fffefe</code></td>\n</tr>\n<tr>\n<td><code>hide_border</code></td>\n<td>Hides the card's border.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>theme</code></td>\n<td>Name of the theme, choose from <a href=\"/anuraghazra/github-readme-stats/blob/master/themes/README.md\">all available themes</a>.</td>\n<td>enum</td>\n<td><code>default</code></td>\n</tr>\n<tr>\n<td><code>cache_seconds</code></td>\n<td>Sets the cache header manually (min: 21600, max: 86400).</td>\n<td>integer</td>\n<td><code>21600</code></td>\n</tr>\n<tr>\n<td><code>locale</code></td>\n<td>Sets the language in the card, you can check full list of available locales <a href=\"#available-locales\">here</a>.</td>\n<td>enum</td>\n<td><code>en</code></td>\n</tr>\n<tr>\n<td><code>border_radius</code></td>\n<td>Corner rounding on the card.</td>\n<td>number</td>\n<td><code>4.5</code></td>\n</tr>\n</tbody>\n</table></markdown-accessiblity-table>\n<div class=\"markdown-alert markdown-alert-warning\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-alert mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"></path></svg>Warning</p><p dir=\"auto\">We use caching to decrease the load on our servers (see <a class=\"issue-link js-issue-link\" data-error-text=\"Failed to load title\" data-id=\"1062727627\" data-permission-text=\"Title is private\" data-url=\"https://github.com/anuraghazra/github-readme-stats/issues/1471\" data-hovercard-type=\"issue\" data-hovercard-url=\"/anuraghazra/github-readme-stats/issues/1471/hovercard?comment_id=1271551425&amp;comment_type=issue_comment\" href=\"https://github.com/anuraghazra/github-readme-stats/issues/1471#issuecomment-1271551425\">#1471 (comment)</a>). Our cards have a default cache of 6 hours (21600 seconds). Also, note that the cache is clamped to a minimum of 6 hours and a maximum of 24 hours. If you want the data on your statistics card to be updated more often you can <a href=\"#deploy-on-your-own\">deploy your own instance</a> and set <a href=\"#disable-rate-limit-protections\">environment variable</a> <code>CACHE_SECONDS</code> to a value of your choosing.</p>\n</div>\n<div class=\"markdown-heading\" dir=\"auto\"><h5 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Gradient in bg_color</h5><a id=\"user-content-gradient-in-bg_color\" class=\"anchor\" aria-label=\"Permalink: Gradient in bg_color\" href=\"#gradient-in-bg_color\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can provide multiple comma-separated values in the bg_color option to render a gradient with the following format:</p>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"&amp;bg_color=DEG,COLOR1,COLOR2,COLOR3...COLOR10\"><pre class=\"notranslate\"><code>&amp;bg_color=DEG,COLOR1,COLOR2,COLOR3...COLOR10\n</code></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h5 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Available locales</h5><a id=\"user-content-available-locales\" class=\"anchor\" aria-label=\"Permalink: Available locales\" href=\"#available-locales\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Here is a list of all available locales:</p>\n<markdown-accessiblity-table><table>\n<tbody><tr><td>\n<table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Locale</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>cn</code></td>\n<td>Chinese</td>\n</tr>\n<tr>\n<td><code>zh-tw</code></td>\n<td>Chinese (Taiwan)</td>\n</tr>\n<tr>\n<td><code>ar</code></td>\n<td>Arabic</td>\n</tr>\n<tr>\n<td><code>cs</code></td>\n<td>Czech</td>\n</tr>\n<tr>\n<td><code>de</code></td>\n<td>German</td>\n</tr>\n<tr>\n<td><code>en</code></td>\n<td>English</td>\n</tr>\n<tr>\n<td><code>bn</code></td>\n<td>Bengali</td>\n</tr>\n<tr>\n<td><code>es</code></td>\n<td>Spanish</td>\n</tr>\n<tr>\n<td><code>fr</code></td>\n<td>French</td>\n</tr>\n<tr>\n<td><code>hu</code></td>\n<td>Hungarian</td>\n</tr>\n</tbody>\n</table>\n</td><td>\n<table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Locale</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>it</code></td>\n<td>Italian</td>\n</tr>\n<tr>\n<td><code>ja</code></td>\n<td>Japanese</td>\n</tr>\n<tr>\n<td><code>kr</code></td>\n<td>Korean</td>\n</tr>\n<tr>\n<td><code>nl</code></td>\n<td>Dutch</td>\n</tr>\n<tr>\n<td><code>pt-pt</code></td>\n<td>Portuguese (Portugal)</td>\n</tr>\n<tr>\n<td><code>pt-br</code></td>\n<td>Portuguese (Brazil)</td>\n</tr>\n<tr>\n<td><code>np</code></td>\n<td>Nepali</td>\n</tr>\n<tr>\n<td><code>el</code></td>\n<td>Greek</td>\n</tr>\n<tr>\n<td><code>ru</code></td>\n<td>Russian</td>\n</tr>\n<tr>\n<td><code>uk-ua</code></td>\n<td>Ukrainian</td>\n</tr>\n</tbody>\n</table>\n</td><td>\n<table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Locale</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>Indonesian</td>\n</tr>\n<tr>\n<td><code>ml</code></td>\n<td>Malayalam</td>\n</tr>\n<tr>\n<td><code>my</code></td>\n<td>Burmese</td>\n</tr>\n<tr>\n<td><code>sk</code></td>\n<td>Slovak</td>\n</tr>\n<tr>\n<td><code>tr</code></td>\n<td>Turkish</td>\n</tr>\n<tr>\n<td><code>pl</code></td>\n<td>Polish</td>\n</tr>\n<tr>\n<td><code>uz</code></td>\n<td>Uzbek</td>\n</tr>\n<tr>\n<td><code>vi</code></td>\n<td>Vietnamese</td>\n</tr>\n<tr>\n<td><code>se</code></td>\n<td>Swedish</td>\n</tr>\n</tbody>\n</table>\n</td></tr>\n</tbody></table></markdown-accessiblity-table>\n<p dir=\"auto\">If we don't support your language, please consider contributing! You can find more information about how to do it in our <a href=\"/anuraghazra/github-readme-stats/blob/master/CONTRIBUTING.md#translations-contribution\">contributing guidelines</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Stats Card Exclusive Options</h4><a id=\"user-content-stats-card-exclusive-options\" class=\"anchor\" aria-label=\"Permalink: Stats Card Exclusive Options\" href=\"#stats-card-exclusive-options\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<markdown-accessiblity-table><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Type</th>\n<th>Default value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>hide</code></td>\n<td>Hides the <a href=\"#hiding-individual-stats\">specified items</a> from stats.</td>\n<td>string (comma-separated values)</td>\n<td><code>null</code></td>\n</tr>\n<tr>\n<td><code>hide_title</code></td>\n<td>Hides the title of your stats card.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>card_width</code></td>\n<td>Sets the card's width manually.</td>\n<td>number</td>\n<td><code>500px (approx.)</code></td>\n</tr>\n<tr>\n<td><code>hide_rank</code></td>\n<td>Hides the rank and automatically resizes the card width.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>rank_icon</code></td>\n<td>Shows alternative rank icon (i.e. <code>github</code>, <code>percentile</code> or <code>default</code>).</td>\n<td>enum</td>\n<td><code>default</code></td>\n</tr>\n<tr>\n<td><code>show_icons</code></td>\n<td>Shows icons near all stats.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>include_all_commits</code></td>\n<td>Count total commits instead of just the current year commits.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>line_height</code></td>\n<td>Sets the line height between text.</td>\n<td>integer</td>\n<td><code>25</code></td>\n</tr>\n<tr>\n<td><code>exclude_repo</code></td>\n<td>Excludes specified repositories.</td>\n<td>string (comma-separated values)</td>\n<td><code>null</code></td>\n</tr>\n<tr>\n<td><code>custom_title</code></td>\n<td>Sets a custom title for the card.</td>\n<td>string</td>\n<td><code>&lt;username&gt; GitHub Stats</code></td>\n</tr>\n<tr>\n<td><code>text_bold</code></td>\n<td>Uses bold text.</td>\n<td>boolean</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>disable_animations</code></td>\n<td>Disables all animations in the card.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>ring_color</code></td>\n<td>Color of the rank circle.</td>\n<td>string (hex color)</td>\n<td><code>2f80ed</code></td>\n</tr>\n<tr>\n<td><code>number_format</code></td>\n<td>Switches between two available formats for displaying the card values <code>short</code> (i.e. <code>6.6k</code>) and <code>long</code> (i.e. <code>6626</code>).</td>\n<td>enum</td>\n<td><code>short</code></td>\n</tr>\n<tr>\n<td><code>show</code></td>\n<td>Shows <a href=\"#showing-additional-individual-stats\">additional items</a> on stats card (i.e. <code>reviews</code>, <code>discussions_started</code>, <code>discussions_answered</code>, <code>prs_merged</code> or <code>prs_merged_percentage</code>).</td>\n<td>string (comma-separated values)</td>\n<td><code>null</code></td>\n</tr>\n</tbody>\n</table></markdown-accessiblity-table>\n<div class=\"markdown-alert markdown-alert-note\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-info mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"></path></svg>Note</p><p dir=\"auto\">When hide_rank=<code>true</code>, the minimum card width is 270 px + the title length and padding.</p>\n</div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Repo Card Exclusive Options</h4><a id=\"user-content-repo-card-exclusive-options\" class=\"anchor\" aria-label=\"Permalink: Repo Card Exclusive Options\" href=\"#repo-card-exclusive-options\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<markdown-accessiblity-table><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Type</th>\n<th>Default value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>show_owner</code></td>\n<td>Shows the repo's owner name.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>description_lines_count</code></td>\n<td>Manually set the number of lines for the description. Specified value will be clamped between 1 and 3. If this parameter is not specified, the number of lines will be automatically adjusted according to the actual length of the description.</td>\n<td>number</td>\n<td><code>null</code></td>\n</tr>\n</tbody>\n</table></markdown-accessiblity-table>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Gist Card Exclusive Options</h4><a id=\"user-content-gist-card-exclusive-options\" class=\"anchor\" aria-label=\"Permalink: Gist Card Exclusive Options\" href=\"#gist-card-exclusive-options\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<markdown-accessiblity-table><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Type</th>\n<th>Default value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>show_owner</code></td>\n<td>Shows the gist's owner name.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n</tbody>\n</table></markdown-accessiblity-table>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Language Card Exclusive Options</h4><a id=\"user-content-language-card-exclusive-options\" class=\"anchor\" aria-label=\"Permalink: Language Card Exclusive Options\" href=\"#language-card-exclusive-options\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<markdown-accessiblity-table><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Type</th>\n<th>Default value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>hide</code></td>\n<td>Hides the <a href=\"#hide-individual-languages\">specified languages</a> from card.</td>\n<td>string (comma-separated values)</td>\n<td><code>null</code></td>\n</tr>\n<tr>\n<td><code>hide_title</code></td>\n<td>Hides the title of your card.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>layout</code></td>\n<td>Switches between five available layouts <code>normal</code> &amp; <code>compact</code> &amp; <code>donut</code> &amp; <code>donut-vertical</code> &amp; <code>pie</code>.</td>\n<td>enum</td>\n<td><code>normal</code></td>\n</tr>\n<tr>\n<td><code>card_width</code></td>\n<td>Sets the card's width manually.</td>\n<td>number</td>\n<td><code>300</code></td>\n</tr>\n<tr>\n<td><code>langs_count</code></td>\n<td>Shows more languages on the card, between 1-20.</td>\n<td>integer</td>\n<td><code>5</code> for <code>normal</code> and <code>donut</code>, <code>6</code> for other layouts</td>\n</tr>\n<tr>\n<td><code>exclude_repo</code></td>\n<td>Excludes specified repositories.</td>\n<td>string (comma-separated values)</td>\n<td><code>null</code></td>\n</tr>\n<tr>\n<td><code>custom_title</code></td>\n<td>Sets a custom title for the card.</td>\n<td>string</td>\n<td><code>Most Used Languages</code></td>\n</tr>\n<tr>\n<td><code>disable_animations</code></td>\n<td>Disables all animations in the card.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>hide_progress</code></td>\n<td>Uses the compact layout option, hides percentages, and removes the bars.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>size_weight</code></td>\n<td>Configures language stats algorithm (see <a href=\"#language-stats-algorithm\">Language stats algorithm</a>).</td>\n<td>integer</td>\n<td><code>1</code></td>\n</tr>\n<tr>\n<td><code>count_weight</code></td>\n<td>Configures language stats algorithm (see <a href=\"#language-stats-algorithm\">Language stats algorithm</a>).</td>\n<td>integer</td>\n<td><code>0</code></td>\n</tr>\n</tbody>\n</table></markdown-accessiblity-table>\n<div class=\"markdown-alert markdown-alert-warning\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-alert mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"></path></svg>Warning</p><p dir=\"auto\">Language names should be URI-escaped, as specified in <a href=\"https://en.wikipedia.org/wiki/Percent-encoding\" rel=\"nofollow\">Percent Encoding</a>\n(i.e: <code>c++</code> should become <code>c%2B%2B</code>, <code>jupyter notebook</code> should become <code>jupyter%20notebook</code>, etc.) You can use\n<a href=\"https://www.urlencoder.org/\" rel=\"nofollow\">urlencoder.org</a> to help you do this automatically.</p>\n</div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">WakaTime Card Exclusive Options</h4><a id=\"user-content-wakatime-card-exclusive-options\" class=\"anchor\" aria-label=\"Permalink: WakaTime Card Exclusive Options\" href=\"#wakatime-card-exclusive-options\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<markdown-accessiblity-table><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Type</th>\n<th>Default value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>hide</code></td>\n<td>Hides the languages specified from the card.</td>\n<td>string (comma-separated values)</td>\n<td><code>null</code></td>\n</tr>\n<tr>\n<td><code>hide_title</code></td>\n<td>Hides the title of your card.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>line_height</code></td>\n<td>Sets the line height between text.</td>\n<td>integer</td>\n<td><code>25</code></td>\n</tr>\n<tr>\n<td><code>hide_progress</code></td>\n<td>Hides the progress bar and percentage.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><code>custom_title</code></td>\n<td>Sets a custom title for the card.</td>\n<td>string</td>\n<td><code>WakaTime Stats</code></td>\n</tr>\n<tr>\n<td><code>layout</code></td>\n<td>Switches between two available layouts <code>default</code> &amp; <code>compact</code>.</td>\n<td>enum</td>\n<td><code>default</code></td>\n</tr>\n<tr>\n<td><code>langs_count</code></td>\n<td>Limits the number of languages on the card, defaults to all reported languages.</td>\n<td>integer</td>\n<td><code>null</code></td>\n</tr>\n<tr>\n<td><code>api_domain</code></td>\n<td>Sets a custom API domain for the card, e.g. to use services like <a href=\"https://github.com/mujx/hakatime\">Hakatime</a> or <a href=\"https://github.com/muety/wakapi\">Wakapi</a></td>\n<td>string</td>\n<td><code>wakatime.com</code></td>\n</tr>\n<tr>\n<td><code>display_format</code></td>\n<td>Sets the WakaTime stats display format. Choose <code>time</code> to display time-based stats or <code>percent</code> to show percentages.</td>\n<td>enum</td>\n<td><code>time</code></td>\n</tr>\n<tr>\n<td><code>disable_animations</code></td>\n<td>Disables all animations in the card.</td>\n<td>boolean</td>\n<td><code>false</code></td>\n</tr>\n</tbody>\n</table></markdown-accessiblity-table>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">GitHub Extra Pins</h1><a id=\"user-content-github-extra-pins\" class=\"anchor\" aria-label=\"Permalink: GitHub Extra Pins\" href=\"#github-extra-pins\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">GitHub extra pins allow you to pin more than 6 repositories in your profile using a GitHub readme profile.</p>\n<p dir=\"auto\">Yay! You are no longer limited to 6 pinned repositories.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Usage</h3><a id=\"user-content-usage\" class=\"anchor\" aria-label=\"Permalink: Usage\" href=\"#usage\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Copy-paste this code into your readme and change the links.</p>\n<p dir=\"auto\">Endpoint: <code>api/pin?username=anuraghazra&amp;repo=github-readme-stats</code></p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&amp;repo=github-readme-stats)](https://github.com/anuraghazra/github-readme-stats)\"><pre><span class=\"pl-s\">[</span><span class=\"pl-s\">![</span>Readme Card<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&amp;repo=github-readme-stats</span><span class=\"pl-s\">)]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github.com/anuraghazra/github-readme-stats</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Demo</h3><a id=\"user-content-demo\" class=\"anchor\" aria-label=\"Permalink: Demo\" href=\"#demo\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/eccdfcfde048cf298f9f55cf81fd181291904aeba12b451d4a05583c6fe6eabb/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f70696e2f3f757365726e616d653d616e7572616768617a7261267265706f3d6769746875622d726561646d652d7374617473\"><img src=\"https://camo.githubusercontent.com/eccdfcfde048cf298f9f55cf81fd181291904aeba12b451d4a05583c6fe6eabb/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f70696e2f3f757365726e616d653d616e7572616768617a7261267265706f3d6769746875622d726561646d652d7374617473\" alt=\"Readme Card\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&amp;repo=github-readme-stats\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">Use <a href=\"#repo-card-exclusive-options\">show_owner</a> query option to include the repo's owner username</p>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/37413dea342e3b4a08811a2cca3a6c0e1a6b00f3ed069a5bfe57018fe9ab5a37/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f70696e2f3f757365726e616d653d616e7572616768617a7261267265706f3d6769746875622d726561646d652d73746174732673686f775f6f776e65723d74727565\"><img src=\"https://camo.githubusercontent.com/37413dea342e3b4a08811a2cca3a6c0e1a6b00f3ed069a5bfe57018fe9ab5a37/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f70696e2f3f757365726e616d653d616e7572616768617a7261267265706f3d6769746875622d726561646d652d73746174732673686f775f6f776e65723d74727565\" alt=\"Readme Card\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&amp;repo=github-readme-stats&amp;show_owner=true\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">GitHub Gist Pins</h1><a id=\"user-content-github-gist-pins\" class=\"anchor\" aria-label=\"Permalink: GitHub Gist Pins\" href=\"#github-gist-pins\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">GitHub gist pins allow you to pin gists in your GitHub profile using a GitHub readme profile.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Usage</h3><a id=\"user-content-usage-1\" class=\"anchor\" aria-label=\"Permalink: Usage\" href=\"#usage-1\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Copy-paste this code into your readme and change the links.</p>\n<p dir=\"auto\">Endpoint: <code>api/gist?id=bbfce31e0217a3689c8d961a356cb10d</code></p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"[![Gist Card](https://github-readme-stats.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d)](https://gist.github.com/Yizack/bbfce31e0217a3689c8d961a356cb10d/)\"><pre><span class=\"pl-s\">[</span><span class=\"pl-s\">![</span>Gist Card<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d</span><span class=\"pl-s\">)]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://gist.github.com/Yizack/bbfce31e0217a3689c8d961a356cb10d/</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Demo</h3><a id=\"user-content-demo-1\" class=\"anchor\" aria-label=\"Permalink: Demo\" href=\"#demo-1\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/9b96333919fe5a7ecbc3e7a7c129f24d719267a18b9249d3dfae0b44c1bd9a02/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f676973743f69643d6262666365333165303231376133363839633864393631613335366362313064\"><img src=\"https://camo.githubusercontent.com/9b96333919fe5a7ecbc3e7a7c129f24d719267a18b9249d3dfae0b44c1bd9a02/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f676973743f69643d6262666365333165303231376133363839633864393631613335366362313064\" alt=\"Gist Card\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">Use <a href=\"#gist-card-exclusive-options\">show_owner</a> query option to include the gist's owner username</p>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/6493747db6ef3bf6d85bc1934e389f5eab264ddb842638674fece3afe810405c/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f676973743f69643d62626663653331653032313761333638396338643936316133353663623130642673686f775f6f776e65723d74727565\"><img src=\"https://camo.githubusercontent.com/6493747db6ef3bf6d85bc1934e389f5eab264ddb842638674fece3afe810405c/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f676973743f69643d62626663653331653032313761333638396338643936316133353663623130642673686f775f6f776e65723d74727565\" alt=\"Gist Card\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d&amp;show_owner=true\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Top Languages Card</h1><a id=\"user-content-top-languages-card\" class=\"anchor\" aria-label=\"Permalink: Top Languages Card\" href=\"#top-languages-card\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The top languages card shows a GitHub user's most frequently used languages.</p>\n<div class=\"markdown-alert markdown-alert-warning\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-alert mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"></path></svg>Warning</p><p dir=\"auto\">By default, the language card shows language results only from public repositories. To include languages used in private repositories, you should <a href=\"#deploy-on-your-own\">deploy your own instance</a> using your own GitHub API token.</p>\n</div>\n<div class=\"markdown-alert markdown-alert-note\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-info mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"></path></svg>Note</p><p dir=\"auto\">Top Languages does not indicate the user's skill level or anything like that; it's a GitHub metric to determine which languages have the most code on GitHub. It is a new feature of github-readme-stats.</p>\n</div>\n<div class=\"markdown-alert markdown-alert-warning\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-alert mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"></path></svg>Warning</p><p dir=\"auto\">This card shows language usage only inside your own non-forked repositories, not depending on who the author of the commits is. It does not include your contributions into another users/organizations repositories. Currently there are no way to get this data from GitHub API. If you want this behavior to be improved you can support <a href=\"https://github.com/orgs/community/discussions/18230\">this feature request</a> created by <a href=\"https://github.com/rickstaa\">@rickstaa</a> inside GitHub Community.</p>\n</div>\n<div class=\"markdown-alert markdown-alert-warning\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-alert mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"></path></svg>Warning</p><p dir=\"auto\">Currently this card shows data only about first 100 repositories. This is because GitHub API limitations which cause downtimes of public instances (see <a href=\"https://github.com/anuraghazra/github-readme-stats/issues/1471\" data-hovercard-type=\"issue\" data-hovercard-url=\"/anuraghazra/github-readme-stats/issues/1471/hovercard\">#1471</a>). In future this behavior will be improved by releasing GitHub action or providing environment variables for user's own instances.</p>\n</div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Usage</h3><a id=\"user-content-usage-2\" class=\"anchor\" aria-label=\"Permalink: Usage\" href=\"#usage-2\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Copy-paste this code into your readme and change the links.</p>\n<p dir=\"auto\">Endpoint: <code>api/top-langs?username=anuraghazra</code></p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra)](https://github.com/anuraghazra/github-readme-stats)\"><pre><span class=\"pl-s\">[</span><span class=\"pl-s\">![</span>Top Langs<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra</span><span class=\"pl-s\">)]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github.com/anuraghazra/github-readme-stats</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Language stats algorithm</h3><a id=\"user-content-language-stats-algorithm\" class=\"anchor\" aria-label=\"Permalink: Language stats algorithm\" href=\"#language-stats-algorithm\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">We use the following algorithm to calculate the languages percentages on the language card:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"ranking_index = (byte_count ^ size_weight) * (repo_count ^ count_weight)\"><pre><span class=\"pl-s1\">ranking_index</span> <span class=\"pl-c1\">=</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">byte_count</span> <span class=\"pl-c1\">^</span> <span class=\"pl-s1\">size_weight</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">*</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">repo_count</span> <span class=\"pl-c1\">^</span> <span class=\"pl-s1\">count_weight</span><span class=\"pl-kos\">)</span></pre></div>\n<p dir=\"auto\">By default, only the byte count is used for determining the languages percentages shown on the language card (i.e. <code>size_weight=1</code> and <code>count_weight=0</code>). You can, however, use the <code>&amp;size_weight=</code> and <code>&amp;count_weight=</code> options to weight the language usage calculation. The values must be positive real numbers. <a href=\"https://github.com/anuraghazra/github-readme-stats/issues/1600#issuecomment-1046056305\" data-hovercard-type=\"issue\" data-hovercard-url=\"/anuraghazra/github-readme-stats/issues/1600/hovercard\">More details about the algorithm can be found here</a>.</p>\n<ul dir=\"auto\">\n<li><code>&amp;size_weight=1&amp;count_weight=0</code> - <em>(default)</em> Orders by byte count.</li>\n<li><code>&amp;size_weight=0.5&amp;count_weight=0.5</code> - <em>(recommended)</em> Uses both byte and repo count for ranking</li>\n<li><code>&amp;size_weight=0&amp;count_weight=1</code> - Orders by repo count</li>\n</ul>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;size_weight=0.5&amp;count_weight=0.5)\"><pre><span class=\"pl-s\">![</span>Top Langs<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;size_weight=0.5&amp;count_weight=0.5</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Exclude individual repositories</h3><a id=\"user-content-exclude-individual-repositories\" class=\"anchor\" aria-label=\"Permalink: Exclude individual repositories\" href=\"#exclude-individual-repositories\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can use the <code>&amp;exclude_repo=repo1,repo2</code> parameter to exclude individual repositories.</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;exclude_repo=github-readme-stats,anuraghazra.github.io)\"><pre><span class=\"pl-s\">![</span>Top Langs<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;exclude_repo=github-readme-stats,anuraghazra.github.io</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Hide individual languages</h3><a id=\"user-content-hide-individual-languages\" class=\"anchor\" aria-label=\"Permalink: Hide individual languages\" href=\"#hide-individual-languages\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can use <code>&amp;hide=language1,language2</code> parameter to hide individual languages.</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;hide=javascript,html)\"><pre><span class=\"pl-s\">![</span>Top Langs<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;hide=javascript,html</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Show more languages</h3><a id=\"user-content-show-more-languages\" class=\"anchor\" aria-label=\"Permalink: Show more languages\" href=\"#show-more-languages\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can use the <code>&amp;langs_count=</code> option to increase or decrease the number of languages shown on the card. Valid values are integers between 1 and 20 (inclusive). By default it was set to <code>5</code> for <code>normal</code> &amp; <code>donut</code> and <code>6</code> for other layouts.</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;langs_count=8)\"><pre><span class=\"pl-s\">![</span>Top Langs<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;langs_count=8</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Compact Language Card Layout</h3><a id=\"user-content-compact-language-card-layout\" class=\"anchor\" aria-label=\"Permalink: Compact Language Card Layout\" href=\"#compact-language-card-layout\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can use the <code>&amp;layout=compact</code> option to change the card design.</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=compact)\"><pre><span class=\"pl-s\">![</span>Top Langs<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=compact</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Donut Chart Language Card Layout</h3><a id=\"user-content-donut-chart-language-card-layout\" class=\"anchor\" aria-label=\"Permalink: Donut Chart Language Card Layout\" href=\"#donut-chart-language-card-layout\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can use the <code>&amp;layout=donut</code> option to change the card design.</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=donut)](https://github.com/anuraghazra/github-readme-stats)\"><pre><span class=\"pl-s\">[</span><span class=\"pl-s\">![</span>Top Langs<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=donut</span><span class=\"pl-s\">)]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github.com/anuraghazra/github-readme-stats</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Donut Vertical Chart Language Card Layout</h3><a id=\"user-content-donut-vertical-chart-language-card-layout\" class=\"anchor\" aria-label=\"Permalink: Donut Vertical Chart Language Card Layout\" href=\"#donut-vertical-chart-language-card-layout\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can use the <code>&amp;layout=donut-vertical</code> option to change the card design.</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=donut-vertical)](https://github.com/anuraghazra/github-readme-stats)\"><pre><span class=\"pl-s\">[</span><span class=\"pl-s\">![</span>Top Langs<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=donut-vertical</span><span class=\"pl-s\">)]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github.com/anuraghazra/github-readme-stats</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Pie Chart Language Card Layout</h3><a id=\"user-content-pie-chart-language-card-layout\" class=\"anchor\" aria-label=\"Permalink: Pie Chart Language Card Layout\" href=\"#pie-chart-language-card-layout\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can use the <code>&amp;layout=pie</code> option to change the card design.</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=pie)](https://github.com/anuraghazra/github-readme-stats)\"><pre><span class=\"pl-s\">[</span><span class=\"pl-s\">![</span>Top Langs<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=pie</span><span class=\"pl-s\">)]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github.com/anuraghazra/github-readme-stats</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Hide Progress Bars</h3><a id=\"user-content-hide-progress-bars\" class=\"anchor\" aria-label=\"Permalink: Hide Progress Bars\" href=\"#hide-progress-bars\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can use the <code>&amp;hide_progress=true</code> option to hide the percentages and the progress bars (layout will be automatically set to <code>compact</code>).</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;hide_progress=true)\"><pre><span class=\"pl-s\">![</span>Top Langs<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;hide_progress=true</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Demo</h3><a id=\"user-content-demo-2\" class=\"anchor\" aria-label=\"Permalink: Demo\" href=\"#demo-2\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/62b438d4f8a49dbf31289ec2bd6b6c7271fa1aff6ad690c435a9d0e3d85e56d6/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d616e7572616768617a7261\"><img src=\"https://camo.githubusercontent.com/62b438d4f8a49dbf31289ec2bd6b6c7271fa1aff6ad690c435a9d0e3d85e56d6/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d616e7572616768617a7261\" alt=\"Top Langs\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Compact layout</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/4549ecbc0710a44c7f317bacef431d3a2b133e33567021a2dccbf0aa32f30665/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d616e7572616768617a7261266c61796f75743d636f6d70616374\"><img src=\"https://camo.githubusercontent.com/4549ecbc0710a44c7f317bacef431d3a2b133e33567021a2dccbf0aa32f30665/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d616e7572616768617a7261266c61796f75743d636f6d70616374\" alt=\"Top Langs\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=compact\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Donut Chart layout</li>\n</ul>\n<p dir=\"auto\"><a href=\"https://github.com/anuraghazra/github-readme-stats\"><img src=\"https://camo.githubusercontent.com/d8be156e1d20128302a562cd91de2fc741f81f503cda7d774cebc9aba456c098/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d616e7572616768617a7261266c61796f75743d646f6e7574\" alt=\"Top Langs\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=donut\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Donut Vertical Chart layout</li>\n</ul>\n<p dir=\"auto\"><a href=\"https://github.com/anuraghazra/github-readme-stats\"><img src=\"https://camo.githubusercontent.com/f3064ddb6ed730c15096e2281ba56f62fcd1c01edd968fbd988d0c1aba9b34b8/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d616e7572616768617a7261266c61796f75743d646f6e75742d766572746963616c\" alt=\"Top Langs\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=donut-vertical\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Pie Chart layout</li>\n</ul>\n<p dir=\"auto\"><a href=\"https://github.com/anuraghazra/github-readme-stats\"><img src=\"https://camo.githubusercontent.com/63143de4ae99ed8a0a2c453038f6debb7ba77815dceacc97a617f00d6fd418af/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d616e7572616768617a7261266c61796f75743d706965\" alt=\"Top Langs\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;layout=pie\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Hidden progress bars</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/9956eafe39bf06a30858b72293cb039cf5c3d1becc4ac87c3b63ab5a529422a4/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d616e7572616768617a726126686964655f70726f67726573733d74727565\"><img src=\"https://camo.githubusercontent.com/9956eafe39bf06a30858b72293cb039cf5c3d1becc4ac87c3b63ab5a529422a4/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d616e7572616768617a726126686964655f70726f67726573733d74727565\" alt=\"Top Langs\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra&amp;hide_progress=true\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">WakaTime Stats Card</h1><a id=\"user-content-wakatime-stats-card\" class=\"anchor\" aria-label=\"Permalink: WakaTime Stats Card\" href=\"#wakatime-stats-card\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-alert markdown-alert-warning\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-alert mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"></path></svg>Warning</p><p dir=\"auto\">Please be aware that we currently only show data from WakaTime profiles that are public. You therefore have to make sure that <strong>BOTH</strong> <code>Display code time publicly</code> and <code>Display languages, editors, os, categories publicly</code> are enabled.</p>\n</div>\n<p dir=\"auto\">Change the <code>?username=</code> value to your <a href=\"https://wakatime.com\" rel=\"nofollow\">WakaTime</a> username.</p>\n<div class=\"highlight highlight-text-md notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"[![Harlok's WakaTime stats](https://github-readme-stats.vercel.app/api/wakatime?username=ffflabs)](https://github.com/anuraghazra/github-readme-stats)\"><pre><span class=\"pl-s\">[</span><span class=\"pl-s\">![</span>Harlok's WakaTime stats<span class=\"pl-s\">]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github-readme-stats.vercel.app/api/wakatime?username=ffflabs</span><span class=\"pl-s\">)]</span><span class=\"pl-s\">(</span><span class=\"pl-corl\">https://github.com/anuraghazra/github-readme-stats</span><span class=\"pl-s\">)</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Demo</h3><a id=\"user-content-demo-3\" class=\"anchor\" aria-label=\"Permalink: Demo\" href=\"#demo-3\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/6d30e660c959262eee8031c300824a01aad432921787784040b561a86cd187dd/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f77616b6174696d653f757365726e616d653d6666666c616273\"><img src=\"https://camo.githubusercontent.com/6d30e660c959262eee8031c300824a01aad432921787784040b561a86cd187dd/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f77616b6174696d653f757365726e616d653d6666666c616273\" alt=\"Harlok's WakaTime stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/wakatime?username=ffflabs\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/5a541eeaef9b007057a11a50da66ffb452b8a7bd040fffd16bb07d4593f009c0/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f77616b6174696d653f757365726e616d653d6666666c61627326686964655f70726f67726573733d74727565\"><img src=\"https://camo.githubusercontent.com/5a541eeaef9b007057a11a50da66ffb452b8a7bd040fffd16bb07d4593f009c0/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f77616b6174696d653f757365726e616d653d6666666c61627326686964655f70726f67726573733d74727565\" alt=\"Harlok's WakaTime stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/wakatime?username=ffflabs&amp;hide_progress=true\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Compact layout</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/d1299c994951efdaa457e9ea567e0e99d89f4ca03485f18b3a11d63e60e373ce/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f77616b6174696d653f757365726e616d653d6666666c616273266c61796f75743d636f6d70616374\"><img src=\"https://camo.githubusercontent.com/d1299c994951efdaa457e9ea567e0e99d89f4ca03485f18b3a11d63e60e373ce/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f77616b6174696d653f757365726e616d653d6666666c616273266c61796f75743d636f6d70616374\" alt=\"Harlok's WakaTime stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/wakatime?username=ffflabs&amp;layout=compact\" style=\"max-width: 100%;\"></a></p>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">All Demos</h1><a id=\"user-content-all-demos\" class=\"anchor\" aria-label=\"Permalink: All Demos\" href=\"#all-demos\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li>Default</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/21201072665443dc4d4579462dd2e541899fea28755a0329b01bf90e3b39756c/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a7261\"><img src=\"https://camo.githubusercontent.com/21201072665443dc4d4579462dd2e541899fea28755a0329b01bf90e3b39756c/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a7261\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Hiding specific stats</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/a2ab15ed69241bc05f07cad75c2938ebff84a4f23a147b72ad4cf1c2db64297c/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a726126686964653d636f6e74726962732c697373756573\"><img src=\"https://camo.githubusercontent.com/a2ab15ed69241bc05f07cad75c2938ebff84a4f23a147b72ad4cf1c2db64297c/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a726126686964653d636f6e74726962732c697373756573\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;hide=contribs,issues\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Showing additional stats</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/3f0ef9f8a450103f9ba47b22d2b17a0f1d05aa57ca0678e1117e34550209ee6f/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d747275652673686f773d726576696577732c64697363757373696f6e735f737461727465642c64697363757373696f6e735f616e7377657265642c7072735f6d65726765642c7072735f6d65726765645f70657263656e74616765\"><img src=\"https://camo.githubusercontent.com/3f0ef9f8a450103f9ba47b22d2b17a0f1d05aa57ca0678e1117e34550209ee6f/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d747275652673686f773d726576696577732c64697363757373696f6e735f737461727465642c64697363757373696f6e735f616e7377657265642c7072735f6d65726765642c7072735f6d65726765645f70657263656e74616765\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;show=reviews,discussions_started,discussions_answered,prs_merged,prs_merged_percentage\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Showing icons</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/83369fd9e5814ef20a0996c11ef6e7083c51f84dbdc0212824862b87f1321bd0/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a726126686964653d6973737565732673686f775f69636f6e733d74727565\"><img src=\"https://camo.githubusercontent.com/83369fd9e5814ef20a0996c11ef6e7083c51f84dbdc0212824862b87f1321bd0/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a726126686964653d6973737565732673686f775f69636f6e733d74727565\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;hide=issues&amp;show_icons=true\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Shows Github logo instead rank level</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/c1f600c4fe47414462cb42c5389bb13912c5e0a1c19f15c05e633d74b2b319a5/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612672616e6b5f69636f6e3d676974687562\"><img src=\"https://camo.githubusercontent.com/c1f600c4fe47414462cb42c5389bb13912c5e0a1c19f15c05e633d74b2b319a5/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612672616e6b5f69636f6e3d676974687562\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;rank_icon=github\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Shows user rank percentile instead of rank level</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/488c8663a5cbc479e0da8eaa971d6a63d209f11103fcb6ebfbd1558e1c3875ee/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612672616e6b5f69636f6e3d70657263656e74696c65\"><img src=\"https://camo.githubusercontent.com/488c8663a5cbc479e0da8eaa971d6a63d209f11103fcb6ebfbd1558e1c3875ee/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612672616e6b5f69636f6e3d70657263656e74696c65\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;rank_icon=percentile\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Customize Border Color</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/62d3471c2ae1e006e926bb9d78fbcd4cd83b06102b1e52a133edac1ef4aafc8d/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a726126626f726465725f636f6c6f723d326534303538\"><img src=\"https://camo.githubusercontent.com/62d3471c2ae1e006e926bb9d78fbcd4cd83b06102b1e52a133edac1ef4aafc8d/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a726126626f726465725f636f6c6f723d326534303538\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;border_color=2e4058\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Include All Commits</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/18292e2461dc61a4058f6b37f028261171d19aa57fc9946b9b6215445d29f415/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a726126696e636c7564655f616c6c5f636f6d6d6974733d74727565\"><img src=\"https://camo.githubusercontent.com/18292e2461dc61a4058f6b37f028261171d19aa57fc9946b9b6215445d29f415/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a726126696e636c7564655f616c6c5f636f6d6d6974733d74727565\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;include_all_commits=true\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Themes</li>\n</ul>\n<p dir=\"auto\">Choose from any of the <a href=\"#themes\">default themes</a></p>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/7a14b397d213bc52578b9089d1ec02e3dbd77783a82966d0f96c78ba3d489875/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565267468656d653d7261646963616c\"><img src=\"https://camo.githubusercontent.com/7a14b397d213bc52578b9089d1ec02e3dbd77783a82966d0f96c78ba3d489875/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565267468656d653d7261646963616c\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;show_icons=true&amp;theme=radical\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Gradient</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/ebc4a31bfa47c3136485d095d834a8d753d30b6633fdda9795e97a4cacf399d7/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612662675f636f6c6f723d33302c6539363434332c393034653935267469746c655f636f6c6f723d66666626746578745f636f6c6f723d666666\"><img src=\"https://camo.githubusercontent.com/ebc4a31bfa47c3136485d095d834a8d753d30b6633fdda9795e97a4cacf399d7/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a72612662675f636f6c6f723d33302c6539363434332c393034653935267469746c655f636f6c6f723d66666626746578745f636f6c6f723d666666\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra&amp;bg_color=30,e96443,904e95&amp;title_color=fff&amp;text_color=fff\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Customizing stats card</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/e5c7aabefeaf1030721249ef22a336b99b88c7346e8f0fe86b592bb5e1a6576d/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f3f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565267469746c655f636f6c6f723d6666662669636f6e5f636f6c6f723d37396666393726746578745f636f6c6f723d3966396639662662675f636f6c6f723d313531353135\"><img src=\"https://camo.githubusercontent.com/e5c7aabefeaf1030721249ef22a336b99b88c7346e8f0fe86b592bb5e1a6576d/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f3f757365726e616d653d616e7572616768617a72612673686f775f69636f6e733d74727565267469746c655f636f6c6f723d6666662669636f6e5f636f6c6f723d37396666393726746578745f636f6c6f723d3966396639662662675f636f6c6f723d313531353135\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/?username=anuraghazra&amp;show_icons=true&amp;title_color=fff&amp;icon_color=79ff97&amp;text_color=9f9f9f&amp;bg_color=151515\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Setting card locale</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/c1234b4cdcb648ff8c4fd22ae8a39c9bd33b537881e9ad61cdf6f3cac8f515a3/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f3f757365726e616d653d616e7572616768617a7261266c6f63616c653d6573\"><img src=\"https://camo.githubusercontent.com/c1234b4cdcb648ff8c4fd22ae8a39c9bd33b537881e9ad61cdf6f3cac8f515a3/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f3f757365726e616d653d616e7572616768617a7261266c6f63616c653d6573\" alt=\"Anurag's GitHub stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/?username=anuraghazra&amp;locale=es\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Customizing repo card</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/7a00de81fdae384b076a33faa1d2fd7f8b0f17fff5bf7064dbd20ad20b0b6f90/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f70696e3f757365726e616d653d616e7572616768617a7261267265706f3d6769746875622d726561646d652d7374617473267469746c655f636f6c6f723d6666662669636f6e5f636f6c6f723d66396639663926746578745f636f6c6f723d3966396639662662675f636f6c6f723d313531353135\"><img src=\"https://camo.githubusercontent.com/7a00de81fdae384b076a33faa1d2fd7f8b0f17fff5bf7064dbd20ad20b0b6f90/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f70696e3f757365726e616d653d616e7572616768617a7261267265706f3d6769746875622d726561646d652d7374617473267469746c655f636f6c6f723d6666662669636f6e5f636f6c6f723d66396639663926746578745f636f6c6f723d3966396639662662675f636f6c6f723d313531353135\" alt=\"Customized Card\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/pin?username=anuraghazra&amp;repo=github-readme-stats&amp;title_color=fff&amp;icon_color=f9f9f9&amp;text_color=9f9f9f&amp;bg_color=151515\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Gist card</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/9b96333919fe5a7ecbc3e7a7c129f24d719267a18b9249d3dfae0b44c1bd9a02/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f676973743f69643d6262666365333165303231376133363839633864393631613335366362313064\"><img src=\"https://camo.githubusercontent.com/9b96333919fe5a7ecbc3e7a7c129f24d719267a18b9249d3dfae0b44c1bd9a02/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f676973743f69643d6262666365333165303231376133363839633864393631613335366362313064\" alt=\"Gist Card\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Customizing gist card</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/244fad0c8ad7c5b54de2620ce12bffe6fd87d7011407c3a87040e3f393bd8b23/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f676973743f69643d6262666365333165303231376133363839633864393631613335366362313064267468656d653d63616c6d\"><img src=\"https://camo.githubusercontent.com/244fad0c8ad7c5b54de2620ce12bffe6fd87d7011407c3a87040e3f393bd8b23/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f676973743f69643d6262666365333165303231376133363839633864393631613335366362313064267468656d653d63616c6d\" alt=\"Gist Card\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/gist?id=bbfce31e0217a3689c8d961a356cb10d&amp;theme=calm\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Top languages</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/62b438d4f8a49dbf31289ec2bd6b6c7271fa1aff6ad690c435a9d0e3d85e56d6/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d616e7572616768617a7261\"><img src=\"https://camo.githubusercontent.com/62b438d4f8a49dbf31289ec2bd6b6c7271fa1aff6ad690c435a9d0e3d85e56d6/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d616e7572616768617a7261\" alt=\"Top Langs\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/top-langs/?username=anuraghazra\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>WakaTime card</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/6d30e660c959262eee8031c300824a01aad432921787784040b561a86cd187dd/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f77616b6174696d653f757365726e616d653d6666666c616273\"><img src=\"https://camo.githubusercontent.com/6d30e660c959262eee8031c300824a01aad432921787784040b561a86cd187dd/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f77616b6174696d653f757365726e616d653d6666666c616273\" alt=\"Harlok's WakaTime stats\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/wakatime?username=ffflabs\" style=\"max-width: 100%;\"></a></p>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Quick Tip (Align The Cards)</h2><a id=\"user-content-quick-tip-align-the-cards\" class=\"anchor\" aria-label=\"Permalink: Quick Tip (Align The Cards)\" href=\"#quick-tip-align-the-cards\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">By default, GitHub does not lay out the cards side by side. To do that, you can use this approach:</p>\n<div class=\"highlight highlight-text-html-basic notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;a href=&quot;https://github.com/anuraghazra/github-readme-stats&quot;&gt;\n &lt;img height=200 align=&quot;center&quot; src=&quot;https://github-readme-stats.vercel.app/api?username=anuraghazra&quot; /&gt;\n&lt;/a&gt;\n&lt;a href=&quot;https://github.com/anuraghazra/convoychat&quot;&gt;\n &lt;img height=200 align=&quot;center&quot; src=&quot;https://github-readme-stats.vercel.app/api/top-langs?username=anuraghazra&amp;layout=compact&amp;langs_count=8&amp;card_width=320&quot; /&gt;\n&lt;/a&gt;\"><pre><span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">a</span> <span class=\"pl-c1\">href</span>=\"<span class=\"pl-s\">https://github.com/anuraghazra/github-readme-stats</span>\"<span class=\"pl-kos\">&gt;</span>\n <span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=<span class=\"pl-s\">200</span> <span class=\"pl-c1\">align</span>=\"<span class=\"pl-s\">center</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://github-readme-stats.vercel.app/api?username=anuraghazra</span>\" /&gt;\n<span class=\"pl-kos\">&lt;/</span><span class=\"pl-ent\">a</span><span class=\"pl-kos\">&gt;</span>\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">a</span> <span class=\"pl-c1\">href</span>=\"<span class=\"pl-s\">https://github.com/anuraghazra/convoychat</span>\"<span class=\"pl-kos\">&gt;</span>\n <span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=<span class=\"pl-s\">200</span> <span class=\"pl-c1\">align</span>=\"<span class=\"pl-s\">center</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://github-readme-stats.vercel.app/api/top-langs?username=anuraghazra&amp;layout=compact&amp;langs_count=8&amp;card_width=320</span>\" /&gt;\n<span class=\"pl-kos\">&lt;/</span><span class=\"pl-ent\">a</span><span class=\"pl-kos\">&gt;</span></pre></div>\n<div class=\"highlight highlight-text-html-basic notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;a href=&quot;https://github.com/anuraghazra/github-readme-stats&quot;&gt;\n &lt;img align=&quot;center&quot; src=&quot;https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&amp;repo=github-readme-stats&quot; /&gt;\n&lt;/a&gt;\n&lt;a href=&quot;https://github.com/anuraghazra/convoychat&quot;&gt;\n &lt;img align=&quot;center&quot; src=&quot;https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&amp;repo=convoychat&quot; /&gt;\n&lt;/a&gt;\"><pre><span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">a</span> <span class=\"pl-c1\">href</span>=\"<span class=\"pl-s\">https://github.com/anuraghazra/github-readme-stats</span>\"<span class=\"pl-kos\">&gt;</span>\n <span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">align</span>=\"<span class=\"pl-s\">center</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&amp;repo=github-readme-stats</span>\" /&gt;\n<span class=\"pl-kos\">&lt;/</span><span class=\"pl-ent\">a</span><span class=\"pl-kos\">&gt;</span>\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">a</span> <span class=\"pl-c1\">href</span>=\"<span class=\"pl-s\">https://github.com/anuraghazra/convoychat</span>\"<span class=\"pl-kos\">&gt;</span>\n <span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">align</span>=\"<span class=\"pl-s\">center</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&amp;repo=convoychat</span>\" /&gt;\n<span class=\"pl-kos\">&lt;/</span><span class=\"pl-ent\">a</span><span class=\"pl-kos\">&gt;</span></pre></div>\n<details>\n<summary>👀 Show example</summary>\n<a href=\"https://github.com/anuraghazra/github-readme-stats\">\n <img height=\"200\" align=\"center\" src=\"https://camo.githubusercontent.com/21201072665443dc4d4579462dd2e541899fea28755a0329b01bf90e3b39756c/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d616e7572616768617a7261\" data-canonical-src=\"https://github-readme-stats.vercel.app/api?username=anuraghazra\" style=\"max-width: 100%;\">\n</a>\n<a href=\"https://github.com/anuraghazra/convoychat\">\n <img height=\"200\" align=\"center\" src=\"https://camo.githubusercontent.com/355332aae138ebf98b2beae3e3a361a38c1938b82cbe71e333ed77522a0c28fd/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67733f757365726e616d653d616e7572616768617a7261266c61796f75743d636f6d70616374266c616e67735f636f756e743d3826636172645f77696474683d333230\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/top-langs?username=anuraghazra&amp;layout=compact&amp;langs_count=8&amp;card_width=320\" style=\"max-width: 100%;\">\n</a>\n<hr>\n<a href=\"https://github.com/anuraghazra/github-readme-stats\">\n <img align=\"center\" src=\"https://camo.githubusercontent.com/eccdfcfde048cf298f9f55cf81fd181291904aeba12b451d4a05583c6fe6eabb/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f70696e2f3f757365726e616d653d616e7572616768617a7261267265706f3d6769746875622d726561646d652d7374617473\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&amp;repo=github-readme-stats\" style=\"max-width: 100%;\">\n</a>\n<a href=\"https://github.com/anuraghazra/convoychat\">\n <img align=\"center\" src=\"https://camo.githubusercontent.com/bbd9041eb1f9fdc26928326733befa10897ec56754d8677b4c8a7bbca2b1653f/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f70696e2f3f757365726e616d653d616e7572616768617a7261267265706f3d636f6e766f7963686174\" data-canonical-src=\"https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&amp;repo=convoychat\" style=\"max-width: 100%;\">\n</a>\n</details>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Deploy on your own</h1><a id=\"user-content-deploy-on-your-own\" class=\"anchor\" aria-label=\"Permalink: Deploy on your own\" href=\"#deploy-on-your-own\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">On Vercel</h2><a id=\"user-content-on-vercel\" class=\"anchor\" aria-label=\"Permalink: On Vercel\" href=\"#on-vercel\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">📽️ <a href=\"https://youtu.be/n6d4KHSKqGk?t=107\" rel=\"nofollow\">Check Out Step By Step Video Tutorial By @codeSTACKr</a></h3><a id=\"user-content-film_projector-check-out-step-by-step-video-tutorial-by-codestackr\" class=\"anchor\" aria-label=\"Permalink: :film_projector: Check Out Step By Step Video Tutorial By @codeSTACKr\" href=\"#film_projector-check-out-step-by-step-video-tutorial-by-codestackr\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Since the GitHub API only allows 5k requests per hour, my <code>https://github-readme-stats.vercel.app/api</code> could possibly hit the rate limiter. If you host it on your own Vercel server, then you do not have to worry about anything. Click on the deploy button to get started!</p>\n<div class=\"markdown-alert markdown-alert-note\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-info mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"></path></svg>Note</p><p dir=\"auto\">Since <a href=\"https://github.com/anuraghazra/github-readme-stats/pull/58\" data-hovercard-type=\"pull_request\" data-hovercard-url=\"/anuraghazra/github-readme-stats/pull/58/hovercard\">#58</a>, we should be able to handle more than 5k requests and have fewer issues with downtime 😁.</p>\n</div>\n<div class=\"markdown-alert markdown-alert-note\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-info mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"></path></svg>Note</p><p dir=\"auto\">If you are on the <a href=\"https://vercel.com/pricing\" rel=\"nofollow\">Pro (i.e. paid)</a> Vercel plan, the <a href=\"https://vercel.com/docs/concepts/projects/project-configuration#value-definition\" rel=\"nofollow\">maxDuration</a> value found in the <a href=\"https://github.com/anuraghazra/github-readme-stats/blob/master/vercel.json\">vercel.json</a> can be increased when your Vercel instance frequently times out during the card request. You are advised to keep this value lower than <code>30</code> seconds to prevent high memory usage.</p>\n</div>\n<p dir=\"auto\"><a href=\"https://vercel.com/import/project?template=https://github.com/anuraghazra/github-readme-stats\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/0d115430c1db17132964386282927e5e313543c7d868fc06bc9a7c65d7ec974e/68747470733a2f2f76657263656c2e636f6d2f627574746f6e\" alt=\"Deploy to Vercel\" data-canonical-src=\"https://vercel.com/button\" style=\"max-width: 100%;\"></a></p>\n<details>\n <summary><b>🛠️ Step-by-step guide on setting up your own Vercel instance</b></summary>\n<ol dir=\"auto\">\n<li>Go to <a href=\"https://vercel.com/\" rel=\"nofollow\">vercel.com</a>.</li>\n<li>Click on <code>Log in</code>.\n<a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/f9eab758d78c2ee39842bbf3ce5b0b6ed73603967cbfc2108617cb5683a6c33e/68747470733a2f2f66696c65732e636174626f782e6d6f652f7063786b33332e706e67\"><img src=\"https://camo.githubusercontent.com/f9eab758d78c2ee39842bbf3ce5b0b6ed73603967cbfc2108617cb5683a6c33e/68747470733a2f2f66696c65732e636174626f782e6d6f652f7063786b33332e706e67\" alt=\"\" data-canonical-src=\"https://files.catbox.moe/pcxk33.png\" style=\"max-width: 100%;\"></a></li>\n<li>Sign in with GitHub by pressing <code>Continue with GitHub</code>.\n<a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/41cc463992be0ea99d47b1aa6c1590b6cec1f1ecc48ea9c0dd2edfb50c3bac07/68747470733a2f2f66696c65732e636174626f782e6d6f652f62396f7865792e706e67\"><img src=\"https://camo.githubusercontent.com/41cc463992be0ea99d47b1aa6c1590b6cec1f1ecc48ea9c0dd2edfb50c3bac07/68747470733a2f2f66696c65732e636174626f782e6d6f652f62396f7865792e706e67\" alt=\"\" data-canonical-src=\"https://files.catbox.moe/b9oxey.png\" style=\"max-width: 100%;\"></a></li>\n<li>Sign in to GitHub and allow access to all repositories if prompted.</li>\n<li>Fork this repo.</li>\n<li>Go back to your <a href=\"https://vercel.com/dashboard\" rel=\"nofollow\">Vercel dashboard</a>.</li>\n<li>To import a project, click the <code>Add New...</code> button and select the <code>Project</code> option.\n<a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/c585d2fc8a193ec7bd82ab8c0417c74ad7c459dba49031e617b7c5c53e271e56/68747470733a2f2f66696c65732e636174626f782e6d6f652f336e373666682e706e67\"><img src=\"https://camo.githubusercontent.com/c585d2fc8a193ec7bd82ab8c0417c74ad7c459dba49031e617b7c5c53e271e56/68747470733a2f2f66696c65732e636174626f782e6d6f652f336e373666682e706e67\" alt=\"\" data-canonical-src=\"https://files.catbox.moe/3n76fh.png\" style=\"max-width: 100%;\"></a></li>\n<li>Click the <code>Continue with GitHub</code> button, search for the required Git Repository and import it by clicking the <code>Import</code> button. Alternatively, you can import a Third-Party Git Repository using the <code>Import Third-Party Git Repository -&gt;</code> link at the bottom of the page.\n<a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/753e0699d726ec73fec02a3bc5069d97aa6bfae8f90ef321d7c04c338882d130/68747470733a2f2f66696c65732e636174626f782e6d6f652f6d67357030342e706e67\"><img src=\"https://camo.githubusercontent.com/753e0699d726ec73fec02a3bc5069d97aa6bfae8f90ef321d7c04c338882d130/68747470733a2f2f66696c65732e636174626f782e6d6f652f6d67357030342e706e67\" alt=\"\" data-canonical-src=\"https://files.catbox.moe/mg5p04.png\" style=\"max-width: 100%;\"></a></li>\n<li>Create a personal access token (PAT) <a href=\"https://github.com/settings/tokens/new\">here</a> and enable the <code>repo</code> and <code>user</code> permissions (this allows access to see private repo and user stats).</li>\n<li>Add the PAT as an environment variable named <code>PAT_1</code> (as shown).\n<a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/5393781dec46fe11f40de8efa568608a3ec6c628dddc80572a4ebe1defded820/68747470733a2f2f66696c65732e636174626f782e6d6f652f3079636c696f2e706e67\"><img src=\"https://camo.githubusercontent.com/5393781dec46fe11f40de8efa568608a3ec6c628dddc80572a4ebe1defded820/68747470733a2f2f66696c65732e636174626f782e6d6f652f3079636c696f2e706e67\" alt=\"\" data-canonical-src=\"https://files.catbox.moe/0yclio.png\" style=\"max-width: 100%;\"></a></li>\n<li>Click deploy, and you're good to go. See your domains to use the API!</li>\n</ol>\n</details>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">On other platforms</h2><a id=\"user-content-on-other-platforms\" class=\"anchor\" aria-label=\"Permalink: On other platforms\" href=\"#on-other-platforms\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-alert markdown-alert-warning\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-alert mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"></path></svg>Warning</p><p dir=\"auto\">This way of using GRS is not officially supported and was added to cater to some particular use cases where Vercel could not be used (e.g. <a href=\"https://github.com/anuraghazra/github-readme-stats/discussions/2341\" data-hovercard-type=\"discussion\" data-hovercard-url=\"/anuraghazra/github-readme-stats/discussions/2341/hovercard\">#2341</a>). The support for this method, therefore, is limited.</p>\n</div>\n<details>\n<summary><b>🛠️ Step-by-step guide for deploying on other platforms</b></summary>\n<ol dir=\"auto\">\n<li>Fork or clone this repo as per your needs</li>\n<li>Add <code>express</code> to the dependencies section of <code>package.json</code>\n<div class=\"Box Box--condensed my-2\">\n <div class=\"Box-header f6\">\n <p class=\"mb-0 text-bold\">\n <a href=\"https://github.com/anuraghazra/github-readme-stats/blob/ba7c2f8b55eac8452e479c8bd38b044d204d0424/package.json#L54-L61\">github-readme-stats/package.json</a>\n </p>\n <p class=\"mb-0 color-fg-muted\">\n Lines 54 to 61\n in\n <a data-pjax=\"true\" class=\"commit-tease-sha Link--inTextBlock\" href=\"/anuraghazra/github-readme-stats/commit/ba7c2f8b55eac8452e479c8bd38b044d204d0424\">ba7c2f8</a>\n </p>\n </div>\n <div itemprop=\"text\" class=\"Box-body p-0 blob-wrapper blob-wrapper-embedded data\">\n <table class=\"highlight tab-size mb-0 js-file-line-container\" data-tab-size=\"8\" data-paste-markdown-skip=\"\">\n\n <tbody><tr class=\"border-0\">\n <td id=\"L54\" class=\"blob-num border-0 px-3 py-0 color-bg-default\" data-line-number=\"54\"></td>\n <td id=\"LC54\" class=\"blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line\"> <span class=\"pl-ent\">\"dependencies\"</span>: { </td>\n </tr>\n\n <tr class=\"border-0\">\n <td id=\"L55\" class=\"blob-num border-0 px-3 py-0 color-bg-default\" data-line-number=\"55\"></td>\n <td id=\"LC55\" class=\"blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line\"> <span class=\"pl-ent\">\"axios\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>^0.24.0<span class=\"pl-pds\">\"</span></span>, </td>\n </tr>\n\n <tr class=\"border-0\">\n <td id=\"L56\" class=\"blob-num border-0 px-3 py-0 color-bg-default\" data-line-number=\"56\"></td>\n <td id=\"LC56\" class=\"blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line\"> <span class=\"pl-ent\">\"dotenv\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>^8.2.0<span class=\"pl-pds\">\"</span></span>, </td>\n </tr>\n\n <tr class=\"border-0\">\n <td id=\"L57\" class=\"blob-num border-0 px-3 py-0 color-bg-default\" data-line-number=\"57\"></td>\n <td id=\"LC57\" class=\"blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line\"> <span class=\"pl-ent\">\"emoji-name-map\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>^1.2.8<span class=\"pl-pds\">\"</span></span>, </td>\n </tr>\n\n <tr class=\"border-0\">\n <td id=\"L58\" class=\"blob-num border-0 px-3 py-0 color-bg-default\" data-line-number=\"58\"></td>\n <td id=\"LC58\" class=\"blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line\"> <span class=\"pl-ent\">\"github-username-regex\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>^1.0.0<span class=\"pl-pds\">\"</span></span>, </td>\n </tr>\n\n <tr class=\"border-0\">\n <td id=\"L59\" class=\"blob-num border-0 px-3 py-0 color-bg-default\" data-line-number=\"59\"></td>\n <td id=\"LC59\" class=\"blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line\"> <span class=\"pl-ent\">\"upgrade\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>^1.1.0<span class=\"pl-pds\">\"</span></span>, </td>\n </tr>\n\n <tr class=\"border-0\">\n <td id=\"L60\" class=\"blob-num border-0 px-3 py-0 color-bg-default\" data-line-number=\"60\"></td>\n <td id=\"LC60\" class=\"blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line\"> <span class=\"pl-ent\">\"word-wrap\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>^1.2.3<span class=\"pl-pds\">\"</span></span> </td>\n </tr>\n\n <tr class=\"border-0\">\n <td id=\"L61\" class=\"blob-num border-0 px-3 py-0 color-bg-default\" data-line-number=\"61\"></td>\n <td id=\"LC61\" class=\"blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line\"> }, </td>\n </tr>\n </tbody></table>\n </div>\n</div>\n</li>\n<li>Run <code>npm i</code> if needed (initial setup)</li>\n<li>Run <code>node express.js</code> to start the server, or set the entry point to <code>express.js</code> in <code>package.json</code> if you're deploying on a managed service\n<div class=\"Box Box--condensed my-2\">\n <div class=\"Box-header f6\">\n <p class=\"mb-0 text-bold\">\n <a href=\"https://github.com/anuraghazra/github-readme-stats/blob/ba7c2f8b55eac8452e479c8bd38b044d204d0424/package.json#L11\">github-readme-stats/package.json</a>\n </p>\n <p class=\"mb-0 color-fg-muted\">\n Line 11\n in\n <a data-pjax=\"true\" class=\"commit-tease-sha Link--inTextBlock\" href=\"/anuraghazra/github-readme-stats/commit/ba7c2f8b55eac8452e479c8bd38b044d204d0424\">ba7c2f8</a>\n </p>\n </div>\n <div itemprop=\"text\" class=\"Box-body p-0 blob-wrapper blob-wrapper-embedded data\">\n <table class=\"highlight tab-size mb-0 js-file-line-container\" data-tab-size=\"8\" data-paste-markdown-skip=\"\">\n\n <tbody><tr class=\"border-0\">\n <td id=\"L11\" class=\"blob-num border-0 px-3 py-0 color-bg-default\" data-line-number=\"11\"></td>\n <td id=\"LC11\" class=\"blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line\"> <span class=\"pl-ent\">\"main\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>src/index.js<span class=\"pl-pds\">\"</span></span>, </td>\n </tr>\n </tbody></table>\n </div>\n</div>\n</li>\n<li>You're done 🎉\n</li></ol></details>\n\n\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Disable rate limit protections</h2><a id=\"user-content-disable-rate-limit-protections\" class=\"anchor\" aria-label=\"Permalink: Disable rate limit protections\" href=\"#disable-rate-limit-protections\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Github Readme Stats contains several Vercel environment variables that can be used to remove the rate limit protections:</p>\n<ul dir=\"auto\">\n<li><code>CACHE_SECONDS</code>: This environment variable takes precedence over our cache minimum and maximum values and can circumvent these values for self-hosted Vercel instances.</li>\n</ul>\n<p dir=\"auto\">See <a href=\"https://vercel.com/docs/concepts/projects/environment-variables\" rel=\"nofollow\">the Vercel documentation</a> on adding these environment variables to your Vercel instance.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Keep your fork up to date</h2><a id=\"user-content-keep-your-fork-up-to-date\" class=\"anchor\" aria-label=\"Permalink: Keep your fork up to date\" href=\"#keep-your-fork-up-to-date\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can keep your fork, and thus your private Vercel instance up to date with the upstream using GitHub's <a href=\"https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork\">Sync Fork button</a>. You can also use the <a href=\"https://github.com/wei/pull\">pull</a> package created by <a href=\"https://github.com/wei\">@wei</a> to automate this process.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">💖 Support the project</h1><a id=\"user-content-sparkling_heart-support-the-project\" class=\"anchor\" aria-label=\"Permalink: :sparkling_heart: Support the project\" href=\"#sparkling_heart-support-the-project\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">I open-source almost everything I can and try to reply to everyone needing help using these projects. Obviously,\nthis takes time. You can use this service for free.</p>\n<p dir=\"auto\">However, if you are using this project and are happy with it or just want to encourage me to continue creating stuff, there are a few ways you can do it:</p>\n<ul dir=\"auto\">\n<li>Giving proper credit when you use github-readme-stats on your readme, linking back to it. :D</li>\n<li>Starring and sharing the project. 🚀</li>\n<li><a href=\"https://www.paypal.me/anuraghazra\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/078d3713ca54ef1ca1160bf0e9d9777208e908f89db74aa86c3b3e94dd086e3a/68747470733a2f2f696f6e69636162697a61752e6769746875622e696f2f6261646765732f70617970616c2e737667\" alt=\"paypal.me/anuraghazra\" data-canonical-src=\"https://ionicabizau.github.io/badges/paypal.svg\" style=\"max-width: 100%;\"></a> - You can make a one-time donations via PayPal. I'll probably buy a <del>coffee</del> tea. 🍵</li>\n</ul>\n<p dir=\"auto\">Thanks! ❤️</p>\n<hr>\n<p dir=\"auto\"><a href=\"https://vercel.com?utm_source=github_readme_stats_team&amp;utm_campaign=oss\" rel=\"nofollow\"><img src=\"/anuraghazra/github-readme-stats/raw/master/powered-by-vercel.svg\" alt=\"https://vercel.com?utm_source=github_readme_stats_team&amp;utm_campaign=oss\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">Contributions are welcome! &lt;3</p>\n<p dir=\"auto\">Made with ❤️ and JavaScript.</p>\n</article>",
"loaded": true,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": [
{
"level": 2,
"text": "GitHub Readme Stats",
"anchor": "github-readme-stats",
"htmlText": "GitHub Readme Stats"
},
{
"level": 1,
"text": "Features ",
"anchor": "features-",
"htmlText": "Features "
},
{
"level": 1,
"text": "Important Notices ",
"anchor": "important-notices-",
"htmlText": "Important Notices "
},
{
"level": 1,
"text": "GitHub Stats Card",
"anchor": "github-stats-card",
"htmlText": "GitHub Stats Card"
},
{
"level": 3,
"text": "Hiding individual stats",
"anchor": "hiding-individual-stats",
"htmlText": "Hiding individual stats"
},
{
"level": 3,
"text": "Showing additional individual stats",
"anchor": "showing-additional-individual-stats",
"htmlText": "Showing additional individual stats"
},
{
"level": 3,
"text": "Showing icons",
"anchor": "showing-icons",
"htmlText": "Showing icons"
},
{
"level": 3,
"text": "Themes",
"anchor": "themes",
"htmlText": "Themes"
},
{
"level": 4,
"text": "All inbuilt themes",
"anchor": "all-inbuilt-themes",
"htmlText": "All inbuilt themes"
},
{
"level": 4,
"text": "Responsive Card Theme",
"anchor": "responsive-card-theme",
"htmlText": "Responsive Card Theme"
},
{
"level": 5,
"text": "Use the transparent theme",
"anchor": "use-the-transparent-theme",
"htmlText": "Use the transparent theme"
},
{
"level": 5,
"text": "Add transparent alpha channel to a themes bg_color",
"anchor": "add-transparent-alpha-channel-to-a-themes-bg_color",
"htmlText": "Add transparent alpha channel to a themes bg_color"
},
{
"level": 5,
"text": "Use GitHub's theme context tag",
"anchor": "use-githubs-theme-context-tag",
"htmlText": "Use GitHub's theme context tag"
},
{
"level": 5,
"text": "Use GitHub's new media feature",
"anchor": "use-githubs-new-media-feature",
"htmlText": "Use GitHub's new media feature"
},
{
"level": 3,
"text": "Customization",
"anchor": "customization",
"htmlText": "Customization"
},
{
"level": 4,
"text": "Common Options",
"anchor": "common-options",
"htmlText": "Common Options"
},
{
"level": 5,
"text": "Gradient in bg_color",
"anchor": "gradient-in-bg_color",
"htmlText": "Gradient in bg_color"
},
{
"level": 5,
"text": "Available locales",
"anchor": "available-locales",
"htmlText": "Available locales"
},
{
"level": 4,
"text": "Stats Card Exclusive Options",
"anchor": "stats-card-exclusive-options",
"htmlText": "Stats Card Exclusive Options"
},
{
"level": 4,
"text": "Repo Card Exclusive Options",
"anchor": "repo-card-exclusive-options",
"htmlText": "Repo Card Exclusive Options"
},
{
"level": 4,
"text": "Gist Card Exclusive Options",
"anchor": "gist-card-exclusive-options",
"htmlText": "Gist Card Exclusive Options"
},
{
"level": 4,
"text": "Language Card Exclusive Options",
"anchor": "language-card-exclusive-options",
"htmlText": "Language Card Exclusive Options"
},
{
"level": 4,
"text": "WakaTime Card Exclusive Options",
"anchor": "wakatime-card-exclusive-options",
"htmlText": "WakaTime Card Exclusive Options"
},
{
"level": 1,
"text": "GitHub Extra Pins",
"anchor": "github-extra-pins",
"htmlText": "GitHub Extra Pins"
},
{
"level": 3,
"text": "Usage",
"anchor": "usage",
"htmlText": "Usage"
},
{
"level": 3,
"text": "Demo",
"anchor": "demo",
"htmlText": "Demo"
},
{
"level": 1,
"text": "GitHub Gist Pins",
"anchor": "github-gist-pins",
"htmlText": "GitHub Gist Pins"
},
{
"level": 3,
"text": "Usage",
"anchor": "usage-1",
"htmlText": "Usage"
},
{
"level": 3,
"text": "Demo",
"anchor": "demo-1",
"htmlText": "Demo"
},
{
"level": 1,
"text": "Top Languages Card",
"anchor": "top-languages-card",
"htmlText": "Top Languages Card"
},
{
"level": 3,
"text": "Usage",
"anchor": "usage-2",
"htmlText": "Usage"
},
{
"level": 3,
"text": "Language stats algorithm",
"anchor": "language-stats-algorithm",
"htmlText": "Language stats algorithm"
},
{
"level": 3,
"text": "Exclude individual repositories",
"anchor": "exclude-individual-repositories",
"htmlText": "Exclude individual repositories"
},
{
"level": 3,
"text": "Hide individual languages",
"anchor": "hide-individual-languages",
"htmlText": "Hide individual languages"
},
{
"level": 3,
"text": "Show more languages",
"anchor": "show-more-languages",
"htmlText": "Show more languages"
},
{
"level": 3,
"text": "Compact Language Card Layout",
"anchor": "compact-language-card-layout",
"htmlText": "Compact Language Card Layout"
},
{
"level": 3,
"text": "Donut Chart Language Card Layout",
"anchor": "donut-chart-language-card-layout",
"htmlText": "Donut Chart Language Card Layout"
},
{
"level": 3,
"text": "Donut Vertical Chart Language Card Layout",
"anchor": "donut-vertical-chart-language-card-layout",
"htmlText": "Donut Vertical Chart Language Card Layout"
},
{
"level": 3,
"text": "Pie Chart Language Card Layout",
"anchor": "pie-chart-language-card-layout",
"htmlText": "Pie Chart Language Card Layout"
},
{
"level": 3,
"text": "Hide Progress Bars",
"anchor": "hide-progress-bars",
"htmlText": "Hide Progress Bars"
},
{
"level": 3,
"text": "Demo",
"anchor": "demo-2",
"htmlText": "Demo"
},
{
"level": 1,
"text": "WakaTime Stats Card",
"anchor": "wakatime-stats-card",
"htmlText": "WakaTime Stats Card"
},
{
"level": 3,
"text": "Demo",
"anchor": "demo-3",
"htmlText": "Demo"
},
{
"level": 1,
"text": "All Demos",
"anchor": "all-demos",
"htmlText": "All Demos"
},
{
"level": 2,
"text": "Quick Tip (Align The Cards)",
"anchor": "quick-tip-align-the-cards",
"htmlText": "Quick Tip (Align The Cards)"
},
{
"level": 1,
"text": "Deploy on your own",
"anchor": "deploy-on-your-own",
"htmlText": "Deploy on your own"
},
{
"level": 2,
"text": "On Vercel",
"anchor": "on-vercel",
"htmlText": "On Vercel"
},
{
"level": 3,
"text": ":film_projector: Check Out Step By Step Video Tutorial By @codeSTACKr",
"anchor": "film_projector-check-out-step-by-step-video-tutorial-by-codestackr",
"htmlText": "📽️ Check Out Step By Step Video Tutorial By @codeSTACKr"
},
{
"level": 2,
"text": "On other platforms",
"anchor": "on-other-platforms",
"htmlText": "On other platforms"
},
{
"level": 2,
"text": "Disable rate limit protections",
"anchor": "disable-rate-limit-protections",
"htmlText": "Disable rate limit protections"
},
{
"level": 2,
"text": "Keep your fork up to date",
"anchor": "keep-your-fork-up-to-date",
"htmlText": "Keep your fork up to date"
},
{
"level": 1,
"text": ":sparkling_heart: Support the project",
"anchor": "sparkling_heart-support-the-project",
"htmlText": "💖 Support the project"
}
],
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fanuraghazra%2Fgithub-readme-stats"
}
},
{
"displayName": "CODE_OF_CONDUCT.md",
"repoName": "github-readme-stats",
"refName": "master",
"path": "CODE_OF_CONDUCT.md",
"preferredFileType": "code_of_conduct",
"tabName": "Code of conduct",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fanuraghazra%2Fgithub-readme-stats"
}
},
{
"displayName": "LICENSE",
"repoName": "github-readme-stats",
"refName": "master",
"path": "LICENSE",
"preferredFileType": "license",
"tabName": "MIT",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fanuraghazra%2Fgithub-readme-stats"
}
},
{
"displayName": "SECURITY.md",
"repoName": "github-readme-stats",
"refName": "master",
"path": "SECURITY.md",
"preferredFileType": "security",
"tabName": "Security",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fanuraghazra%2Fgithub-readme-stats"
}
}
],
"overviewFilesProcessingTime": 0
}
},
"appPayload": {
"helpUrl": "https://docs.github.com",
"findFileWorkerPath": "/assets-cdn/worker/find-file-worker-1583894afd38.js",
"findInFileWorkerPath": "/assets-cdn/worker/find-in-file-worker-3a63a487027b.js",
"githubDevUrl": null,
"enabled_features": {
"code_nav_ui_events": false,
"overview_shared_code_dropdown_button": false,
"react_blob_overlay": false,
"copilot_conversational_ux_embedding_update": false,
"copilot_smell_icebreaker_ux": true,
"copilot_workspace": false
}
}
}
}
{
"accept-ranges": "bytes",
"cache-control": "max-age=0, private, must-revalidate",
"content-encoding": "gzip",
"content-security-policy": "default-src 'none'; base-uri 'self'; child-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com api.githubcopilot.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com/v1/engines/github-completion/completions proxy.enterprise.githubcopilot.com/v1/engines/github-completion/completions *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/",
"content-type": "text/html; charset=utf-8",
"date": "Sat, 27 Jul 2024 06:41:55 GMT",
"etag": "7efe788a58a35a445cdc628dc636fd3d",
"referrer-policy": "no-referrer-when-downgrade",
"server": "GitHub.com",
"set-cookie": "logged_in=no; Path=/; Domain=github.com; Expires=Sun, 27 Jul 2025 06:41:54 GMT; HttpOnly; Secure; SameSite=Lax",
"strict-transport-security": "max-age=31536000; includeSubdomains; preload",
"transfer-encoding": "chunked",
"vary": "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, Accept-Encoding, Accept, X-Requested-With",
"x-content-type-options": "nosniff",
"x-frame-options": "deny",
"x-github-request-id": "9262:1171CA:2C84CDB:3BE5DB2:66A496B2",
"x-xss-protection": "0"
}