├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── documentation.yml │ └── feature.yml └── pull_request.md ├── .gitignore ├── .vscode └── settings.json ├── 404.html ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── assets ├── Badges │ ├── 2020-Arctic-Code-Vault-Contributor │ │ ├── PNG │ │ │ └── 2020ArcticCodeVaultBadge.png │ │ └── SVG │ │ │ └── README.md │ ├── Galaxy-Brain │ │ ├── PNG │ │ │ ├── GalaxyBrain.png │ │ │ ├── GalaxyBrain_Bronze.png │ │ │ ├── GalaxyBrain_Gold.png │ │ │ └── GalaxyBrain_Silver.png │ │ └── SVG │ │ │ └── README.md │ ├── GitHub-Sponsor │ │ ├── PNG │ │ │ └── GitHubSponsorBadge.png │ │ └── SVG │ │ │ └── README.md │ ├── Heart-on-your-sleeve │ │ ├── PNG │ │ │ ├── HeartOnYourSleeve.png │ │ │ ├── HeartOnYourSleeve_Bronze.png │ │ │ ├── HeartOnYourSleeve_Gold.png │ │ │ └── HeartOnYourSleeve_Silver.png │ │ └── SVG │ │ │ └── README.md │ ├── Mars-2020-Contributor │ │ ├── PNG │ │ │ └── Mars2020ContributorBadge.png │ │ └── SVG │ │ │ └── README.md │ ├── Open-Sourcerer │ │ ├── PNG │ │ │ ├── OpenSourcerer.png │ │ │ ├── OpenSourcerer_Bronze.png │ │ │ ├── OpenSourcerer_Gold.png │ │ │ └── OpenSourcerer_Silver.png │ │ └── SVG │ │ │ └── README.md │ ├── Pair-Extraordinaire │ │ ├── PNG │ │ │ ├── PairExtraordinaire.png │ │ │ ├── PairExtraordinaire_Bronze.png │ │ │ ├── PairExtraordinaire_Gold.png │ │ │ └── PairExtraordinaire_Silver.png │ │ └── SVG │ │ │ └── README.md │ ├── Pull-Shark │ │ ├── GIF │ │ │ └── PullShark_Animated.gif │ │ ├── PNG │ │ │ ├── PullShark.png │ │ │ ├── PullShark_Bronze.png │ │ │ ├── PullShark_Gold.png │ │ │ └── PullShark_Silver.png │ │ └── SVG │ │ │ └── README.md │ ├── Quick-Draw │ │ ├── PNG │ │ │ └── Skin-Tones │ │ │ │ ├── QuickDraw_SkinTone1.png │ │ │ │ ├── QuickDraw_SkinTone2.png │ │ │ │ ├── QuickDraw_SkinTone3.png │ │ │ │ ├── QuickDraw_SkinTone4.png │ │ │ │ ├── QuickDraw_SkinTone5.png │ │ │ │ └── QuickDraw_SkinTone6.png │ │ └── SVG │ │ │ └── README.md │ ├── Star-Struck │ │ ├── PNG │ │ │ ├── Skin-Tones │ │ │ │ ├── StarStruck_SkinTone1.png │ │ │ │ ├── StarStruck_SkinTone2.png │ │ │ │ ├── StarStruck_SkinTone3.png │ │ │ │ ├── StarStruck_SkinTone4.png │ │ │ │ ├── StarStruck_SkinTone5.png │ │ │ │ └── StarStruck_SkinTone6.png │ │ │ ├── StarStruck_Bronze.png │ │ │ ├── StarStruck_Gold.png │ │ │ └── StarStruck_Silver.png │ │ └── SVG │ │ │ └── README.md │ └── YOLO │ │ ├── PNG │ │ └── YOLO_Badge.png │ │ └── SVG │ │ └── README.md ├── GSSoC-Ext.png ├── GitHub_Logo │ ├── 172940773-7ef23b63-3356-4634-9e52-34f2676e2854.png │ ├── 172941149-31258408-bfc3-496a-8a58-e34794b21813.png │ ├── favicon-dark.png │ ├── favicon-dark.svg │ ├── fluidicon.png │ └── pinned-octocat.svg ├── Highlights │ ├── Developer-Program-Member │ │ └── SVG │ │ │ ├── DeveloperProgramMember_DarkMode.svg │ │ │ └── DeveloperProgramMember_LightMode.svg │ ├── GitHub-Campus-Expert │ │ └── SVG │ │ │ ├── GitHub-Campus-Expert_DarkMode.svg │ │ │ └── GitHub-Campus-Expert_LightMode.svg │ ├── GitHub-Pro │ │ └── SVG │ │ │ ├── GitHub-Pro_DarkMode.svg │ │ │ └── GitHub-Pro_LightMode.svg │ ├── Security-Advisory-Credit │ │ └── SVG │ │ │ ├── Security-Advisory-Credit_DarkMode.svg │ │ │ └── Security-Advisory-Credit_LightMode.svg │ └── Security-Bug-Bounty-Hunter │ │ └── SVG │ │ ├── Security-Bug-Bounty-Hunter_DarkMode.svg │ │ └── Security-Bug-Bounty-Hunter_LightMode.svg ├── Misc │ └── Emojis │ │ ├── 1f3c5.png │ │ ├── 1f3c6.png │ │ ├── 1f44b.png │ │ ├── 1f4c3.png │ │ ├── 1f525.png │ │ ├── 2139.png │ │ ├── 2728.png │ │ └── 274c.png ├── achievement-png.png ├── blog-png.png ├── c1.png ├── c2.png ├── c3.png ├── c4.png ├── c5.png ├── c6.png ├── c7.png ├── code-of-conduct.png ├── compare.png ├── events.png ├── hacktoberfest.png ├── recode-hive.png └── recode.png ├── blog.json ├── dashboard.css ├── dashboard.html ├── index.html ├── index.js ├── login.css ├── login.html ├── login.js ├── package.json ├── pages ├── blog.html ├── compare.html ├── construction.html ├── devtools.html ├── events.html ├── exploremore.html ├── faq.html ├── githubbadge.html ├── help.html ├── recode-hive.png ├── recomendation.html ├── saved-blogs.html ├── skillMatcher.html ├── stats.html ├── testimonial.html └── videos.html ├── recode-hive.png ├── screenshots └── sanjay-kv-image.png ├── scripts ├── ScrollToTop.js ├── blog.js ├── capture-screenshot.js ├── compare.js ├── dark-mode.js ├── hamburger.js ├── profileModal.js ├── retriveprofile.js ├── revealelementsonscroll.js ├── speechRecognition.js └── videos.js ├── server.js └── styles ├── blog.css ├── compare.css ├── construction.css ├── construction.css.map ├── devtools.css ├── events.css ├── explore.css ├── faq.css ├── githubbadge.css ├── hamburger.css ├── help.css ├── modal.css ├── pagination.css ├── recomendation.css ├── saved-blogs.css ├── skillmatcher.css ├── speech.css ├── styles.css ├── update login.js └── videos.css /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/pull_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/.github/pull_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/404.html -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/Badges/2020-Arctic-Code-Vault-Contributor/PNG/2020ArcticCodeVaultBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/2020-Arctic-Code-Vault-Contributor/PNG/2020ArcticCodeVaultBadge.png -------------------------------------------------------------------------------- /assets/Badges/2020-Arctic-Code-Vault-Contributor/SVG/README.md: -------------------------------------------------------------------------------- 1 | An SVG version is not currently available. 2 | -------------------------------------------------------------------------------- /assets/Badges/Galaxy-Brain/PNG/GalaxyBrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Galaxy-Brain/PNG/GalaxyBrain.png -------------------------------------------------------------------------------- /assets/Badges/Galaxy-Brain/PNG/GalaxyBrain_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Galaxy-Brain/PNG/GalaxyBrain_Bronze.png -------------------------------------------------------------------------------- /assets/Badges/Galaxy-Brain/PNG/GalaxyBrain_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Galaxy-Brain/PNG/GalaxyBrain_Gold.png -------------------------------------------------------------------------------- /assets/Badges/Galaxy-Brain/PNG/GalaxyBrain_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Galaxy-Brain/PNG/GalaxyBrain_Silver.png -------------------------------------------------------------------------------- /assets/Badges/Galaxy-Brain/SVG/README.md: -------------------------------------------------------------------------------- 1 | An SVG version is not currently available. 2 | -------------------------------------------------------------------------------- /assets/Badges/GitHub-Sponsor/PNG/GitHubSponsorBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/GitHub-Sponsor/PNG/GitHubSponsorBadge.png -------------------------------------------------------------------------------- /assets/Badges/GitHub-Sponsor/SVG/README.md: -------------------------------------------------------------------------------- 1 | An SVG version is not currently available. 2 | -------------------------------------------------------------------------------- /assets/Badges/Heart-on-your-sleeve/PNG/HeartOnYourSleeve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Heart-on-your-sleeve/PNG/HeartOnYourSleeve.png -------------------------------------------------------------------------------- /assets/Badges/Heart-on-your-sleeve/PNG/HeartOnYourSleeve_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Heart-on-your-sleeve/PNG/HeartOnYourSleeve_Bronze.png -------------------------------------------------------------------------------- /assets/Badges/Heart-on-your-sleeve/PNG/HeartOnYourSleeve_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Heart-on-your-sleeve/PNG/HeartOnYourSleeve_Gold.png -------------------------------------------------------------------------------- /assets/Badges/Heart-on-your-sleeve/PNG/HeartOnYourSleeve_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Heart-on-your-sleeve/PNG/HeartOnYourSleeve_Silver.png -------------------------------------------------------------------------------- /assets/Badges/Heart-on-your-sleeve/SVG/README.md: -------------------------------------------------------------------------------- 1 | An SVG version is not currently available. 2 | -------------------------------------------------------------------------------- /assets/Badges/Mars-2020-Contributor/PNG/Mars2020ContributorBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Mars-2020-Contributor/PNG/Mars2020ContributorBadge.png -------------------------------------------------------------------------------- /assets/Badges/Mars-2020-Contributor/SVG/README.md: -------------------------------------------------------------------------------- 1 | An SVG version is not currently available. 2 | -------------------------------------------------------------------------------- /assets/Badges/Open-Sourcerer/PNG/OpenSourcerer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Open-Sourcerer/PNG/OpenSourcerer.png -------------------------------------------------------------------------------- /assets/Badges/Open-Sourcerer/PNG/OpenSourcerer_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Open-Sourcerer/PNG/OpenSourcerer_Bronze.png -------------------------------------------------------------------------------- /assets/Badges/Open-Sourcerer/PNG/OpenSourcerer_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Open-Sourcerer/PNG/OpenSourcerer_Gold.png -------------------------------------------------------------------------------- /assets/Badges/Open-Sourcerer/PNG/OpenSourcerer_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Open-Sourcerer/PNG/OpenSourcerer_Silver.png -------------------------------------------------------------------------------- /assets/Badges/Open-Sourcerer/SVG/README.md: -------------------------------------------------------------------------------- 1 | An SVG version is not currently available. 2 | -------------------------------------------------------------------------------- /assets/Badges/Pair-Extraordinaire/PNG/PairExtraordinaire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Pair-Extraordinaire/PNG/PairExtraordinaire.png -------------------------------------------------------------------------------- /assets/Badges/Pair-Extraordinaire/PNG/PairExtraordinaire_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Pair-Extraordinaire/PNG/PairExtraordinaire_Bronze.png -------------------------------------------------------------------------------- /assets/Badges/Pair-Extraordinaire/PNG/PairExtraordinaire_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Pair-Extraordinaire/PNG/PairExtraordinaire_Gold.png -------------------------------------------------------------------------------- /assets/Badges/Pair-Extraordinaire/PNG/PairExtraordinaire_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Pair-Extraordinaire/PNG/PairExtraordinaire_Silver.png -------------------------------------------------------------------------------- /assets/Badges/Pair-Extraordinaire/SVG/README.md: -------------------------------------------------------------------------------- 1 | An SVG version is not currently available. 2 | -------------------------------------------------------------------------------- /assets/Badges/Pull-Shark/GIF/PullShark_Animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Pull-Shark/GIF/PullShark_Animated.gif -------------------------------------------------------------------------------- /assets/Badges/Pull-Shark/PNG/PullShark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Pull-Shark/PNG/PullShark.png -------------------------------------------------------------------------------- /assets/Badges/Pull-Shark/PNG/PullShark_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Pull-Shark/PNG/PullShark_Bronze.png -------------------------------------------------------------------------------- /assets/Badges/Pull-Shark/PNG/PullShark_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Pull-Shark/PNG/PullShark_Gold.png -------------------------------------------------------------------------------- /assets/Badges/Pull-Shark/PNG/PullShark_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Pull-Shark/PNG/PullShark_Silver.png -------------------------------------------------------------------------------- /assets/Badges/Pull-Shark/SVG/README.md: -------------------------------------------------------------------------------- 1 | An SVG version is not currently available. 2 | -------------------------------------------------------------------------------- /assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone1.png -------------------------------------------------------------------------------- /assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone2.png -------------------------------------------------------------------------------- /assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone3.png -------------------------------------------------------------------------------- /assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone4.png -------------------------------------------------------------------------------- /assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone5.png -------------------------------------------------------------------------------- /assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Quick-Draw/PNG/Skin-Tones/QuickDraw_SkinTone6.png -------------------------------------------------------------------------------- /assets/Badges/Quick-Draw/SVG/README.md: -------------------------------------------------------------------------------- 1 | An SVG version is not currently available. 2 | -------------------------------------------------------------------------------- /assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone1.png -------------------------------------------------------------------------------- /assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone2.png -------------------------------------------------------------------------------- /assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone3.png -------------------------------------------------------------------------------- /assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone4.png -------------------------------------------------------------------------------- /assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone5.png -------------------------------------------------------------------------------- /assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Star-Struck/PNG/Skin-Tones/StarStruck_SkinTone6.png -------------------------------------------------------------------------------- /assets/Badges/Star-Struck/PNG/StarStruck_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Star-Struck/PNG/StarStruck_Bronze.png -------------------------------------------------------------------------------- /assets/Badges/Star-Struck/PNG/StarStruck_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Star-Struck/PNG/StarStruck_Gold.png -------------------------------------------------------------------------------- /assets/Badges/Star-Struck/PNG/StarStruck_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/Star-Struck/PNG/StarStruck_Silver.png -------------------------------------------------------------------------------- /assets/Badges/Star-Struck/SVG/README.md: -------------------------------------------------------------------------------- 1 | An SVG version is not currently available. 2 | -------------------------------------------------------------------------------- /assets/Badges/YOLO/PNG/YOLO_Badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Badges/YOLO/PNG/YOLO_Badge.png -------------------------------------------------------------------------------- /assets/Badges/YOLO/SVG/README.md: -------------------------------------------------------------------------------- 1 | An SVG version is not currently available. 2 | -------------------------------------------------------------------------------- /assets/GSSoC-Ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/GSSoC-Ext.png -------------------------------------------------------------------------------- /assets/GitHub_Logo/172940773-7ef23b63-3356-4634-9e52-34f2676e2854.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/GitHub_Logo/172940773-7ef23b63-3356-4634-9e52-34f2676e2854.png -------------------------------------------------------------------------------- /assets/GitHub_Logo/172941149-31258408-bfc3-496a-8a58-e34794b21813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/GitHub_Logo/172941149-31258408-bfc3-496a-8a58-e34794b21813.png -------------------------------------------------------------------------------- /assets/GitHub_Logo/favicon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/GitHub_Logo/favicon-dark.png -------------------------------------------------------------------------------- /assets/GitHub_Logo/favicon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/GitHub_Logo/favicon-dark.svg -------------------------------------------------------------------------------- /assets/GitHub_Logo/fluidicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/GitHub_Logo/fluidicon.png -------------------------------------------------------------------------------- /assets/GitHub_Logo/pinned-octocat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/GitHub_Logo/pinned-octocat.svg -------------------------------------------------------------------------------- /assets/Highlights/Developer-Program-Member/SVG/DeveloperProgramMember_DarkMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Highlights/Developer-Program-Member/SVG/DeveloperProgramMember_DarkMode.svg -------------------------------------------------------------------------------- /assets/Highlights/Developer-Program-Member/SVG/DeveloperProgramMember_LightMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Highlights/Developer-Program-Member/SVG/DeveloperProgramMember_LightMode.svg -------------------------------------------------------------------------------- /assets/Highlights/GitHub-Campus-Expert/SVG/GitHub-Campus-Expert_DarkMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Highlights/GitHub-Campus-Expert/SVG/GitHub-Campus-Expert_DarkMode.svg -------------------------------------------------------------------------------- /assets/Highlights/GitHub-Campus-Expert/SVG/GitHub-Campus-Expert_LightMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Highlights/GitHub-Campus-Expert/SVG/GitHub-Campus-Expert_LightMode.svg -------------------------------------------------------------------------------- /assets/Highlights/GitHub-Pro/SVG/GitHub-Pro_DarkMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Highlights/GitHub-Pro/SVG/GitHub-Pro_DarkMode.svg -------------------------------------------------------------------------------- /assets/Highlights/GitHub-Pro/SVG/GitHub-Pro_LightMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Highlights/GitHub-Pro/SVG/GitHub-Pro_LightMode.svg -------------------------------------------------------------------------------- /assets/Highlights/Security-Advisory-Credit/SVG/Security-Advisory-Credit_DarkMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Highlights/Security-Advisory-Credit/SVG/Security-Advisory-Credit_DarkMode.svg -------------------------------------------------------------------------------- /assets/Highlights/Security-Advisory-Credit/SVG/Security-Advisory-Credit_LightMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Highlights/Security-Advisory-Credit/SVG/Security-Advisory-Credit_LightMode.svg -------------------------------------------------------------------------------- /assets/Highlights/Security-Bug-Bounty-Hunter/SVG/Security-Bug-Bounty-Hunter_DarkMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Highlights/Security-Bug-Bounty-Hunter/SVG/Security-Bug-Bounty-Hunter_DarkMode.svg -------------------------------------------------------------------------------- /assets/Highlights/Security-Bug-Bounty-Hunter/SVG/Security-Bug-Bounty-Hunter_LightMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Highlights/Security-Bug-Bounty-Hunter/SVG/Security-Bug-Bounty-Hunter_LightMode.svg -------------------------------------------------------------------------------- /assets/Misc/Emojis/1f3c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Misc/Emojis/1f3c5.png -------------------------------------------------------------------------------- /assets/Misc/Emojis/1f3c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Misc/Emojis/1f3c6.png -------------------------------------------------------------------------------- /assets/Misc/Emojis/1f44b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Misc/Emojis/1f44b.png -------------------------------------------------------------------------------- /assets/Misc/Emojis/1f4c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Misc/Emojis/1f4c3.png -------------------------------------------------------------------------------- /assets/Misc/Emojis/1f525.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Misc/Emojis/1f525.png -------------------------------------------------------------------------------- /assets/Misc/Emojis/2139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Misc/Emojis/2139.png -------------------------------------------------------------------------------- /assets/Misc/Emojis/2728.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Misc/Emojis/2728.png -------------------------------------------------------------------------------- /assets/Misc/Emojis/274c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/Misc/Emojis/274c.png -------------------------------------------------------------------------------- /assets/achievement-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/achievement-png.png -------------------------------------------------------------------------------- /assets/blog-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/blog-png.png -------------------------------------------------------------------------------- /assets/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/c1.png -------------------------------------------------------------------------------- /assets/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/c2.png -------------------------------------------------------------------------------- /assets/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/c3.png -------------------------------------------------------------------------------- /assets/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/c4.png -------------------------------------------------------------------------------- /assets/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/c5.png -------------------------------------------------------------------------------- /assets/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/c6.png -------------------------------------------------------------------------------- /assets/c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/c7.png -------------------------------------------------------------------------------- /assets/code-of-conduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/code-of-conduct.png -------------------------------------------------------------------------------- /assets/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/compare.png -------------------------------------------------------------------------------- /assets/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/events.png -------------------------------------------------------------------------------- /assets/hacktoberfest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/hacktoberfest.png -------------------------------------------------------------------------------- /assets/recode-hive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/recode-hive.png -------------------------------------------------------------------------------- /assets/recode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/assets/recode.png -------------------------------------------------------------------------------- /blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/blog.json -------------------------------------------------------------------------------- /dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/dashboard.css -------------------------------------------------------------------------------- /dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/dashboard.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/index.js -------------------------------------------------------------------------------- /login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/login.css -------------------------------------------------------------------------------- /login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/login.html -------------------------------------------------------------------------------- /login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/login.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/package.json -------------------------------------------------------------------------------- /pages/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/blog.html -------------------------------------------------------------------------------- /pages/compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/compare.html -------------------------------------------------------------------------------- /pages/construction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/construction.html -------------------------------------------------------------------------------- /pages/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/devtools.html -------------------------------------------------------------------------------- /pages/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/events.html -------------------------------------------------------------------------------- /pages/exploremore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/exploremore.html -------------------------------------------------------------------------------- /pages/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/faq.html -------------------------------------------------------------------------------- /pages/githubbadge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/githubbadge.html -------------------------------------------------------------------------------- /pages/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/help.html -------------------------------------------------------------------------------- /pages/recode-hive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/recode-hive.png -------------------------------------------------------------------------------- /pages/recomendation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/recomendation.html -------------------------------------------------------------------------------- /pages/saved-blogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/saved-blogs.html -------------------------------------------------------------------------------- /pages/skillMatcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/skillMatcher.html -------------------------------------------------------------------------------- /pages/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/stats.html -------------------------------------------------------------------------------- /pages/testimonial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/testimonial.html -------------------------------------------------------------------------------- /pages/videos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/pages/videos.html -------------------------------------------------------------------------------- /recode-hive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/recode-hive.png -------------------------------------------------------------------------------- /screenshots/sanjay-kv-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/screenshots/sanjay-kv-image.png -------------------------------------------------------------------------------- /scripts/ScrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/scripts/ScrollToTop.js -------------------------------------------------------------------------------- /scripts/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/scripts/blog.js -------------------------------------------------------------------------------- /scripts/capture-screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/scripts/capture-screenshot.js -------------------------------------------------------------------------------- /scripts/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/scripts/compare.js -------------------------------------------------------------------------------- /scripts/dark-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/scripts/dark-mode.js -------------------------------------------------------------------------------- /scripts/hamburger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/scripts/hamburger.js -------------------------------------------------------------------------------- /scripts/profileModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/scripts/profileModal.js -------------------------------------------------------------------------------- /scripts/retriveprofile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/scripts/retriveprofile.js -------------------------------------------------------------------------------- /scripts/revealelementsonscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/scripts/revealelementsonscroll.js -------------------------------------------------------------------------------- /scripts/speechRecognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/scripts/speechRecognition.js -------------------------------------------------------------------------------- /scripts/videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/scripts/videos.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/server.js -------------------------------------------------------------------------------- /styles/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/blog.css -------------------------------------------------------------------------------- /styles/compare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/compare.css -------------------------------------------------------------------------------- /styles/construction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/construction.css -------------------------------------------------------------------------------- /styles/construction.css.map: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/devtools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/devtools.css -------------------------------------------------------------------------------- /styles/events.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/events.css -------------------------------------------------------------------------------- /styles/explore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/explore.css -------------------------------------------------------------------------------- /styles/faq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/faq.css -------------------------------------------------------------------------------- /styles/githubbadge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/githubbadge.css -------------------------------------------------------------------------------- /styles/hamburger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/hamburger.css -------------------------------------------------------------------------------- /styles/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/help.css -------------------------------------------------------------------------------- /styles/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/modal.css -------------------------------------------------------------------------------- /styles/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/pagination.css -------------------------------------------------------------------------------- /styles/recomendation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/recomendation.css -------------------------------------------------------------------------------- /styles/saved-blogs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/saved-blogs.css -------------------------------------------------------------------------------- /styles/skillmatcher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/skillmatcher.css -------------------------------------------------------------------------------- /styles/speech.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/speech.css -------------------------------------------------------------------------------- /styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/styles.css -------------------------------------------------------------------------------- /styles/update login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/update login.js -------------------------------------------------------------------------------- /styles/videos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/awesome-github-profiles/HEAD/styles/videos.css --------------------------------------------------------------------------------