├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── language.js └── workflows │ └── prettier.yml ├── LICENSE ├── README.md └── contributing.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: ['https://www.buymeacoffee.com/abhisheknaiidu', 'https://www.paypal.me/abhisheknaiidu'] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 🐛 Error 3 | about: Create a issue to help us to improve this project ✨ 4 | title: "Error: " 5 | labels: 👀 needs triage, 🐛 error 6 | --- 7 | 8 | ### Describe the Error 9 | 10 | 11 | 12 | ### Expected behavior 13 | 14 | 15 | 16 | ### Additional context 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 🚀 Feature request 3 | about: Suggest an idea for this project 🌈 4 | title: "Feature: " 5 | labels: 👀 needs triage, 🌈 feature 6 | --- 7 | 8 | ### Is your feature request related to a problem? Please describe. 9 | 10 | 11 | 12 | ### Describe the solution you'd like 13 | 14 | 15 | 16 | ### Describe alternatives you've considered 17 | 18 | 19 | 20 | ### Additional context 21 | 22 | 23 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## What type of PR is this? (check all applicable) 2 | 3 | 4 | - [ ] 🚀 Added Name 5 | - [ ] ✨ Feature 6 | - [ ] ✅ Joined Community 7 | - [ ] 🌟 ed the repo 8 | - [ ] 🐛 Grammatical Error 9 | - [ ] 📝 Documentation Update 10 | - [ ] 🚩 Other 11 | 12 | ## Description 13 | 14 | 15 | 16 | ## Add Link of GitHub Profile 17 | 18 | -------------------------------------------------------------------------------- /.github/language.js: -------------------------------------------------------------------------------- 1 | console.log("Github Profile Readme"); 2 | -------------------------------------------------------------------------------- /.github/workflows/prettier.yml: -------------------------------------------------------------------------------- 1 | name: Continuous Integration 2 | 3 | # This action works with pull requests and pushes 4 | on: 5 | pull_request: 6 | push: 7 | branches: 8 | - master 9 | 10 | jobs: 11 | prettier: 12 | name: Run Prettier 13 | runs-on: ubuntu-latest 14 | 15 | steps: 16 | - name: Checkout 17 | uses: actions/checkout@v2 18 | 19 | - name: Prettify code 20 | uses: creyD/prettier_action@v2.2 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Awesome Github Profile README

