Showing preview only (312K chars total). Download the full file or copy to clipboard to get everything.
Repository: Ileriayo/markdown-badges
Branch: master
Commit: 1962b8e6b334
Files: 15
Total size: 302.4 KB
Directory structure:
gitextract_l8fx_3tr/
├── .github/
│ ├── FUNDING.yml
│ ├── ISSUE_TEMPLATE/
│ │ └── badge-request.md
│ ├── pr-labeler.yml
│ ├── pull_request_template.md
│ ├── scripts/
│ │ └── check_badge_order.py
│ └── workflows/
│ ├── badge-order.yml
│ ├── pr-labeler.yml
│ └── prettier.yml
├── .prettierrc
├── .unibeautifyrc.json
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── _config.yml
└── assets/
└── css/
└── style.scss
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/FUNDING.yml
================================================
ko_fi: ileriayo
================================================
FILE: .github/ISSUE_TEMPLATE/badge-request.md
================================================
---
name: Badge Request
about: Badge request template.
title: "[Category] [Badge Request] NAME"
labels: "new-badge"
assignees: ""
---
Badge Name: [NAME]
Category: [CATEGORY]
Does it have a [simpleicons](https://simpleicons.org/) icon? [YES/NO]
================================================
FILE: .github/pr-labeler.yml
================================================
new-badge: ["new/*", "badge/*"]
new-section: section/*
typo-fix: fixed/*
================================================
FILE: .github/pull_request_template.md
================================================
## Description
<!-- Render is a .... -->
## Info
<!-- This is an example. Replace with badge details-->
| Name | Category | Background Color | Logo Color |
| :---: | :------: | :--------------: | :--------: |
| Quill | ORM | `#52B0E7` | `#ffffff` |
## Preview
<!-- This is an example. Replace with badge url-->
| Badge | url |
| --------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
|  | `` |
================================================
FILE: .github/scripts/check_badge_order.py
================================================
import sys
import os
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
README_FILE_PATH = os.path.abspath(os.path.join(SCRIPT_DIR, '../../README.md'))
def find_badge_sections():
with open(README_FILE_PATH, encoding='utf-8') as f:
lines = f.readlines()
# Find the line number of the main badges section
badge_header_idx = None
for idx, line in enumerate(lines):
if line.strip().lower() == '# badges':
badge_header_idx = idx
break
if badge_header_idx is None:
print('No "# Badges" section found in README.md')
sys.exit(1)
# Find all ### section headers after # Badges
section_indices = []
for idx in range(badge_header_idx + 1, len(lines)):
if lines[idx].startswith('### '):
section_indices.append(idx)
# Add an artificial end index for the last section
section_indices.append(len(lines))
# For each section, collect badge lines (table rows)
badge_sections = []
for i in range(len(section_indices) - 1):
section_start = section_indices[i]
section_end = section_indices[i + 1]
section_title = lines[section_start].strip()
badge_lines = []
in_table = False
for line in lines[section_start + 1:section_end]:
if line.strip().startswith('|'):
# Only consider table rows that are not header or separator
if not in_table:
in_table = True
continue # skip header
if set(line.strip()) == {'|', '-', ' '}:
continue # skip separator
badge_lines.append(line.strip())
elif in_table and not line.strip():
break # End of table
if badge_lines:
badge_sections.append((section_title, badge_lines))
return badge_sections
def main():
badge_sections = find_badge_sections()
if not badge_sections:
print('No badge tables found under any ### section after # Badges.')
sys.exit(1)
failed = False
import difflib
for section_title, badge_lines in badge_sections:
# Sort by the first column (badge name)
def get_name(row):
cols = [c.strip() for c in row.strip('|').split('|')]
return cols[0].lower() if cols else ''
sorted_lines = sorted(badge_lines, key=get_name)
if badge_lines != sorted_lines:
failed = True
print(f'❌ Badge table in section "{section_title}" is not in alphabetical order!')
print('Please sort the badge table rows by badge name.')
diff = difflib.unified_diff(
badge_lines, sorted_lines,
fromfile='Current', tofile='Expected',
lineterm=''
)
for line in diff:
if line.startswith('---') or line.startswith('+++') or line.startswith('@@'):
print(f'\033[36m{line}\033[0m') # Cyan for diff headers
elif line.startswith('-'):
print(f'\033[31m{line}\033[0m') # Red for removals
elif line.startswith('+'):
print(f'\033[32m{line}\033[0m') # Green for additions
else:
print(line)
if failed:
sys.exit(1)
print('✅ All badge tables are in alphabetical order.')
if __name__ == '__main__':
main()
================================================
FILE: .github/workflows/badge-order.yml
================================================
name: 📋 Check Badge List Alphabetical Order
on:
pull_request:
paths:
- "README.md"
jobs:
check-badge-order:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Check badge list order
run: |
python .github/scripts/check_badge_order.py
================================================
FILE: .github/workflows/pr-labeler.yml
================================================
name: PR Labeler
on:
pull_request:
types: [opened]
jobs:
pr-labeler:
runs-on: ubuntu-latest
steps:
- uses: TimonVS/pr-labeler-action@v3
with:
configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
================================================
FILE: .github/workflows/prettier.yml
================================================
name: 🎨 Check Markdown Formatting
on:
pull_request:
paths:
- "**.md"
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
- name: Install Prettier
run: npm install -g prettier
- name: Check formatting
run: prettier --check "**/*.md"
================================================
FILE: .prettierrc
================================================
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"proseWrap": "preserve"
}
================================================
FILE: .unibeautifyrc.json
================================================
{
"Markdown": {
"beautifiers": ["Prettier"],
"__pragma_insert__": true,
"wrap_line_length": 0
}
}
================================================
FILE: CONTRIBUTING.md
================================================
# Contributing to markdown-badges
:tada: First off, thanks for taking the time to contribute! :tada:
## The following steps are a set of guidelines for contributing to markdown-badges:
1. Create a [fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) of the existing repository. This will be your local copy where you can propose new changes.
2. Update the local clone or make changes directly on the forked repo, adding a badge with its appropriate hex-color in the given format:
3. Copy this markdown 👇
``
> **:bulb: Tip:** Some icons/logos may not fit in the badge nicely. Add `&logoSize=auto` to the markdown's URL to help with this:
`&logoSize=auto`
4. Replace the following: `<badge>` , `<badge-color>` , `<logo-color>`
> **:fire: Important:** All of the badges are ordered alphabetically. Hence, while contributing, make sure to order to add the new badges in an alphabetical order.
> **:bulb: Tip:** You can check available icons for your `<badge>` in [Simple Icons slugs](https://github.com/simple-icons/simple-icons/blob/develop/slugs.md) or [Simple Icons website](https://simpleicons.org/).
5. Create a [Pull Request](https://docs.github.com/en/get-started/quickstart/contributing-to-projects#making-a-pull-request) with your proposed changes.
Yayyy, You are all done with the steps! Now just sit back and watch while your Pull request is reviewed and ultimately merged. 🎊
<hr />
## 🖋️ When thinking of where to add your badge:
Favor general, i.e. widely known, categories rather than specific (sometimes unknown) categories, so that it is easier to find. For instance, when a person thinks of Tor Browser, they'd want to find it where other browsers are listed.
Similarly, we have several Google products (Play, Drive, Chrome, etc), however, they are not listed under a category for Google.
Think of the categories as `what they do` rather than `who they are`.
So, instead of a category titled **Google** for instance, Chrome would be placed in a category like **Browser**.
Having the categories based on `who they are` will quickly become clumsy. And clumsy doesn't feel right.
## 🖋️ When your badge doesn't fit into any of the existing categories:
We've covered lots of ground and categories but if you find that your new badge doesn't fit into an existing category, create a new one. It would be lovely having a new category around.
Some Guidelines for starting a new category:
- Check the existing categories one more time to be really sure your new badge won't fit into one. 😄
- Use a simple title. For example, instead of `Banks and money companies`, use `Finance`
- Use a title that obeys the `what they do` principle above.
- Place your shiny new category in the right alphabetical position.
## 🖋️ What to do if your badge text needs spaces:
If the badge name needs to have spaces in it ("Google Chrome", "Google Drive", "Read The Docs", etc.) just use the `%20` URL encoding for 'space'. Here are some examples of what that looks like:
| Badge (no space) | URL (without space encoding) | Badge (space) | URL (with space encoding) |
| ---------------- | ---------------------------- | ------------- | ------------------------- |
|  | `` |  | `` |
<hr />
##### Thanks! again to ALL the [amazing contributors!](https://github.com/Ileriayo/markdown-badges/graphs/contributors) 🙏
================================================
FILE: LICENSE
================================================
MIT License
Copyright (c) 2020 Ileriayo Adebiyi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: README.md
================================================

# Markdown Badges
Add badges to your Profile and Projects.
# Table of contents
- [Markdown Badges](#markdown-badges)
- [Table of contents](#table-of-contents)
- [Usage](#usage)
- [Tips](#tips)
- [Contribution](#contribution)
- [License](#license)
- [Badges](#badges)
## List of Categories
<details>
- [Artificial Intelligence and Bots](#-artificial-intelligence-and-bots)
- [Blog](#-blog)
- [Blockchain](#-blockchain)
- [Browsers](#-browsers)
- [CAD](#-cad)
- [CD](#-cd)
- [CI](#-ci)
- [Cloud Storage](#-cloud-storage)
- [Cryptocurrency](#-cryptocurrency)
- [Databases](#-databases)
- [Design](#-design)
- [Developer/Forums](#%E2%80%8D-developerforums)
- [Documentation Platforms](#-documentation-platforms)
- [Education](#-education)
- [Funding](#-funding)
- [Frameworks, Platforms and Libraries](#-frameworks-platforms-and-libraries)
- [Gaming](#-gaming)
- [Game Consoles](#%EF%B8%8F-game-consoles)
- [Geospatial](#-geospatial)
- [Hardware](#%EF%B8%8F-hardware)
- [Hosting/SaaS](#%EF%B8%8F-hostingsaas)
- [IDEs/Editors](#-ideseditors)
- [Languages](#-languages)
- [ML/DL](#%EF%B8%8F-mldl)
- [Music](#-music)
- [Office](#-office)
- [Operating System](#%EF%B8%8F-operating-system)
- [ORM](#-orm)
- [Other](#-other)
- [Quantum Programming Frameworks and Libraries](#%EF%B8%8F-quantum-programming-frameworks-and-libraries)
- [Search Engines](#-search-engines)
- [Servers](#%EF%B8%8F-servers)
- [Smartphone Brands](#-smartphone-brands)
- [Social](#-social)
- [Store](#%EF%B8%8F-store)
- [Streaming](#-streaming)
- [Terminals](#-terminals)
- [Testing](#-testing)
- [Version Control](#-version-control)
- [Wearables](#%EF%B8%8F-wearables)
- [Work/Jobs](#-workjobs)
</details>
# Usage
To use a badge:
- Via GitHub
1. Press `Ctrl` + `f` on your keyboard, to bring out the search modal.
2. Enter the name of the badge you need.
3. Copy the appropriate `` element and paste it in your Markdown file (e.g. README.md)
- You could also visit the live site at [ileriayo.github.io/markdown-badges/](https://ileriayo.github.io/markdown-badges/)
# Tips
<details>
<summary>👇 How to use a different badge style</summary>
<hr>
> <strong>Note:</strong> `for-the-badge` is the style that we chose for appearance purposes. Other styles are available at [https://shields.io/#styles](https://shields.io/#styles) and can be used with the badges here. Thanks, @kingthorin for mentioning this!
Shields.io offers 5 styles, which are:
| S/N | Types | Styles |
| :-: | :------------ | :-------------------------------------------------------------------------------------------------------- |
| 1 | Plastic |  |
| 2 | Flat-square |  |
| 3 | Flat |  |
| 4 | Social |  |
| 5 | For-the-badge |  |
💡 To use a different style: Replace `for-the-badge` in the markdown link with any of the styles above.
```
Example.
🧷 For plastic
https://shields.io/badge/style-plastic-green?logo=appveyor&style=plastic
🤏🏽 For Flat
https://shields.io/badge/style-flat-green?logo=appveyor&style=flat
```
</details>
<details>
<summary>👇 Use Ctrl + F or CMD + F to search</summary>
<hr>
> <strong>Tip:</strong> Since there are a lot of badges, to search for the particular badge you are looking for, use Ctrl + F and type the name you want. Thanks, @JakyeRU for mentioning this!
</details>
## Contribution
The project has a separate contribution file. Please adhere to the steps listed in the separate contributions [file](./CONTRIBUTING.md)
## Contact
You can reach me on [Twitter @ileriayooo](https://twitter.com/Ileriayooo)
## License
[](./LICENSE)
<hr>
<hr>
# Badges
### 🤖 Artificial Intelligence and Bots
| Name | Badge | Markdown |
| --------------- | ------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------- |
| Amazon Alexa |  | `` |
| ChatGPT |  | `` |
| Claude |  | `` |
| Dependabot |  | `` |
| GitHub Copilot |  | `` |
| Google Deepmind |  | `` |
| Google Gemini |  | `` |
| HuggingFace |  | `` |
| LangChain |  | `` |
| LangGraph |  | `` |
| Ollama |  | `` |
| Perplexity |  | `` |
| YOLO |  | `` |
[(Back to top)](#table-of-contents)
### 🔗 Blockchain
| Name | Badge | Markdown |
| -------------- | ------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------- |
| Bitcoin |  | `` |
| Blockchain.com |  | `` |
| Cardano |  | `` |
| Ethers |  | `` |
| Hyperledger |  | `` |
| IPFS |  | `` |
| OpenSea |  | `` |
| Solana |  | `` |
[(Back to top)](#table-of-contents)
### 📝 Blog
| Name | Badge | Markdown |
| ---------- | ------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| Blogger |  | `` |
| daily.dev |  | `` |
| Dev |  | `` |
| Ghost |  | `` |
| Hashnode |  | `` |
| Medium |  | `` |
| Micro.blog |  | `` |
| Rss |  | `` |
| Substack |  | `` |
| Wix |  | `` |
| Zola |  | ` ` |
[(Back to top)](#table-of-contents)
### 🌐 Browsers
| Name | Badge | Markdown |
| ------------- | --------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| Arc |  | `` |
| Brave |  | `` |
| DuckDuckGo |  | `` |
| Edge |  | `` |
| Firefox |  | `` |
| Google Chrome |  | `` |
| IceCat |  | `` |
| IE |  | `` |
| Opera |  | `` |
| Safari |  | `` |
| Tor |  | `` |
| Vivaldi |  | `` |
| Zen |  | `` |
[(Back to top)](#table-of-contents)
### 📐 CAD
| Name | Badge | Markdown |
| --------------- | -------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| Altium Designer |  | `` |
| Archicad |  | `` |
| AutoCAD |  | `` |
| AutoDesk |  | `` |
| Autodesk Revit |  | `` |
| FreeCAD |  | `` |
| KiCad |  | `` |
| Microstation |  | `` |
| OpenSCAD |  | `` |
| Rhinoceros |  | `` |
| SketchUp |  | `` |
| Tinkercad |  | `` |
[(Back to top)](#table-of-contents)
### 🔬 CI
| Name | Badge | Markdown |
| -------------- | ------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| ChipperCI |  | `` |
| CircleCI |  | `` |
| CloudBees |  | `` |
| Fastlane |  | `` |
| GitHub Actions |  | `` |
| GitLab CI |  | `` |
| TeamCity |  | `` |
| Travis CI |  | `` |
[(Back to top)](#table-of-contents)
### 📲 CD
| Name | Badge | Markdown |
| -------------- | ------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------- |
| Octopus Deploy |  | `` |
[(Back to top)](#table-of-contents)
### 📂 Cloud Storage
| Name | Badge | Markdown |
| ------------------ | --------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| Amazon S3 |  | `` |
| Backblaze |  | `` |
| Box |  | `` |
| Dropbox |  | `` |
| Google Drive |  | `` |
| iCloud |  | `` |
| Mega.nz |  | `` |
| Microsoft OneDrive |  | `` |
| Next Cloud |  | `` |
| OneDrive |  | `` |
| Proton Drive |  | `` |
[(Back to top)](#table-of-contents)
### 💲 Cryptocurrency
| Name | Badge | Markdown |
| ------------ | --------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| Amp |  | `` |
| Binance |  | `` |
| Bitcoin |  | `` |
| Bitcoin Cash |  | `` |
| Bitcoin SV |  | `` |
| Chainlink |  | `` |
| Dash |  | `` |
| Dogecoin |  | `` |
| Ethereum |  | `` |
| Iota |  | `` |
| Litecoin |  | `` |
| Monero |  | `` |
| Polkadot |  | `` |
| Rarible |  | `` |
| Stellar |  | `` |
| Tether |  | `` |
| Xrp |  | `` |
| Z Cash |  | `` |
[(Back to top)](#table-of-contents)
### 💾 Databases
| Name | Badge | Markdown |
| -------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Amazon DynamoDB |  | `` |
| Appwrite |  | `` |
| ArangoDB |  | `` |
| Cassandra |  | `` |
| ClickHouse |  | `` |
| Cockroach Labs |  | `` |
| Couchbase |  | `` |
| CrateDB |  | `` |
| DuckDB |  | `` |
| Firebase |  | `` |
| InfluxDB |  | `` |
| MariaDB |  | `` |
| Microsoft SQL Server |  | `` |
| MongoDB |  | `` |
| MusicBrainz |  | `` |
| MySQL |  | `` |
| Neo4J |  | `` |
| PlanetScale |  | `` |
| PocketBase |  | `` |
| Postgres |  | `` |
| Realm |  | `` |
| Redis |  | `` |
| Single Store |  | `` |
| SQLite |  | `` |
| Supabase |  | `` |
| SurrealDB |  | `` |
| Teradata |  | `` |
[(Back to top)](#table-of-contents)
### 🎨 Design
| Name | Badge | Markdown |
| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Adobe |  | `` |
| Adobe Acrobat Reader |  | `` |
| Adobe After Effects |  | `` |
| Adobe Audition |  | `` |
| Adobe Creative Cloud |  | `` |
| Adobe Dreamweaver |  | `` |
| Adobe Fonts |  | `` |
| Adobe Illustrator |  | `` |
| Adobe InDesign |  | `` |
| Adobe Lightroom |  | `` |
| Adobe Lightroom Classic |  | `` |
| Adobe Photoshop |  | `` |
| Adobe Premiere Pro |  | `` |
| Adobe XD |  | `` |
| Affinity Designer |  | `` |
| Affinity Photo |  | `` |
| Aseprite |  | `` |
| Blender |  | `` |
| Canva |  | `` |
| Clip Studio Paint |  | `` |
| DaVinci Resolve |  | `` |
| Drawio |  | `` |
| Dribbble |  | `` |
| Figma |  | `` |
| Framer |  | `` |
| Gimp |  | `` |
| Inkscape |  | `` |
| Invision |  | `` |
| Krita |  | `` |
| Penpot |  | `` |
| Proto.io |  | `` |
| Rhinoceros |  | `` |
| Sketch |  | `` |
| Sketch Up |  | `` |
| Storybook |  | `` |
[(Back to top)](#table-of-contents)
### 🧑💻 Developer/Forums
| Name | Badge | Markdown |
| --------------- | -------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| Backstage |  | `` |
| CodeChef |  | `` |
| Codeforces |  | `` |
| CodePen |  | `` |
| Frontend Mentor |  | `` |
| Hackerearth |  | `` |
| Hackerrank |  | `` |
| Kaggle |  | `` |
| LeetCode |  | `` |
| OnePlus Forums |  | `` |
| Quora |  | `` |
| Reddit |  | `` |
| ResearchGate |  | `` |
| Stack Exchange |  | `` |
| Stack Overflow |  | `` |
| XDA-Developers |  | `` |
[(Back to top)](#table-of-contents)
### 📑 Documentation Platforms
| Name | Badge | Markdown |
| ------------- | ------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| Bookstack |  | `` |
| Coda |  | `` |
| Confluence |  | `` |
| Docsify |  | `` |
| Docusaurus |  | `` |
| GitBook |  | `` |
| Quip |  | `` |
| Read the Docs |  | `` |
| Swagger |  | `` |
| TiddlyWiki |  | `` |
| Wiki.js |  | `` |
| Wikipedia |  | `` |
| Zettlr |  | `` |
[(Back to top)](#table-of-contents)
### 🎓 Education
| Name | Badge | Markdown |
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| 42 |  | `` |
| Codecademy |  | `` |
| Codewars |  | `` |
| Codingninjas |  | `` |
| Coursera |  | `` |
| Datacamp |  | `` |
| Duolingo |  | `` |
| edX |  | `` |
| Exercism |  | `` |
| FreeCodeCamp |  | `` |
| Future Learn |  | `` |
| GeeksforGeeks |  | `` |
| Google Scholar |  | `` |
| Khan Academy |  | `` |
| MDN Web Docs |  | `` |
| Microsoft Learn |  | `` |
| O'Reilly |  | `` |
| Pluralsight |  | `` |
| Scrimba |  | `` |
| Skill Share |  | `` |
| Sololearn |  | `` |
| The Odin Project |  | `` |
| Udacity |  | `` |
| Udemy |  | `` |
| W3 Schools |  | ` ` |
[(Back to top)](#table-of-contents)
### 💰 Funding
| Name | Badge | Markdown |
| --------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
| Amazon Pay |  | `` |
| Apple Pay |  | `` |
| Buy Me a Coffee |  | `` |
| Github Sponsors |  | `` |
| Google Pay |  | `` |
| Ko-Fi |  | `` |
| LiberaPay |  | `` |
| Patreon |  | `` |
| PayPal |  | `` |
| Paytm |  | `` |
| Phonepe |  | `` |
| Samsung Pay |  | `` |
| Stripe |  | `` |
| Wise |  | `` |
[(Back to top)](#table-of-contents)
### 📚 Frameworks, Platforms and Libraries
| Name | Badge | Markdown |
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
| .NET |  | `` |
| AdonisJS |  | `` |
| Aiohttp |  | `[Aiohttp](https://img.shields.io/badge/aiohttp-%232C5bb4.svg?style=for-the-badge&logo=aiohttp&logoColor=white)` |
| Ajv |  | `` |
| Alpine.js |  | `` |
| AMD |  | `` |
| Anaconda |  | `` |
| Angular |  | `` |
| Angular.js |  | `` |
| Ant Design |  | `` |
| Apache Hadoop |  | `` |
| Apache Hive |  | `` |
| Apache Kafka |  | `` |
| Apache Spark |  | `` |
| Apollo GraphQL |  | `` |
| Arm |  | `` |
| Astro |  | `` |
| Aurelia |  | `` |
| Biome |  | `` |
| Black |  | `` |
| Blazor |  | `` |
| Bootstrap |  | `` |
| Buefy |  | `` |
| Bulma |  | `` |
| Bun |  | `` |
| Celery |  | `` |
| Chakra UI |  | `` |
| Chart.js |  | `` |
| Code Igniter |  | `` |
| Composer |  | `` |
| Conan |  | `` |
| Context API |  | `` |
| CUDA |  | `` |
| D3.js |  | `` |
| DaisyUI |  | `` |
| Deno JS |  | `` |
| Directus |  | `` |
| Django |  | `` |
| DjangoREST |  | `` |
| Drupal |  | `` |
| EJS |  | `` |
| Elasticsearch |  | `` |
| Electron.js |  | `` |
| Ember |  | `` |
| ESBuild |  | `` |
| Expo |  | `` |
| Express.js |  | `` |
| FastAPI |  | `` |
| Fastify |  | `` |
| Filament |  | `` |
| Flask |  | `` |
| Flatpak |  | `` |
| Flutter |  | `` |
| Font Awesome |  | `` |
| Framework7 |  | `` |
| Gatsby.js |  | `` |
| Grav |  | `` |
| Green Sock |  | `` |
| GSAP |  | `` |
| Gulp |  | `` |
| Gutenberg |  | `` |
| Handlebars |  | `` |
| Helm |  | `` |
| Homebrew |  | `` |
| Hono |  | `` |
| htmx |  | `` |
| Hugo |  | `` |
| Insomnia |  | `` |
| Ionic |  | `` |
| Jamstack |  | `` |
| Jasmine |  | `` |
| JavaFx |  | `` |
| Jinja |  | `` |
| Joomla |  | `` |
| jQuery |  | `` |
| JUnit5 |  | `` |
| JWT/JSON Web Token |  | `` |
| Ktor |  | `` |
| Laravel |  | `` |
| Less |  | `` |
| Lit |  | `` |
| Livewire |  | `` |
| Mantine |  | `` |
| Material UI |  | `` |
| Maven |  | `` |
| MaxCompute |  | `` |
| NativeScript |  | `` |
| NestJS |  | `` |
| Next JS |  | `` |
| Node-RED |  | `` |
| Node.js |  | `` |
| Nodemon |  | `` |
| NPM |  | `` |
| NuGet |  | `` |
| Nuxt JS |  | `` |
| Nx |  | `` |
| OpenCV |  | `` |
| OpenGL |  | `` |
| Oxc |  | `` |
| P5js |  | `` |
| Pantheon |  | `` |
| Phoenix Framework |  | `` |
| Photon |  | `` |
| pipx |  | `` |
| pkgsrc |  | `` |
| PlatformIO |  | `` |
| Plotly Dash |  | `` |
| PNPM |  | `` |
| Poetry |  | `` |
| PostCSS |  | `` |
| Prefect |  | `` |
| Prettier |  | `` |
| PrimeFaces |  | `` |
| Pug |  | `` |
| Pydantic |  | `` |
| Qt |  | `` |
| Quarkus |  | `` |
| Quasar |  | `` |
| Qwik |  | `` |
| RabbitMQ |  | `` |
| Radix UI |  | `` |
| Rails |  | `` |
| RayLib |  | `` |
| React |  | `` |
| React Hook Form |  | `` |
| React Native |  | `` |
| React Query |  | `` |
| React Router |  | `` |
| Redux |  | `` |
| Remix |  | `` |
| RISC-V |  | `` |
| RollupJS |  | `` |
| ROS |  | `` |
| RxDB |  | `` |
| RxJS |  | `` |
| SAP Commerce Cloud |  | `` |
| SASS |  | `` |
| Scrapy |  | `` |
| Semantic UI React |  | `` |
| Shadcn/UI |  | `` |
| Snowflake |  | `` |
| Socket.io |  | `` |
| SolidJS |  | `` |
| Spring |  | `` |
| Strapi |  | `` |
| Streamlit |  | `` |
| Styled Components |  | `` |
| Stylus |  | `` |
| Svelte |  | `` |
| SvelteKit |  | `` |
| Symfony |  | `` |
| TailwindCSS |  | `` |
| Tauri |  | `` |
| Three.js |  | `` |
| Thymeleaf |  | `` |
| tRPC |  | `` |
| Turborepo |  | `` |
| TypeGraphQL |  | `` |
| UIkit |  | `` |
| UnJS |  | `` |
| UnoCSS |  | `` |
| unpkg |  | `` |
| uv |  | `` |
| Vite |  | `` |
| Vue.js |  | `` |
| Vuetify |  | `` |
| Vulkan |  | `` |
| Web3.js |  | `` |
| Webflow |  | `` |
| WebGL |  | `` |
| Webpack |  | `` |
| WindiCSS |  | `` |
| WordPress |  | `` |
| Xamarin |  | `` |
| Yarn |  | `` |
| Zod |  | `` |
[(Back to top)](#table-of-contents)
### 🎮 Gaming
| Name | Badge | Markdown |
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| AMD |  | `` |
| Analogue |  | `` |
| Battle.net |  | `` |
| Bevy |  | `` |
| EA |  | `` |
| Epic Games |  | `` |
| Godot Engine |  | `` |
| Hearthstone Collection |  | `` |
| Humble Bundle |  | `` |
| Intel |  | `` |
| Itch.io |  | `` |
| nVIDIA |  | `` |
| OpenGL |  | `` |
| PlayStation Network |  | `` |
| Riot Games |  | `` |
| Roblox |  | `` |
| Sidequest |  | `` |
| Square Enix |  | `` |
| Steam |  | `` |
| Ubisoft |  | `` |
| Unity |  | `` |
| Unreal Engine |  | `` |
| Xbox |  | `` |
[(Back to top)](#table-of-contents)
### 🌏 Geospatial
| Name | Badge | Markdown |
| ------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
| Google Earth Engine |  | `` |
| QGIS |  | `` |
[(Back to top)](#table-of-contents)
### 🕹️ Game Consoles
| Name | Badge | Markdown |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| 3DS |  | `` |
| Gamecube |  | `` |
| Playstation |  | `` |
| Playstation 2 |  | `` |
| Playstation 3 |  | `` |
| Playstation 4 |  | `` |
| Playstation 5 |  | `` |
| Playstation Vita |  | `` |
| Switch |  | `` |
| Wii |  | `` |
| Wii U |  | `` |
| Xbox |  | `` |
[(Back to top)](#table-of-contents)
### 🖥️ Hardware
| Name | Badge | Markdown |
| --------- | --------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| Alienware |  | `` |
| MSI |  | `` |
[(Back to top)](#table-of-contents)
### ☁️ Hosting/SaaS
| Name | Badge | Markdown |
| -------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| Alibaba Cloud |  | `` |
| Asana |  | `` |
| AWS |  | `` |
| Azure |  | `` |
| Clickup |  | `` |
| Cloudflare |  | `` |
| Codeberg |  | `` |
| Datadog |  | `` |
| DigitalOcean |  | `` |
| Firebase |  | `` |
| Github Pages |  | `` |
| Glitch |  | `` |
| Google Cloud |  | `` |
| Heroku |  | `` |
| Hostinger |  | `` |
| Infomaniak |  | `` |
| Linear |  | `` |
| Linode |  | `` |
| Netlify |  | `` |
| OpenStack |  | `` |
| Oracle |  | `` |
| OVH |  | `` |
| Proxmox |  | `` |
| PythonAnywhere |  | `` |
| Render |  | `` |
| Scaleway |  | `` |
| Vercel |  | `` |
| Vultr |  | `` |
[(Back to top)](#table-of-contents)
### 💻 IDEs/Editors
| Name | Badge | Markdown |
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Studio |  | `` |
| Arduino IDE |  | `` |
| Atom |  | `` |
| CLion |  | `` |
| CodePen |  | `` |
| CodeSandbox |  | `` |
| Cursor |  | `` |
| Datagrip |  | `` |
| Doxygen |  | `` |
| Eclipse |  | `` |
| Emacs |  | `` |
| GoLand |  | `` |
| Google Colab |  | `` |
| Helix |  | `` |
| IntelliJ IDEA |  | `` |
| JetBrains |  | `` |
| Jupyter Notebook |  | `` |
| Neovim |  | `` |
| NetBeans IDE |  | `` |
| Notepad++ |  | `` |
| Obsidian |  | `` |
| P5js Editor |  | `` |
| PhpStorm |  | `` |
| PyCharm |  | `` |
| Replit |  | `` |
| ReSharper |  | `` |
| Rider |  | `` |
| RStudio |  | `` |
| RubyMine |  | `` |
| Spyder |  | `` |
| Stackblitz |  | `![Stackblitz] (https://img.shields.io/badge/Stackblitz-fff?style=for-the-badge&logo=Stackblitz&logoColor=1389FD)` |
| Sublime Text |  | `` |
| Vim |  | `` |
| Visual Studio |  | `` |
| Visual Studio Code |  | `` |
| VS Code Insiders |  | `` |
| WebStorm |  | `` |
| Xcode |  | `` |
| Zed |  | `` |
| Zend |  | `` |
[(Back to top)](#table-of-contents)
### 📋 Languages
| Name | Badge | Markdown |
| ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| Apache Groovy |  | `` |
| Assembly Script |  | `` |
| Bash Script |  | `` |
| C |  | `` |
| C# |  | `` |
| C++ |  | `` |
| Clojure |  | `` |
| CoffeeScript |  | `` |
| Crystal |  | `` |
| CSS |  | `` |
| CSS3 |  | `` |
| Dart |  | `` |
| Delphi |  | `` |
| Dgraph |  | `` |
| Elixir |  | `` |
| Elm |  | `` |
| Erlang |  | `` |
| Fortran |  | `` |
| GDScript |  | `` |
| Gleam |  | `` |
| Go/Golang |  | `` |
| GraphQL |  | `` |
| Haskell |  | `` |
| HTML5 |  | `` |
| Java |  | `` |
| JavaScript |  | `` |
| Julia |  | `` |
| Kotlin |  | `` |
| LabView |  | `` |
| LaTeX |  | `` |
| Lua |  | `` |
| Markdown |  | ` FILE: .github/scripts/check_badge_order.py function find_badge_sections (line 7) | def find_badge_sections(): function main (line 53) | def main():
Condensed preview — 15 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (312K chars).
[
{
"path": ".github/FUNDING.yml",
"chars": 16,
"preview": "ko_fi: ileriayo\n"
},
{
"path": ".github/ISSUE_TEMPLATE/badge-request.md",
"chars": 245,
"preview": "---\nname: Badge Request\nabout: Badge request template.\ntitle: \"[Category] [Badge Request] NAME\"\nlabels: \"new-badge\"\nassi"
},
{
"path": ".github/pr-labeler.yml",
"chars": 73,
"preview": "new-badge: [\"new/*\", \"badge/*\"]\nnew-section: section/*\ntypo-fix: fixed/*\n"
},
{
"path": ".github/pull_request_template.md",
"chars": 993,
"preview": "## Description\n\n<!-- Render is a .... -->\n\n## Info\n\n<!-- This is an example. Replace with badge details-->\n\n| Name | C"
},
{
"path": ".github/scripts/check_badge_order.py",
"chars": 3431,
"preview": "import sys\n\nimport os\nSCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))\nREADME_FILE_PATH = os.path.abspath(os.path"
},
{
"path": ".github/workflows/badge-order.yml",
"chars": 444,
"preview": "name: 📋 Check Badge List Alphabetical Order\n\non:\n pull_request:\n paths:\n - \"README.md\"\n\njobs:\n check-badge-ord"
},
{
"path": ".github/workflows/pr-labeler.yml",
"chars": 347,
"preview": "name: PR Labeler\non:\n pull_request:\n types: [opened]\n\njobs:\n pr-labeler:\n runs-on: ubuntu-latest\n steps:\n "
},
{
"path": ".github/workflows/prettier.yml",
"chars": 451,
"preview": "name: 🎨 Check Markdown Formatting\n\non:\n pull_request:\n paths:\n - \"**.md\"\n\njobs:\n prettier:\n runs-on: ubuntu"
},
{
"path": ".prettierrc",
"chars": 206,
"preview": "{\n \"printWidth\": 80,\n \"tabWidth\": 2,\n \"useTabs\": false,\n \"semi\": true,\n \"singleQuote\": false,\n \"trailingComma\": \"e"
},
{
"path": ".unibeautifyrc.json",
"chars": 114,
"preview": "{\n \"Markdown\": {\n \"beautifiers\": [\"Prettier\"],\n \"__pragma_insert__\": true,\n \"wrap_line_length\": 0\n }\n}\n"
},
{
"path": "CONTRIBUTING.md",
"chars": 4107,
"preview": "# Contributing to markdown-badges\n\n:tada: First off, thanks for taking the time to contribute! :tada:\n\n## The following "
},
{
"path": "LICENSE",
"chars": 1073,
"preview": "MIT License\n\nCopyright (c) 2020 Ileriayo Adebiyi\n\nPermission is hereby granted, free of charge, to any person obtaining "
},
{
"path": "README.md",
"chars": 297900,
"preview": ". The extraction includes 15 files (302.4 KB), approximately 83.6k tokens, and a symbol index with 2 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.