2 |
3 | Awesome Badge 4 | website 5 | 6 | Star Badge 7 | Join Community Badge
8 | 9 | A curated list of awesome Github Profile READMEs 10 | 11 | Stars Badge 12 | Forks Badge 13 | Pull Requests Badge 14 | Issues Badge 15 | GitHub contributors 16 | License Badge 17 | 18 | Loved the project? Please consider [donating](https://paypal.me/abhisheknaiidu) to help it improve! 19 | 20 |
21 | 22 | ### Contents: 23 | - [Categories](#categories) 24 | - [Github Actions 🤖](#github-actions-) 25 | - [Game Mode 🚀](#game-mode-) 26 | - [Code Mode 👨🏽‍💻](#code-mode-) 27 | - [Dynamic Realtime 💫](#dynamic-realtime-) 28 | - [A Little Bit of Everything 😃](#a-little-bit-of-everything-) 29 | - [Descriptive 🗒](#descriptive-) 30 | - [Simple but Innovative Ones 🤗](#simple-but-innovative-ones-) 31 | - [Typing.. Mode 🎰](#typing-mode-) 32 | - [Anime 👾](#anime-) 33 | - [Minimalistic ✨](#minimalistic-) 34 | - [GIFS 👻](#gifs-) 35 | - [Just Images 🎭](#just-images-) 36 | - [Badges 🎫](#badges-) 37 | - [Fancy Fonts 🖋](#fancy-fonts-) 38 | - [Icons 🎯](#icons-) 39 | - [Retro 😎](#retro-) 40 | - [Tools](#tools) 41 | - [Articles](#articles) 42 | - [Video Tutorials](#tutorials) 43 | - [Contribute](#contribute) 44 | - [License](#license) 45 | 46 | 47 | ## Categories 48 | 49 | #### Github Actions 🤖 50 | - [Thomas Guibert](https://github.com/thmsgbrt/thmsgbrt) 51 | - [Brian Douglas](https://github.com/bdougie/bdougie) 52 | - [Shawn Wang](https://github.com/sw-yx/sw-yx) 53 | - [Simon Willison](https://github.com/simonw/simonw) 54 | - [Mike Coutermarsh](https://github.com/mscoutermarsh/mscoutermarsh) 55 | - [Michael Hoffmann (Mokkapps)](https://github.com/mokkapps/mokkapps) 56 | - [Athul Cyriac Ajay](https://github.com/athul/athul) 57 | - [Gautam Krishna R](https://github.com/gautamkrishnar/gautamkrishnar) 58 | - [Roald Nefs](https://github.com/roaldnefs/roaldnefs) 59 | - [Leo](https://github.com/mopig/mopig) 60 | - [Dhruv Jain](https://github.com/maddhruv/maddhruv) 61 | - [Erwin Lejeune](https://github.com/guilyx/guilyx) 62 | - [Jessica Lim](https://github.com/JessicaLim8/JessicaLim8) 63 | - [侑夕-Tw93](https://github.com/tw93/tw93) 64 | - [liununu](https://github.com/liununu/liununu) 65 | - [Filippo Rossi (qu4k)](https://github.com/qu4k/qu4k) 66 | - [Moe Poi ~](https://github.com/moepoi/moepoi) 67 | - [Elon Tang (blackcater)](https://github.com/blackcater/blackcater) 68 | - [Stanley Lim (Spiderpig86)](https://github.com/Spiderpig86/Spiderpig86) 69 | - [Akshit Garg (gargakshit)](https://github.com/gargakshit/gargakshit) 70 | - [Yufan You](https://github.com/ouuan/ouuan) 71 | - [Danny Koppenhagen](https://github.com/d-koppenhagen/d-koppenhagen) 72 | - [Vidya Bhandary](https://github.com/vidyabhandary/vidyabhandary) 73 | - [Rao Hai](https://github.com/RaoHai/RaoHai) 74 | - [Jatin Rao](https://github.com/jatin2003/jatin2003) 75 | - [teoxoy](https://github.com/teoxoy/teoxoy) 76 | - [Aral Roca](https://github.com/aralroca/aralroca) 77 | - [codeSTACKr](https://github.com/codestackr/codestackr) 78 | 79 | #### Game Mode 🚀 80 | - [Tim Burgan](https://github.com/timburgan/timburgan) 81 | - [Ben Sampica](https://github.com/benjaminsampica/benjaminsampica) 82 | - [Kavish Hukmani](https://github.com/DoubleGremlin181/DoubleGremlin181) 83 | - [Jonathan Gin](https://github.com/JonathanGin52/JonathanGin52) 84 | - [Ross Williams](https://github.com/rossjrw/rossjrw) 85 | 86 | #### Code Mode 👨🏽‍💻 87 | - [Thaiane Braga](https://github.com/Thaiane/Thaiane) 88 | - [Ash Baker](https://github.com/ashbakernz/ashbakernz) 89 | - [Anmol Singh](https://github.com/anmol098/anmol098) 90 | - [Kiho](https://github.com/monkindey/monkindey) 91 | - [Marton](https://github.com/martonlederer/martonlederer) 92 | - [Redowan Delowar](https://github.com/rednafi/rednafi) 93 | 94 | #### Dynamic Realtime 💫 95 | - [Abhishek Naidu](https://github.com/abhisheknaiidu/abhisheknaiidu) 96 | - [Anurag Hazra](https://github.com/anuraghazra/anuraghazra) 97 | - [Hemant Joshi](https://github.com/8bithemant/8bithemant) 98 | - [Kittinan](https://github.com/kittinan/kittinan) 99 | - [Andrew Novac](https://github.com/novatorem/novatorem) 100 | - [Johnny Villegas](https://github.com/C9-LinkRs/C9-LinkRs) 101 | - [andyruwruw](https://github.com/andyruwruw/andyruwruw) 102 | 103 | #### A Little Bit of Everything 😃 104 | - [Raymond Li](https://github.com/Raymo111/Raymo111) 105 | - [Martin Heinz](https://github.com/MartinHeinz/MartinHeinz) 106 | - [Adam Alston](https://github.com/adamalston/adamalston) 107 | - [Rafnix Guzmán](https://github.com/rafnixg/rafnixg) 108 | - [Aditya Pal](https://github.com/sciencepal/sciencepal) 109 | - [Hedy Li](https://github.com/hedythedev/hedythedev) 110 | - [Xunzhuo](https://github.com/xunzhuo/xunzhuo) 111 | 112 | #### Descriptive 🗒 113 | - [Filip Troníček](https://github.com/filiptronicek/filiptronicek) 114 | - [Garima Singh](https://github.com/garimasingh128/garimasingh128) 115 | - [lizheming](https://github.com/lizheming/lizheming) 116 | - [Nguyễn Hoàng Dương](https://github.com/you-create/you-create) 117 | - [Saksham Taneja](https://github.com/sakshamtaneja21/sakshamtaneja21) 118 | - [Keshav Singh](https://github.com/keshavsingh4522/keshavsingh4522) 119 | 120 | #### Simple but Innovative Ones 🤗 121 | - [Nate Moore](https://github.com/natemoo-re/natemoo-re) 122 | - [Jhey Tompkins](https://github.com/jh3y/jh3y) 123 | - [Waylon Walker](https://github.com/WaylonWalker/WaylonWalker) 124 | - [Vansh Kapoor](https://github.com/vanshkapoor/vanshkapoor) 125 | - [Harsh Kumar Khatri](https://github.com/harshkumarkhatri/harshkumarkhatri) 126 | - [Stephen Ajulu](https://github.com/stephenajulu/stephenajulu) 127 | - [Haany Ali](https://github.com/MarikIshtar007/MarikIshtar007) 128 | - [Anurag Singh](https://github.com/ashleymavericks/ashleymavericks) 129 | - [Rishit Dagli](https://github.com/Rishit-dagli/Rishit-dagli) 130 | - [Vinit Shahdeo](https://github.com/vinitshahdeo/vinitshahdeo/) 131 | - [Fatih Kadir Akın](https://github.com/f/f/) 132 | - [Lucas Vazquez](https://github.com/lucasvazq/lucasvazq) 133 | - [小弟调调™](https://github.com/jaywcjlove/jaywcjlove) 134 | - [alx365](https://github.com/alx365/alx365) 135 | - [Johnny Villegas](https://github.com/C9-LinkRs/C9-LinkRs) 136 | - [一缕殇流化隐半边冰霜](https://github.com/halfrost/halfrost) 137 | - [Srihari Kapu](https://github.com/sriharikapu/sriharikapu) 138 | - [Arturs Smirnovs](https://github.com/arturssmirnovs/arturssmirnovs) 139 | 140 | #### Typing.. Mode 🎰 141 | - [Mathieu Ledru](https://github.com/matyo91/matyo91) 142 | - [CyrisXD](https://github.com/CyrisXD/CyrisXD) 143 | - [Mpho Mphego](https://github.com/mmphego/mmphego) 144 | - [Abhinav Sharma](https://github.com/ABSphreak/ABSphreak) 145 | - [Mason Slover](https://github.com/MasonSlover/MasonSlover) 146 | - [SuperSupeng](https://github.com/SuperSupeng/SuperSupeng) 147 | 148 | #### Anime 👾 149 | - [Ing](https://github.com/innng/innng) 150 | - [edisonlee55](https://github.com/edisonlee55/edisonlee55) 151 | - [Ashutosh](https://github.com/Xx-Ashutosh-xX/Xx-Ashutosh-xX) 152 | 153 | #### Minimalistic ✨ 154 | - [Caneco](https://github.com/caneco/) 155 | - [Gift Egwuenu](https://github.com/lauragift21/lauragift21) 156 | - [Kelechi Precious Nwachukwu](https://github.com/PluckyPrecious/PluckyPrecious) 157 | - [Ghazi Khan](https://github.com/gkhan205) 158 | - [Pratik Kumar](https://github.com/pr2tik1/pr2tik1) 159 | - [Dennis Hartrampf](https://github.com/DennisHartrampf/DennisHartrampf) 160 | - [MrStanDu33](https://github.com/MrStanDu33/MrStanDu33) 161 | - [Jayraj Roshan](https://github.com/jayrajroshan/jayrajroshan) 162 | - [amxchang](https://github.com/amxchang/amxchang) 163 | - [ridermansb](https://github.com/Ridermansb/Ridermansb) 164 | - [Maximous Black](https://github.com/maximousblk/maximousblk) 165 | - [Alex Martin](https://github.com/AlexMartinFR/AlexMartinFR) 166 | - [ChungZH](https://github.com/ChungZH/ChungZH/) 167 | - [Orhun](https://github.com/orhun/orhun) 168 | - [Aveek Saha](https://github.com/Aveek-Saha/Aveek-Saha) 169 | 170 | #### GIFS 👻 171 | - [Pouya Saadeghi](https://github.com/saadeghi/saadeghi) 172 | - [Ari](https://github.com/ari-hacks/ari-hacks) 173 | - [Siv Ram Shastri](https://github.com/Prince-Shivaram/Prince-Shivaram) 174 | - [Shanu Mishra](https://github.com/Shanu1515/Shanu1515) 175 | - [Shubham Kumar](https://github.com/imskr/imskr) 176 | - [Duncan](https://github.com/dephraiim/dephraiim) 177 | - [Demartini](https://github.com/demartini/demartini) 178 | - [Sindre Sorhus](https://github.com/sindresorhus/sindresorhus) 179 | - [Pranjal Bhardwaj](https://github.com/Bhard27/Bhard27) 180 | - [Okan Koçyiğit](https://github.com/okankocyigit/okankocyigit) 181 | - [Raghav Khullar](https://github.com/RaghavK16/RaghavK16) 182 | - [xrkffgg](https://github.com/xrkffgg/xrkffgg) 183 | - [Kevin Cui](https://github.com/KevCui/KevCui) 184 | - [Muskan Rani](https://github.com/muskanrani/muskanrani) 185 | 186 | #### Just Images 🎭 187 | - [Zack Krida](https://github.com/zackkrida/zackkrida) 188 | - [偏右](https://github.com/afc163/afc163) 189 | - [thewhiteh4t](https://github.com/thewhiteh4t/thewhiteh4t) 190 | - [Akash Rai](https://github.com/akasrai/akasrai) 191 | - [Kaito Sugimoto](https://github.com/7ma7X/7ma7X) 192 | - [Oussama Bouchikhi](https://github.com/oussamabouchikhi/oussamabouchikhi) 193 | - [Daily Random Photo](https://github.com/dailyrandomphoto/dailyrandomphoto) 194 | 195 | #### Badges 🎫 196 | - [Anirudh Emmadi](https://github.com/aemmadi/aemmadi) 197 | - [Brendon Smith](https://github.com/br3ndonland/br3ndonland) 198 | - [Alwin Wang](https://github.com/alwinw/alwinw) 199 | - [Moshfiq Rony](https://github.com/moshfiqrony/moshfiqrony) 200 | - [Ileriayo Adebiyi](https://github.com/ileriayo/ileriayo) 201 | - [Samujjwaal Dey](https://github.com/samujjwaal/samujjwaal) 202 | 203 | #### Fancy Fonts 🖋 204 | - [xiaoluoboding](https://github.com/xiaoluoboding/xiaoluoboding) 205 | 206 | #### Icons 🎯 207 | - [Yuan Tang](https://github.com/terrytangyuan/terrytangyuan) 208 | - [Hussainweb](https://github.com/hussainweb/hussainweb) 209 | - [Peter Han](https://github.com/peterthehan/peterthehan) 210 | - [Thomas George Thomas](https://github.com/Thomas-George-T/Thomas-George-T) 211 | - [Derek Nguyen](https://github.com/dereknguyen269/dereknguyen269) 212 | 213 | #### Retro 😎 214 | - [Livio Brunner](https://github.com/BrunnerLivio/BrunnerLivio) 215 | - [Christian Petersen](https://github.com/fnky/fnky) 216 | 217 | ## Tools 218 | - [Visitor Badge](https://visitor-badge.glitch.me/#docs) - Count visitors for your README.md, Issues, PRs in GitHub 219 | - [1990s style Visitor Counter](https://twitter.com/ryanlanciaux/status/1283755637126705152) - Add a 1990s style visitor counter with one line of markdown. 220 | - [Vists Count](https://pufler.dev/git-badges/) - Count visitors for README.md that can be used with shields.io 221 | - [Shields Project](https://shields.io/) - Use Shields to create profile badges, compatible with Simple Icons 222 | - [Github Readme Stats](https://github.com/anuraghazra/github-readme-stats) - Get dynamically generated GitHub stats on your readmes 223 | - [Simple Icons](https://github.com/simple-icons/simple-icons#cdn-usage) - SVG icons for popular brands for your README.md files 224 | - [Laravel GitHub Profile Visit Counter](https://github.com/caneco/laravel-github-profile-view-counter) - Add on your Laravel project a quick-badge to count your profile visits. 225 | - [Dev Metrics in Readme](https://github.com/athul/waka-readme) - [WakaTime](https://wakatime.com/) Weekly Metrics on your Profile Readme 226 | - [Profile Activity Generator](https://github.com/omidnikrah/profile-activity-generator) - Generate custom profile activity for your profile README 227 | - [Current UTC time](https://github.com/jojoee/jojoee) - Example code of server that can serve dynamic content on GitHub profile 228 | - [Github Activity in README](https://github.com/jamesgeorge007/github-activity-readme) - Updates `README.md` with the recent GitHub activity of a user 229 | - [Github Profile README Generator](https://github.com/rahuldkjain/github-profile-readme-generator) - This tool provides an easy way to create github profile readme with latest addons like `visitors count`, `github stats` etc. 230 | - [Dynamic Profile Page On Github](https://github.com/umutphp/github-action-dynamic-profile-page) - Get dynamically generated list of your commits (of the repositories that the action is configured) on GitHub profile readme. 231 | - [npm package downloads](https://github.com/maddhruv/github-readme-npm-downloads) - Show all of your npm packages and their total downloads 232 | - [All Dev Stats in Readme](https://github.com/anmol098/waka-readme-stats) - Are you an early 🐤 or a night 🦉? When are you most productive during the day? What languages you code in? And other stuff... Let's check out in your readme! 233 | - [Feedparser](https://pythonhosted.org/feedparser/) - Convenient processing of RSS files 234 | - [Profile README Widgets](https://github.com/marketplace/actions/profile-readme) - Add simple widgets to your profile readme. 235 | - [Spotify now playing card generator](https://github.com/kittinan/spotify-github-profile) - Generate your Spotify now playing card for your GitHub profile 236 | - [Markdown Badges](https://github.com/Ileriayo/markdown-badges) - Add badges to your profile. 237 | - [Latest Blog Posts and StackOverflow activity in readme](https://github.com/gautamkrishnar/blog-post-workflow) - Show your latest blog posts from any sources or StackOverflow activity on your GitHub profile/project readme automatically using the RSS feed using this Github Action 238 | - [GitHub Readme LinkedIn](https://github.com/soroushchehresa/github-readme-linkedin) - Get dynamically generated images from your LinkedIn profile on your GitHub readmes 239 | - [GitHub Readme Medium](https://github.com/omidnikrah/github-readme-medium) - Show your latest Medium article on your readmes! 240 | - [GitHub Readme StackOverflow](https://github.com/omidnikrah/github-readme-stackoverflow) - Dynamically generated your StackOverflow profile status on your GitHub readmes! 241 | - [Github Profile README Generator](https://github.com/arturssmirnovs/github-profile-readme-generator) - This project allows you to create nice and simple github profile readme files. 242 | - [Profile Readme Stats](https://github.com/marketplace/actions/profile-readme-stats) - [Github Action] Showcase your github stats on your profile README.md 243 | - [README Jokes](https://github.com/ABSphreak/readme-jokes) - Random dev jokes in your GitHub README. 244 | 245 | ## Articles 246 | - ["How To Create A GitHub Profile README"](https://www.aboutmonica.com/blog/how-to-create-a-github-profile-readme) - *Monica Powell* 247 | - ["What's on your GitHub Profile"](https://dev.to/waylonwalker/what-s-on-your-github-profile-40p3) - *Waylon Walker* 248 | - ["3 Ways to Spice up your Github Profile README 🔥"](https://dev.to/jayehernandez/3-ways-to-spice-up-your-github-profile-readme-1276) - *Jaye Hernandez* 249 | - ["Dynamically Generated Github Stats For Your Profile ReadMe"](https://dev.to/anuraghazra/dynamically-generated-github-stats-for-your-profile-readme-o4g) - *Anurag Hazra* 250 | - ["How to create an awesome GIF for your GitHub Profile README"](https://dev.to/satvikchachra/how-to-add-an-awesome-readme-to-your-github-profile-361n) - *Satvik Chachra* 251 | - ["Create a special repository in your GitHub Profile 🔨, supported and unsupported features"](https://torrocus.com/blog/special-github-repository/) - *Alex Malaszkiewicz* 252 | - ["How to create a Github Profile README with Dynamic Github Stats"](https://codewithghazi.com/how-to-create-a-github-profile-readme-with-dynamic-github-stats/) - *Ghazi Khan* 253 | - ["How I Built A Self-Updating README On My Github Profile"](https://www.mokkapps.de/blog/how-i-built-a-self-updating-readme-on-my-git-hub-profile/) - *Michael Hoffmann (Mokkapps)* 254 | - ["Building a self-updating profile README for GitHub"](https://simonwillison.net/2020/Jul/10/self-updating-profile-readme/) - *Simon Willison* 255 | - ["How to create an interactive README for your GitHub profile"](https://kavishhukmani.me/github-profile-interactive-readme-tutorial/) - *Kavish Hukmani* 256 | - ["什么?Github 居然可以这么玩?"](https://zhuanlan.zhihu.com/p/161705999) - *Tw93* 257 | - ["Getting started with Markdown Badges"](https://dev.to/ileriayo/mardown-badges-2og0) - *Ileriayo Adebiyi* 258 | - ["Show your latest dev.to posts automatically on your GitHub profile readme"](https://dev.to/gautamkrishnar/show-your-latest-dev-to-posts-automatically-in-your-github-profile-readme-3nk8) - *Gautam krishna R* 259 | - ["How I Built A Self-Updating README by Webhooks and Netlify Functions"](https://github.com/RaoHai/RaoHai/blob/master/How-I-Built-A-Self-Updating-README-by-Webhooks-and-Netlify-Functions.md/) - *Rao Hai* 260 | - ["Build a Stunning README For Your GitHub Profile"](https://towardsdatascience.com/build-a-stunning-readme-for-your-github-profile-9b80434fe5d7) - *Martin Heinz* 261 | - ["How I added my Spotify statistics to my GitHub readme 📜"](https://dev.to/gargakshit/how-i-added-my-spotify-statistics-to-my-github-readme-4jdd) - *Akshit Garg* 262 | - ["Static Readme Regeneration"](https://dev.to/aralroca/static-readme-regeneration-4pf2) - *Aral Roca* 263 | - ["How to Create a Self-Updating README.md for Your GitHub Profile"](https://medium.com/@th.guibert/how-to-create-a-self-updating-readme-md-for-your-github-profile-f8b05744ca91) - *Thomas Guibert* 264 | 265 | ## Tutorials 266 | - ["Create Impressive GitHub Portfolio"](https://www.youtube.com/watch?v=dkE4mVhwMB4) - *MTECHVIRAL* 267 | - ["How To Create a Github Profile ReadMe"](https://www.youtube.com/watch?v=DOiGs2NiDbU) - *James Q Quick* 268 | - ["How to create a GitHub profile README"](https://www.youtube.com/watch?v=vND_UY7xk24) - *Code With Confidence* 269 | - ["How To Create A GitHub Profile README"](https://www.youtube.com/watch?v=Y1z7_GfEPiE) - *Program With Erik* 270 | - ["Next Level GitHub Profile README"](https://youtu.be/ECuqb5Tv9qI) - *codeSTACKr* 271 | 272 | ## Contribute 273 | 274 | Contributions are always welcome! 275 | Please read the [contribution guidelines](contributing.md) first. 276 | 277 | ## License 278 | 279 | [![CC0](https://licensebuttons.net/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/) 280 | 281 | To the extent possible under law, [Abhishek Naidu](https://abhisheknaidu.tech/) has waived all copyright and related or neighboring rights to this work. 282 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please ensure your pull request adheres to the following guidelines: 4 | 5 | - Suggested Github Profile READMEs should be beautiful or stand out in some way. 6 | - Make an individual pull request for each suggestion. 7 | - Can suggest for different categories as well. 8 | - Start the Name with a capital. 9 | - Check your spelling and grammar. 10 | - Make sure your text editor is set to remove trailing whitespace. 11 | 12 | Thank you for your suggestions! 13 | --------------------------------------------------------------------------------