├── images ├── README.md ├── Yolo.png ├── PullShark.png ├── Quickdraw.png ├── fluidicon.png ├── GalaxyBrain.png ├── Screenshot_1.png ├── Starstruck.png ├── YOLO_Badge.png ├── favicon-dark.png ├── OpenSourcerer.png ├── PublicSponsor.png ├── PullShark_Gold.png ├── quickdraw-skin.png ├── GalaxyBrain_Gold.png ├── HeartOnYourSleeve.png ├── PullShark_Bronze.png ├── PullShark_Silver.png ├── StarStruck_Bronze.png ├── StarStruck_Gold.png ├── StarStruck_Silver.png ├── starstuck-skins.png ├── GalaxyBrain_Bronze.png ├── GalaxyBrain_Silver.png ├── GitHubSponsorBadge.png ├── OpenSourcerer_Gold.png ├── PairExtraordinaire.png ├── PullShark_Animated.gif ├── QuickDraw_SkinTone1.png ├── QuickDraw_SkinTone2.png ├── QuickDraw_SkinTone3.png ├── QuickDraw_SkinTone4.png ├── QuickDraw_SkinTone5.png ├── QuickDraw_SkinTone6.png ├── HeartOnYourSleeve_Gold.png ├── Mars-2020-Contributor.png ├── OpenSourcerer_Bronze.png ├── OpenSourcerer_Silver.png ├── StarStruck_SkinTone1.png ├── StarStruck_SkinTone2.png ├── StarStruck_SkinTone3.png ├── StarStruck_SkinTone4.png ├── StarStruck_SkinTone5.png ├── StarStruck_SkinTone6.png ├── 2020ArcticCodeVaultBadge.png ├── HeartOnYourSleeve_Bronze.png ├── HeartOnYourSleeve_Silver.png ├── Mars2020ContributorBadge.png ├── PairExtraordinaire_Gold.png ├── PairExtraordinaire_Bronze.png ├── PairExtraordinaire_Silver.png ├── Arctic-Code-Vault-Contributor.png ├── 172940773-7ef23b63-3356-4634-9e52-34f2676e2854.png └── 172941149-31258408-bfc3-496a-8a58-e34794b21813.png ├── CNAME ├── .gitignore ├── logo.png ├── assets ├── img │ ├── btn.png │ ├── yolo │ │ ├── yolo-step1.png │ │ ├── yolo-step2.png │ │ ├── yolo-step3.png │ │ ├── yolo-step4.png │ │ ├── yolo-step5.png │ │ ├── yolo-step6.png │ │ ├── yolo-step7.png │ │ ├── yolo-step8.png │ │ └── yolo-step9.png │ ├── pull-shark │ │ ├── pull-step1.png │ │ ├── pull-step2.png │ │ ├── pull-step3.png │ │ ├── pull-step4.png │ │ └── pull-step5.png │ ├── galaxy-brain │ │ ├── galaxy-step1.png │ │ ├── galaxy-step2.png │ │ ├── galaxy-step3.png │ │ ├── galaxy-step4.png │ │ └── galaxy-step5.png │ ├── quickdraw │ │ ├── quickdraw-step1.png │ │ ├── quickdraw-step2.png │ │ ├── quickdraw-step3.png │ │ └── quickdraw-step4.png │ ├── public-sponsor │ │ ├── sponsor-step1.png │ │ ├── sponsor-step2.png │ │ ├── sponsor-step3.png │ │ ├── sponsor-step4.png │ │ └── sponsor-step5.png │ ├── starstruck │ │ ├── starstruck-step1.png │ │ └── starstruck-step2.png │ └── pair-extraordinaire │ │ ├── pair-step1.png │ │ ├── pair-step2.png │ │ ├── pair-step3.png │ │ ├── pair-step4.png │ │ ├── pair-step5.png │ │ └── pair-step6.png ├── Github-Logo.png ├── Github-Text.png ├── badges │ ├── Yolo.png │ ├── PullShark.png │ ├── Quickdraw.png │ ├── Starstruck.png │ ├── GalaxyBrain.png │ ├── OpenSourcerer.png │ ├── PublicSponsor.png │ ├── HeartOnYourSleeve.png │ ├── PairExtraordinaire.png │ ├── Mars-2020-Contributor.png │ └── Arctic-Code-Vault-Contributor.png └── steps │ ├── README.starstruck.md │ ├── README.quickdraw.md │ ├── README.galaxy-brain.md │ ├── README.pull-shark.md │ ├── README.publicsponsor.md │ ├── README.pair-extraordinaire.md │ └── README.yolo.md ├── _includes ├── head-custom-theme-colors.html ├── head-custom.html └── head-custom-google-analytics.html ├── _config.yml ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ └── feature_request.md ├── LICENSE ├── _layouts └── default.html ├── index.md └── README.md /images/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | achievements.dawidolko.pl 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | Gemfile.lock 4 | *.gem 5 | .jekyll-cache 6 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/logo.png -------------------------------------------------------------------------------- /images/Yolo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/Yolo.png -------------------------------------------------------------------------------- /assets/img/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/btn.png -------------------------------------------------------------------------------- /images/PullShark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/PullShark.png -------------------------------------------------------------------------------- /images/Quickdraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/Quickdraw.png -------------------------------------------------------------------------------- /images/fluidicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/fluidicon.png -------------------------------------------------------------------------------- /assets/Github-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/Github-Logo.png -------------------------------------------------------------------------------- /assets/Github-Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/Github-Text.png -------------------------------------------------------------------------------- /assets/badges/Yolo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/badges/Yolo.png -------------------------------------------------------------------------------- /images/GalaxyBrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/GalaxyBrain.png -------------------------------------------------------------------------------- /images/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/Screenshot_1.png -------------------------------------------------------------------------------- /images/Starstruck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/Starstruck.png -------------------------------------------------------------------------------- /images/YOLO_Badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/YOLO_Badge.png -------------------------------------------------------------------------------- /images/favicon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/favicon-dark.png -------------------------------------------------------------------------------- /images/OpenSourcerer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/OpenSourcerer.png -------------------------------------------------------------------------------- /images/PublicSponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/PublicSponsor.png -------------------------------------------------------------------------------- /images/PullShark_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/PullShark_Gold.png -------------------------------------------------------------------------------- /images/quickdraw-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/quickdraw-skin.png -------------------------------------------------------------------------------- /assets/badges/PullShark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/badges/PullShark.png -------------------------------------------------------------------------------- /assets/badges/Quickdraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/badges/Quickdraw.png -------------------------------------------------------------------------------- /assets/badges/Starstruck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/badges/Starstruck.png -------------------------------------------------------------------------------- /images/GalaxyBrain_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/GalaxyBrain_Gold.png -------------------------------------------------------------------------------- /images/HeartOnYourSleeve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/HeartOnYourSleeve.png -------------------------------------------------------------------------------- /images/PullShark_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/PullShark_Bronze.png -------------------------------------------------------------------------------- /images/PullShark_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/PullShark_Silver.png -------------------------------------------------------------------------------- /images/StarStruck_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/StarStruck_Bronze.png -------------------------------------------------------------------------------- /images/StarStruck_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/StarStruck_Gold.png -------------------------------------------------------------------------------- /images/StarStruck_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/StarStruck_Silver.png -------------------------------------------------------------------------------- /images/starstuck-skins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/starstuck-skins.png -------------------------------------------------------------------------------- /assets/badges/GalaxyBrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/badges/GalaxyBrain.png -------------------------------------------------------------------------------- /assets/img/yolo/yolo-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/yolo/yolo-step1.png -------------------------------------------------------------------------------- /assets/img/yolo/yolo-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/yolo/yolo-step2.png -------------------------------------------------------------------------------- /assets/img/yolo/yolo-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/yolo/yolo-step3.png -------------------------------------------------------------------------------- /assets/img/yolo/yolo-step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/yolo/yolo-step4.png -------------------------------------------------------------------------------- /assets/img/yolo/yolo-step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/yolo/yolo-step5.png -------------------------------------------------------------------------------- /assets/img/yolo/yolo-step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/yolo/yolo-step6.png -------------------------------------------------------------------------------- /assets/img/yolo/yolo-step7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/yolo/yolo-step7.png -------------------------------------------------------------------------------- /assets/img/yolo/yolo-step8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/yolo/yolo-step8.png -------------------------------------------------------------------------------- /assets/img/yolo/yolo-step9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/yolo/yolo-step9.png -------------------------------------------------------------------------------- /images/GalaxyBrain_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/GalaxyBrain_Bronze.png -------------------------------------------------------------------------------- /images/GalaxyBrain_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/GalaxyBrain_Silver.png -------------------------------------------------------------------------------- /images/GitHubSponsorBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/GitHubSponsorBadge.png -------------------------------------------------------------------------------- /images/OpenSourcerer_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/OpenSourcerer_Gold.png -------------------------------------------------------------------------------- /images/PairExtraordinaire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/PairExtraordinaire.png -------------------------------------------------------------------------------- /images/PullShark_Animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/PullShark_Animated.gif -------------------------------------------------------------------------------- /images/QuickDraw_SkinTone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/QuickDraw_SkinTone1.png -------------------------------------------------------------------------------- /images/QuickDraw_SkinTone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/QuickDraw_SkinTone2.png -------------------------------------------------------------------------------- /images/QuickDraw_SkinTone3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/QuickDraw_SkinTone3.png -------------------------------------------------------------------------------- /images/QuickDraw_SkinTone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/QuickDraw_SkinTone4.png -------------------------------------------------------------------------------- /images/QuickDraw_SkinTone5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/QuickDraw_SkinTone5.png -------------------------------------------------------------------------------- /images/QuickDraw_SkinTone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/QuickDraw_SkinTone6.png -------------------------------------------------------------------------------- /assets/badges/OpenSourcerer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/badges/OpenSourcerer.png -------------------------------------------------------------------------------- /assets/badges/PublicSponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/badges/PublicSponsor.png -------------------------------------------------------------------------------- /images/HeartOnYourSleeve_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/HeartOnYourSleeve_Gold.png -------------------------------------------------------------------------------- /images/Mars-2020-Contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/Mars-2020-Contributor.png -------------------------------------------------------------------------------- /images/OpenSourcerer_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/OpenSourcerer_Bronze.png -------------------------------------------------------------------------------- /images/OpenSourcerer_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/OpenSourcerer_Silver.png -------------------------------------------------------------------------------- /images/StarStruck_SkinTone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/StarStruck_SkinTone1.png -------------------------------------------------------------------------------- /images/StarStruck_SkinTone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/StarStruck_SkinTone2.png -------------------------------------------------------------------------------- /images/StarStruck_SkinTone3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/StarStruck_SkinTone3.png -------------------------------------------------------------------------------- /images/StarStruck_SkinTone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/StarStruck_SkinTone4.png -------------------------------------------------------------------------------- /images/StarStruck_SkinTone5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/StarStruck_SkinTone5.png -------------------------------------------------------------------------------- /images/StarStruck_SkinTone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/StarStruck_SkinTone6.png -------------------------------------------------------------------------------- /assets/badges/HeartOnYourSleeve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/badges/HeartOnYourSleeve.png -------------------------------------------------------------------------------- /images/2020ArcticCodeVaultBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/2020ArcticCodeVaultBadge.png -------------------------------------------------------------------------------- /images/HeartOnYourSleeve_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/HeartOnYourSleeve_Bronze.png -------------------------------------------------------------------------------- /images/HeartOnYourSleeve_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/HeartOnYourSleeve_Silver.png -------------------------------------------------------------------------------- /images/Mars2020ContributorBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/Mars2020ContributorBadge.png -------------------------------------------------------------------------------- /images/PairExtraordinaire_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/PairExtraordinaire_Gold.png -------------------------------------------------------------------------------- /assets/badges/PairExtraordinaire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/badges/PairExtraordinaire.png -------------------------------------------------------------------------------- /assets/img/pull-shark/pull-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/pull-shark/pull-step1.png -------------------------------------------------------------------------------- /assets/img/pull-shark/pull-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/pull-shark/pull-step2.png -------------------------------------------------------------------------------- /assets/img/pull-shark/pull-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/pull-shark/pull-step3.png -------------------------------------------------------------------------------- /assets/img/pull-shark/pull-step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/pull-shark/pull-step4.png -------------------------------------------------------------------------------- /assets/img/pull-shark/pull-step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/pull-shark/pull-step5.png -------------------------------------------------------------------------------- /images/PairExtraordinaire_Bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/PairExtraordinaire_Bronze.png -------------------------------------------------------------------------------- /images/PairExtraordinaire_Silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/PairExtraordinaire_Silver.png -------------------------------------------------------------------------------- /assets/badges/Mars-2020-Contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/badges/Mars-2020-Contributor.png -------------------------------------------------------------------------------- /assets/img/galaxy-brain/galaxy-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/galaxy-brain/galaxy-step1.png -------------------------------------------------------------------------------- /assets/img/galaxy-brain/galaxy-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/galaxy-brain/galaxy-step2.png -------------------------------------------------------------------------------- /assets/img/galaxy-brain/galaxy-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/galaxy-brain/galaxy-step3.png -------------------------------------------------------------------------------- /assets/img/galaxy-brain/galaxy-step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/galaxy-brain/galaxy-step4.png -------------------------------------------------------------------------------- /assets/img/galaxy-brain/galaxy-step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/galaxy-brain/galaxy-step5.png -------------------------------------------------------------------------------- /assets/img/quickdraw/quickdraw-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/quickdraw/quickdraw-step1.png -------------------------------------------------------------------------------- /assets/img/quickdraw/quickdraw-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/quickdraw/quickdraw-step2.png -------------------------------------------------------------------------------- /assets/img/quickdraw/quickdraw-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/quickdraw/quickdraw-step3.png -------------------------------------------------------------------------------- /assets/img/quickdraw/quickdraw-step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/quickdraw/quickdraw-step4.png -------------------------------------------------------------------------------- /images/Arctic-Code-Vault-Contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/Arctic-Code-Vault-Contributor.png -------------------------------------------------------------------------------- /assets/img/public-sponsor/sponsor-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/public-sponsor/sponsor-step1.png -------------------------------------------------------------------------------- /assets/img/public-sponsor/sponsor-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/public-sponsor/sponsor-step2.png -------------------------------------------------------------------------------- /assets/img/public-sponsor/sponsor-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/public-sponsor/sponsor-step3.png -------------------------------------------------------------------------------- /assets/img/public-sponsor/sponsor-step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/public-sponsor/sponsor-step4.png -------------------------------------------------------------------------------- /assets/img/public-sponsor/sponsor-step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/public-sponsor/sponsor-step5.png -------------------------------------------------------------------------------- /assets/img/starstruck/starstruck-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/starstruck/starstruck-step1.png -------------------------------------------------------------------------------- /assets/img/starstruck/starstruck-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/starstruck/starstruck-step2.png -------------------------------------------------------------------------------- /assets/img/pair-extraordinaire/pair-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/pair-extraordinaire/pair-step1.png -------------------------------------------------------------------------------- /assets/img/pair-extraordinaire/pair-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/pair-extraordinaire/pair-step2.png -------------------------------------------------------------------------------- /assets/img/pair-extraordinaire/pair-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/pair-extraordinaire/pair-step3.png -------------------------------------------------------------------------------- /assets/img/pair-extraordinaire/pair-step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/pair-extraordinaire/pair-step4.png -------------------------------------------------------------------------------- /assets/img/pair-extraordinaire/pair-step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/pair-extraordinaire/pair-step5.png -------------------------------------------------------------------------------- /assets/img/pair-extraordinaire/pair-step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/img/pair-extraordinaire/pair-step6.png -------------------------------------------------------------------------------- /assets/badges/Arctic-Code-Vault-Contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/assets/badges/Arctic-Code-Vault-Contributor.png -------------------------------------------------------------------------------- /images/172940773-7ef23b63-3356-4634-9e52-34f2676e2854.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/172940773-7ef23b63-3356-4634-9e52-34f2676e2854.png -------------------------------------------------------------------------------- /images/172941149-31258408-bfc3-496a-8a58-e34794b21813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawidolko/Github-Badges-Achievements/HEAD/images/172941149-31258408-bfc3-496a-8a58-e34794b21813.png -------------------------------------------------------------------------------- /_includes/head-custom-theme-colors.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: GitHub Badges & Achievements 2 | description: A collection of badges and achievements for your GitHub profile. 3 | GitHub Stars: https://github.com/dawidolko/Github-Badges-Achievements 4 | icon: logo.png 5 | favicon: "logo.png" 6 | show_downloads: true 7 | theme: jekyll-theme-midnight 8 | # github: 9 | # zip_url: https://achievements.dawidolko.pl/download.zip 10 | # another_url: another value 11 | -------------------------------------------------------------------------------- /_includes/head-custom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {% include head-custom-theme-colors.html %} 5 | 6 | 7 | {% include head-custom-google-analytics.html %} 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /_includes/head-custom-google-analytics.html: -------------------------------------------------------------------------------- 1 | {% if site.google_analytics %} 2 | 10 | {% endif %} 11 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [dawidolko] 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 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /assets/steps/README.starstruck.md: -------------------------------------------------------------------------------- 1 | # Starstruck 2 | 3 |
4 | 5 | QuickDraw-Pin 6 |
7 | 8 |
9 | 10 | ## How to get Starstruck GitHub achievement step by step : 11 | 12 | ### 1. You only need 16 stars for each project registered to your username. Receive from other users on your organization or repository . 13 | 14 |
15 | quickdraw-step1.png 16 |
17 | 18 | ### 2. Done , Now you can see that Starstruck Achievement in your achievements list. 19 | 20 |
21 | quickdraw-step4.png 22 |
-------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Dawid Olko 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /assets/steps/README.quickdraw.md: -------------------------------------------------------------------------------- 1 | # Quickdraw 2 | 3 |
4 |

5 | QuickDraw-Pin 6 |

7 |
8 | 9 |
10 | 11 | ## How to get Quickdraw GitHub achievement step by step: 12 | 13 | ### 1. You need to create New Issue or Pull Request in any repository you want. 14 | 15 |
16 | quickdraw-step1.png 17 |
18 | 19 | ### 2. Now you should write a title and leave a comment (if you want) . and then . Click on Submit new issue button. 20 | 21 |
22 | quickdraw-step2.png 23 |
24 | 25 | ### 3. Write Any comment you want (you can close issue or pull request without commenting too.) , And then click on Close issue / close pull request . 26 | 27 |
28 | quickdraw-step3.png 29 |
30 | 31 | ### 4. Done , Now you can see that Quickdraw Achievement in your achievements list. 32 | 33 |
34 | quickdraw-step4.png 35 |
36 | -------------------------------------------------------------------------------- /assets/steps/README.galaxy-brain.md: -------------------------------------------------------------------------------- 1 | # Galaxy Brain 2 | 3 |
4 | 5 | QuickDraw-Pin 6 |
7 | 8 |
9 | 10 | ## How to get Galaxy Brain GitHub achievement step by step : 11 | 12 | ### 1. You need to go to the GitHub community address (https://github.com/community/community) . And select one of the feedback categories . 13 | 14 |
15 | galaxy-brain-step1.png 16 |
17 | 18 | ### 2. Now you need to find Unanswered Question's in any categories you want . and answer the questions. 19 | 20 |
21 | galaxy-brain-step2.png 22 |
23 | 24 | ### 3. Write correct answer to question ( Your answer must be the best possible answer to be selected as the submitted answer by the question designer ). 25 | 26 |
27 | galaxy-brain-step3.png 28 |
29 | 30 | 31 | 32 | ### 4. You need two submitted answers in any categories you want to get the Galaxy Brain achievement 33 | 34 |
35 | galaxy-brain-step4.png 36 |
37 | 38 | ### 5. Done , Now you can see that Galaxy Brain Achievement in your achievements list. 39 | 40 |
41 | galaxy-brain-finish.png 42 |
43 | -------------------------------------------------------------------------------- /assets/steps/README.pull-shark.md: -------------------------------------------------------------------------------- 1 | # Pull Shark 2 | 3 |
4 | 5 | QuickDraw-Pin 6 |
7 | 8 |
9 | 10 | ## How to get Pull Shark GitHub achievement step by step : 11 | 12 | ### 1. You need to get fork from a repository ( you can fork any repository you want ). 13 | 14 |
15 | pull-shark-step1.png 16 |
17 | 18 | ### 2. When your forked repository create , you need to do some changes on forked repository ( any changes like add new file or do some changes on codes ! ), After that , you need to go to pull request tab; 19 | 20 |
21 | pull-shark-step2.png 22 |
23 | 24 | ### 3. Click on create pull request button ; 25 | 26 |
27 | pull-shark-step3.png 28 |
29 | 30 | ### 4. Now you can see able to merge green text that means you can merge your pulled request , So click on Create Pull request button to create your pull request successfully . Then you have to wait for your request to be Merged by the creator of repository. 31 | #### - You need 2 merged pull request , to get the Pull Shark Achievement 32 | 33 |
34 | pull-shark-step4.png 35 |
36 | 37 | ### 5. Done , Now you can see that Pull Shark Achievement in your achievements list. 38 | 39 |
40 | pull-shark-step5.png 41 |
-------------------------------------------------------------------------------- /assets/steps/README.publicsponsor.md: -------------------------------------------------------------------------------- 1 | # Public Sponsor 2 | 3 |
4 | 5 | QuickDraw-Pin 6 |
7 | 8 |
9 | 10 | ## How to get Public Sponsor GitHub achievement step by step : 11 | ### 1. (First you need to know , for get this badge you need credit card and donate some money). Then you need to open GitHub Sponsors page first , And then click on See your top dependencies button 12 | 13 |
14 | public-sponsor-step1.png 15 |
16 | 17 | ### 2. You can see a list of developers that you can donate them here .(You can being sponsored of any GitHub users who have sponsored button on them pages.) 18 | 19 |
20 | public-sponsor-step2.png 21 |
22 | 23 | ### 3. After you found a person to being sponsored . you can see a page to select how much you want to donate per month. 24 | 25 |
26 | public-sponsor-step3.png 27 |
28 | 29 | ### 4. There is a form to payment here , after your payment finish . You can see your badge in your profile (in Beta version 30 countries have payment methods for now). 30 | 31 |
32 | public-sponsor-step4.png 33 |
34 | 35 | ### 5. Done , Now you can see that Public Sponsor Achievement in your achievements list. 36 | 37 |
38 | public-sponsor-step5.png 39 |
-------------------------------------------------------------------------------- /assets/steps/README.pair-extraordinaire.md: -------------------------------------------------------------------------------- 1 | # Pair Extraordinaire 2 | 3 | 4 |
5 | 6 | QuickDraw-Pin 7 |
8 | 9 |
10 | 11 | ## How to get Pair Extraordinaire GitHub achievement step by step : 12 | 13 | ### 1. You need to install [GitHub Desktop](https://desktop.github.com/) , And clone your repository from the internet . (if you found any error , you need to add your repository from your internal repository file) 14 | 15 |
16 | pair-extraordinaire-step1.png 17 |
18 | 19 | ### 2. Clone your repository HTTPS Link and insert it to URL text box. 20 | 21 |
22 | pair-extraordinaire-step2.png 23 |
24 | 25 | ### 3. No need to use filter box just click on New branch and Create new branch For your repository 26 | 27 |
28 | pair-extraordinaire-step3.png 29 |
30 | 31 | 32 | ### 4. Add a summary in your title box , Then add a description , At last add a Co-Author By Username GitHub (You need to just commit a file in your repository (Don't Push the Files)). 33 | 34 |
35 | pair-extraordinaire-step4.png 36 |
37 | 38 | 39 | ### 5. Now check your repository on GitHub and add Assignees , And then click on Merge pull request button (the Pair Extraordinaire will give to both accounts (You and Co-Author)). 40 | 41 |
42 | pair-extraordinaire-step5.png 43 |
44 | 45 | ### 6. Done , Now you can see that Pair Extraordinaire Achievement in your achievements list. 46 | 47 |
48 | pair-extraordinaire-step6.png 49 |
50 | -------------------------------------------------------------------------------- /assets/steps/README.yolo.md: -------------------------------------------------------------------------------- 1 | # Yolo 2 | 3 |
4 | 5 | QuickDraw-Pin 6 |
7 | 8 |
9 | 10 | ## How to get Yolo GitHub achievement step by step : 11 | 12 | ### 1. First, you need to open the repository and go to settings. 13 | 14 |
15 | yolo-step1.png 16 |
17 | 18 | ### 2. Second, you need to go to the collaborators category and in this section, invite an account that you have access to the repository. 19 | 20 |
21 | yolo-step2.png 22 |
23 | 24 | ### 3. Third, you need to add a new branch to your repository. 25 | 26 |
27 | yolo-step3.png 28 |
29 | 30 | 31 | ### 4. Now, you need to add a file to the new branch you created. 32 | 33 |
34 | yolo-step4.png 35 |
36 | 37 | ### 5. Add the file and commit the description for it and finally commit your changes 38 | 39 |
40 | yolo-step5.png 41 |
42 | 43 | ### 6. Click on the green button, compare and pull request. 44 | 45 |
46 | yolo-step6.png 47 |
48 | 49 | ### 7. Add The invited person in step-2 as a Reviewer, and create pull request. 50 | 51 |
52 | yolo-step7.png 53 |
54 | 55 | ### 8. At last, Check that your Reviewer and Then click on Merge pull request. 56 | 57 |
58 | yolo-step7.png 59 |
60 | 61 | 62 | ### 9. Done , Now you can see that Yolo Achievement in your achievements list. 63 | 64 |
65 | yolo-finish.png 66 |
67 | 68 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {% seo %} 8 | 9 | 10 | 11 | Github Badges Achievements 12 | 13 | 16 | 19 | 20 | {% include head-custom.html %} 21 | 22 | 23 | 35 | 36 |
37 | 38 |
39 |
40 |

{{ site.title | default: site.github.repository_name }}

41 |

{{ site.description | default: site.github.project_tagline }}

42 |
43 | Project maintained by {{ site.github.owner_name }} 44 | Hosted on GitHub Pages — Theme by dawidolko 45 |
46 | 47 | {{ content }} 48 | 49 |
50 | 51 |
52 | 53 | 54 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_to: achievements.dawidolko.pl 3 | --- 4 | 5 | # Github-Badges-Achievements 6 | 7 |
8 |

9 | 10 |

11 |
12 | 13 | # Displaying Achievements 14 | 15 | #### Displaying achievements on your profile is completely optional; by default, they can be seen by anyone viewing your public profile. 16 | 17 | #### You can opt out from having achievements displayed on your profile by going to your [profile settings](https://github.com/settings). 18 | 19 | # Complete list of all GitHub Profile badges and Achievements 20 | 21 | #### Displaying achievements on your profile is completely optional; by default, they can be seen by anyone viewing your public profile. 22 | 23 | You can opt out from having achievements displayed on your profile by going to your [profile settings](https://github.com/settings). 24 | 25 |
26 | 27 | | Badge | Name | How to get | 28 | | :---: | --- |------------------------------------------------------------------------------------------------------------------------------------------------------------------| 29 | | ![Achievement badge Heart On Your Sleeve](https://github.githubassets.com/images/modules/profile/achievements/heart-on-your-sleeve-default.png) | **Heart On Your Sleeve** | React to something on GitHub with a ❤️ emoji **(Being tested)** | 30 | | ![Achievement badge Open Sourcerer](https://github.githubassets.com/images/modules/profile/achievements/open-sourcerer-default.png) | **Open Sourcerer** | User had PRs merged in multiple public repositories **(Being tested)** | 31 | | ![Achievement badge Starstruck](https://github.githubassets.com/images/modules/profile/achievements/starstruck-default.png) | **Starstruck** | Created a repository that has **16 stars**. | 32 | | ![Achievement badge Quickdraw](https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png) | **Quickdraw** | Closed an issue or a pull request within 5 min of opening. | 33 | | ![Achievement badge Pair Extraordinaire](https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png) | **Pair Extraordinaire** | Coauthored in a **two** or merged pull request. | 34 | | ![Achievement badge Pull Shark](https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png) | **Pull Shark** | **2 pull requests** merged. | 35 | | ![Achievement badge Galaxy Brain](https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png) | **Galaxy Brain** | 2 accepted answers. | 36 | | ![Achievement badge YOLO](https://github.githubassets.com/images/modules/profile/achievements/yolo-default.png) | **YOLO** | Merged **at least one** pull request without code review . | 37 | | ![Achievement badge Public Sponsor](https://github.githubassets.com/images/modules/profile/achievements/public-sponsor-default.png) | **Public Sponsor** | Sponsoring open source work via [GitHub Sponsors](https://github.com/sponsors) | 38 | | ![Achievement badge Mars 2020 Contributor](https://github.githubassets.com/images/modules/profile/achievements/mars-2020-contributor-default.png) | **Mars 2020 Contributor** | Contributed code to repositories used in the [Mars 2020 Helicopter Mission](https://github.com/readme/featured/nasa-ingenuity-helicopter). *Now unable to earn.* | 39 | | ![Achievement badge 2020 GitHub Archive Program](https://github.githubassets.com/images/modules/profile/achievements/arctic-code-vault-contributor-default.png) | **Arctic Code Vault Contributor** | Contributed code to a repository in the [2020 GitHub Archive Program](https://archiveprogram.github.com/). *Now unable to earn.* | 40 | 41 |
42 | 43 | ## Badge Tiers 44 | 45 | Some Achievements not only have the base version, but also tiers. 46 | 47 | | Achievement | Default | Bronze | Silver | Gold | 48 | | --- | :---: | :---: | :---: | :---: | 49 | | **Starstruck** | ![Achievement badge Starstruck](https://github.githubassets.com/images/modules/profile/achievements/starstruck-default.png) | ![Bronze badge Starstruck](https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png) | ![Silver badge Starstruck](https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png) | ![Gold badge Starstruck](https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png) | 50 | | | 16 stars | 128 stars | 512 stars | 4096 stars | 51 | | **Pair Extraordinaire** | ![Achievement badge Pair Extraordinaire][pe-default] | ![Bronze badge Pair Extraordinaire][pe-bronze] | ![Silver badge Pair Extraordinaire][pe-silver] | ![Gold badge Pair Extraordinaire][pe-gold] | 52 | | | 1 pull requests
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | 10 pull requests | 24 pull requests | 48 pull requests | 53 | | **Pull Shark** | ![Achievement badge Pull Shark][ps-default] | ![Bronze badge Pull Shark][ps-bronze] | ![Silver badge Pull Shark][ps-silver] | ![Gold badge Pull Shark][ps-gold] | 54 | | | 2 pull requests | 16 pull requests | 128 pull requests | 1024 pull requests | 55 | | **Galaxy Brain** | ![Achievement badge Galaxy Brain][gb-default] | ![Bronze badge Galaxy Brain][gb-bronze] | ![Silver badge Galaxy Brain][gb-silver] | ![Gold badge Galaxy Brain][gb-gold] | 56 | | | 2 answers | 8 answers | 16 answers | 32 answers | 57 | | **Heart On Your Sleeve** | ![Achievement badge Heart On Your Sleeve](https://github.githubassets.com/images/modules/profile/achievements/heart-on-your-sleeve-default.png) | ![Bronze badge Heart On Your Sleeve](https://github.githubassets.com/images/modules/profile/achievements/heart-on-your-sleeve-bronze.png) | ![Silver badge Heart On Your Sleeve](https://github.githubassets.com/images/modules/profile/achievements/heart-on-your-sleeve-silver.png) | ![Gold badge Heart On Your Sleeve](https://github.githubassets.com/images/modules/profile/achievements/heart-on-your-sleeve-gold.png) | 58 | | | ??? | ??? | ??? | ??? | 59 | | **Open Sourcerer** | ![Achievement badge Open Sourcerer](https://github.githubassets.com/images/modules/profile/achievements/open-sourcerer-default.png) | ![Bronze badge Open Sourcerer](https://github.githubassets.com/images/modules/profile/achievements/open-sourcerer-bronze.png) | ![Silver badge Open Sourcerer](https://github.githubassets.com/images/modules/profile/achievements/open-sourcerer-silver.png) | ![Gold badge Open Sourcerer](https://github.githubassets.com/images/modules/profile/achievements/open-sourcerer-gold.png) | 60 | | | ??? | ??? | ??? | ??? | 61 | 62 | 63 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png 64 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png 65 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png 66 | 67 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png 68 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png 69 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png 70 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png 71 | 72 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png 73 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png 74 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png 75 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png 76 | 77 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png 78 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png 79 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png 80 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png 81 | 82 |
83 | 84 | ## Highlights Badges 85 | 86 | | Badge | Name | How to achieve | 87 | | --- | --- | --- | 88 | | ![White badge GitHub Pro](https://user-images.githubusercontent.com/65187002/173065531-57dbf8b1-7eb7-4d46-81bf-f2d18c7c9112.svg#gh-dark-mode-only)![Black badge GitHub Pro](https://user-images.githubusercontent.com/65187002/173065669-d1fdb5a7-8895-43cc-8dea-72a511a37e86.svg#gh-light-mode-only) | **Pro** | Use [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) | 89 | | ![Dark badge Discussion answered](https://user-images.githubusercontent.com/65187002/173078083-15a75f15-b040-4a92-8d70-561a206d9fd9.svg#gh-dark-mode-only)![Light badge Discussion answered](https://user-images.githubusercontent.com/65187002/173078106-28bea542-4620-46ee-837d-defda3e44ca6.svg#gh-light-mode-only) | **Discussion answered** | Have your reply to a discussion marked as the answer | 90 | | ![Dark badge Developer Program Member](https://user-images.githubusercontent.com/65187002/173079579-3c393d22-7a13-4e7d-87b8-341fb613d52b.svg#gh-dark-mode-only)![Light badge Developer Program Member](https://user-images.githubusercontent.com/65187002/173079614-33f43a97-1cc2-4228-85e3-ef43836e17c2.svg#gh-light-mode-only) | **Developer Program Member** | Be a registered member of the [GitHub Developer Program](https://docs.github.com/en/developers/overview/github-developer-program) | 91 | | ![security-bug-bounty-hunter-dark](https://user-images.githubusercontent.com/65187002/173081624-93e3cf1f-50b7-45a4-82b7-1954f66368b9.svg#gh-dark-mode-only)![security-bug-bounty-hunter-light](https://user-images.githubusercontent.com/65187002/173081657-e500d72c-9247-44c2-a3d3-2deff30e1ae7.svg#gh-light-mode-only) | **Security Bug Bounty Hunter** | Helped out hunting down security vulnerabilities at [GitHub Security](https://bounty.github.com/) | 92 | | ![Light badge GitHub Campus Expert][gce-dark]![Dark badge GitHub Campus Expert][gce-light] | **GitHub Campus Expert** | Participate in the [GitHub Campus Program](https://education.github.com/experts) | 93 | | ![Dark badge Security advisory credit][SAC-dark]![Light badge Security advisory credit][SAC-light] | **Security advisory credit** | Have your security advisory submitted to the [GitHub Advisory Database](https://github.com/advisories) accepted | 94 | 95 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only 96 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only 97 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only 98 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only 99 | 100 | # More information ℹ️ 101 | 102 | #### You can find more information about GitHub Badges under this [link](https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile#displaying-badges-on-your-profile). 103 | 104 |
105 | 106 | ## Do you have some ideas? 107 | 108 | If you have questions or suggestions on how to improve the information on this page, you can always write to [issues](https://github.com/github-profile-achievements/english/issues). 109 | 110 | # Achievements & Display 🏅 111 | 112 | #### Achievements are pins that GitHub gives to your GitHub account as a reward for certain activities and can be seen in your profile. These achievements give a good effect to your GitHub account and can indicate the amount of your activity and how you are active. 113 | 114 | #### You can opt out from having achievements displayed on your profile by going to your [profile settings](https://github.com/settings). 115 | 116 | #### Here we show you how to get GitHub Achievement pin's step by step :) 117 | 118 |
119 | 120 | # Achievement List 📃 121 | 122 |
123 | 124 |
125 | 126 | QuickDraw-Pin 127 | 128 |
129 |
130 | 131 | ## How to Get Quickdraw Achievement 132 | 133 | ### Quickdraw has one of the easiest ways to receive . and you can receive it by just taking a few steps. To get this achievement you must . (closed an issue / pull request within 5 minutes of opening) 134 | 135 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 136 | 137 |
138 |
139 | 140 |
141 | 142 |
143 | 144 | Yolo-Pin 145 | 146 |
147 |
148 | 149 | ## How to Get Yolo Achievement 150 | 151 | ### Yolo is one of the most beautiful achievements of Github, which can give a very beautiful effect to your Github profile. To get this achievement, you need to Merge a pull request without a review. 152 | 153 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 154 | 155 |
156 |
157 | 158 |
159 | 160 |
161 | 162 | GalaxyBrain-Pin 163 | 164 |
165 |
166 | 167 | ## How to Get Galaxy Brain Achievement 168 | 169 | ### Getting Galaxy Brain is more difficult than the previous two achievements. And to receive it, you need to go through the steps that you need other GitHub users. You need to : Answered a discussion(got an accepted answer two times) 170 | 171 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 172 | 173 |
174 |
175 | 176 |
177 | 178 |
179 | 180 | PullShark-Pin 181 | 182 |
183 |
184 | 185 | ## How to Get Pull Shark Achievement 186 | 187 | ### To get pull shark you need to make 2 merged pull request, you will get the one pull shark badge. 188 | 189 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 190 | 191 |
192 |
193 | 194 |
195 | 196 |
197 | 198 | Starstruck-Pin 199 | 200 |
201 |
202 | 203 | ## How to Get Starstruck Achievement 204 | 205 | ### It's too simple to get Starstruck Achievement & you have few steps to get Starstruck . You can get this Achievement When a Repository on your account hits 16 stars, even if it was transferred, you will receive the badge. 206 | 207 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 208 | 209 |
210 |
211 | 212 |
213 | 214 |
215 | 216 | PairExtraordinaire-Pin 217 | 218 |
219 |
220 | 221 | ## How to Get Pair Extraordinaire Achievement 222 | 223 | ### You can earn the pair extraordinaire badge by co-authoring a pull request that then gets merged. 224 | 225 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 226 | 227 |
228 |
229 | 230 |
231 | 232 |
233 | 234 | PublicSponsor-Pin 235 | 236 |
237 |
238 | 239 | ## How to Get Public Sponsor Achievement 240 | 241 | ### You just need to make a donation to some open source contributor. 242 | 243 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 244 | 245 |
246 | 247 |
248 | 249 |
250 | 251 | # Unreleased Achievements ⏳ 252 | 253 |
254 | 255 |
256 | 257 | HeartOnYourSleeve-Pin 258 | 259 |
260 |
261 | 262 | ## Heart On Your Sleeve 263 | 264 | ### the 'Heart On Your Sleeve' achievement badges is not yet released to public GitHub users at the moment. 265 | 266 |
267 |
268 | 269 |
270 | OpenSourcerer-Pin 271 |
272 |
273 | 274 | ## Open Sourcerer 275 | 276 | ### the 'Open Sourcerer' achievement badges is not yet released to public GitHub users at the moment. 277 | 278 |
279 |
280 | 281 | # Badges no longer earnable ❌ 282 | 283 |
284 | 285 |
286 | 287 | Mars 2020 Contributor 288 | 289 |
290 |
291 | 292 | ## Mars 2020 Contributor 293 | 294 | ### Contributed code to a repository used in the Mars 2020 Helicopter Mission 295 | 296 |
297 | 298 |
299 | 300 | Mars 2020 Contributor 301 | 302 |
303 |
304 | 305 | ## Arctic Code Vault Contributor 306 | 307 | ### Contributed code to a repository in the 2020 GitHub Archive Program 308 | 309 |
310 | 311 |
312 | 313 |
314 | 315 | # © 2023 Dawid Olko. All rights reserved. 316 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_to: achievements.dawidolko.pl 3 | --- 4 | 5 |
6 | 7 | # Github Badges Achievements 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | # Displaying Achievements 19 | 20 | #### Displaying achievements on your profile is completely optional; by default, they can be seen by anyone viewing your public profile. 21 | 22 | #### You can opt out from having achievements displayed on your profile by going to your [profile settings](https://github.com/settings). 23 |
24 | # Achievement List 📃 25 |
26 | 27 | | Badge | Name | How to get | Needed amount | 28 | | :-: | :-: | :-: | :-: | 29 | | ![Heart On Your Sleeve](images/HeartOnYourSleeve.png) | Heart On Your Sleeve | (???) |
DEFAULT BRONZE SILVER GOLD
(?) (?) (?) (?)
| 30 | | ![Open Sourcerer](images/OpenSourcerer.png) | Open Sourcerer | (???) |
DEFAULT BRONZE SILVER GOLD
(?) (?) (?) (?)
| 31 | | ![Starstruck](images/StarStruck_SkinTone1.png) | Starstruck | Created a repository that has many stars |
DEFAULT BRONZE SILVER GOLD
16 128 512 4096
| 32 | | ![Quickdraw](images/QuickDraw_SkinTone1.png) | Quickdraw | Gitty up!
(closed an issue / pull request within 5 minutes of opening) |
DEFAULT
1
| 33 | | ![Pair Extraordinaire](images/PairExtraordinaire.png) | Pair Extraordinaire | Coauthored commits on merged pull request |
DEFAULT BRONZE SILVER GOLD
1 10 24 48
| 34 | | ![Pull Shark](images/PullShark.png) | Pull Shark | Opened a pull request that has been merged |
DEFAULT BRONZE SILVER GOLD
2 16 128 1024
| 35 | | ![Galaxy Brain](images/GalaxyBrain.png) | Galaxy Brain | Answered a discussion
(got an accepted answer) |
DEFAULT BRONZE SILVER GOLD
2 8 16 32
36 | | ![YOLO](images/YOLO_Badge.png) | YOLO | Merged a pull request without a review |
DEFAULT
1
| 37 | | ![Public Sponsor](images/GitHubSponsorBadge.png) | Public Sponsor | Sponsored an open source contributor through [GitHub Sponsors](https://github.com/sponsors) |
DEFAULT
1
| 38 | 39 | 40 |
41 | 42 | # Achievement Skin Tone 👋 43 | 44 | #### Some achievements' appearance depends on your Emoji Skin Tone Preference. 45 | 46 | #### You can change your preferred Skin Tone by going to [appearance settings](https://github.com/settings/appearance). 47 | 48 |
49 | 50 | | Badge | Name | Skin Tone Versions | 51 | | :-: | :-: | :-: | 52 | | ![Starstruck](images/StarStruck_SkinTone1.png) | Starstruck |
👋 👋🏻 👋🏼 👋🏽 👋🏾 👋🏿
👋 👋🏻 👋🏼 👋🏽 👋🏾 👋🏿
| 53 | | ![Quickdraw](images/QuickDraw_SkinTone1.png) | Quickdraw |
👋 👋🏻 👋🏼 👋🏽 👋🏾 👋🏿
👋 👋🏻 👋🏼 👋🏽 👋🏾 👋🏿
| 54 | 55 |
56 | 57 | # Badges no longer earnable ❌ 58 |
59 | 60 | | Badge | Name | How to get | Needed amount | 61 | | :-: | :-: | :-: | :-: | 62 | | ![Mars 2020 Contributor](images/Mars2020ContributorBadge.png) | Mars 2020 Contributor | Contributed code to a repository used in the [Mars 2020 Helicopter Mission](https://github.com/readme/featured/nasa-ingenuity-helicopter) |
DEFAULT
1
| 63 | | ![Arctic Code Vault Contributor](images/2020ArcticCodeVaultBadge.png) | Arctic Code Vault Contributor | Contributed code to a repository in the [2020 GitHub Archive Program](https://archiveprogram.github.com/) |
DEFAULT
1
| 64 | 65 |
66 | 67 | # Complete list of all GitHub Profile badges and Achievements 68 | 69 | #### Displaying achievements on your profile is completely optional; by default, they can be seen by anyone viewing your public profile. 70 | 71 | You can opt out from having achievements displayed on your profile by going to your [profile settings](https://github.com/settings). 72 | 73 |
74 | 75 | | Badge | Name | How to get | 76 | | :---: | --- |------------------------------------------------------------------------------------------------------------------------------------------------------------------| 77 | | ![Achievement badge Heart On Your Sleeve](https://github.githubassets.com/images/modules/profile/achievements/heart-on-your-sleeve-default.png) | **Heart On Your Sleeve** | React to something on GitHub with a ❤️ emoji **(Being tested)** | 78 | | ![Achievement badge Open Sourcerer](https://github.githubassets.com/images/modules/profile/achievements/open-sourcerer-default.png) | **Open Sourcerer** | User had PRs merged in multiple public repositories **(Being tested)** | 79 | | ![Achievement badge Starstruck](https://github.githubassets.com/images/modules/profile/achievements/starstruck-default.png) | **Starstruck** | Created a repository that has **16 stars**. | 80 | | ![Achievement badge Quickdraw](https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png) | **Quickdraw** | Closed an issue or a pull request within 5 min of opening. | 81 | | ![Achievement badge Pair Extraordinaire](https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png) | **Pair Extraordinaire** | Coauthored in a **two** or merged pull request. | 82 | | ![Achievement badge Pull Shark](https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png) | **Pull Shark** | **2 pull requests** merged. | 83 | | ![Achievement badge Galaxy Brain](https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png) | **Galaxy Brain** | 2 accepted answers. | 84 | | ![Achievement badge YOLO](https://github.githubassets.com/images/modules/profile/achievements/yolo-default.png) | **YOLO** | Merged **at least one** pull request without code review . | 85 | | ![Achievement badge Public Sponsor](https://github.githubassets.com/images/modules/profile/achievements/public-sponsor-default.png) | **Public Sponsor** | Sponsoring open source work via [GitHub Sponsors](https://github.com/sponsors) | 86 | | ![Achievement badge Mars 2020 Contributor](https://github.githubassets.com/images/modules/profile/achievements/mars-2020-contributor-default.png) | **Mars 2020 Contributor** | Contributed code to repositories used in the [Mars 2020 Helicopter Mission](https://github.com/readme/featured/nasa-ingenuity-helicopter). *Now unable to earn.* | 87 | | ![Achievement badge 2020 GitHub Archive Program](https://github.githubassets.com/images/modules/profile/achievements/arctic-code-vault-contributor-default.png) | **Arctic Code Vault Contributor** | Contributed code to a repository in the [2020 GitHub Archive Program](https://archiveprogram.github.com/). *Now unable to earn.* | 88 | 89 |
90 | 91 | ## Badge Tiers 92 | 93 | Some Achievements not only have the base version, but also tiers. 94 | 95 | | Achievement | Default | Bronze | Silver | Gold | 96 | | --- | :---: | :---: | :---: | :---: | 97 | | **Starstruck** | ![Achievement badge Starstruck](https://github.githubassets.com/images/modules/profile/achievements/starstruck-default.png) | ![Bronze badge Starstruck](https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png) | ![Silver badge Starstruck](https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png) | ![Gold badge Starstruck](https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png) | 98 | | | 16 stars | 128 stars | 512 stars | 4096 stars | 99 | | **Pair Extraordinaire** | ![Achievement badge Pair Extraordinaire][pe-default] | ![Bronze badge Pair Extraordinaire][pe-bronze] | ![Silver badge Pair Extraordinaire][pe-silver] | ![Gold badge Pair Extraordinaire][pe-gold] | 100 | | | 1 pull requests
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | 10 pull requests | 24 pull requests | 48 pull requests | 101 | | **Pull Shark** | ![Achievement badge Pull Shark][ps-default] | ![Bronze badge Pull Shark][ps-bronze] | ![Silver badge Pull Shark][ps-silver] | ![Gold badge Pull Shark][ps-gold] | 102 | | | 2 pull requests | 16 pull requests | 128 pull requests | 1024 pull requests | 103 | | **Galaxy Brain** | ![Achievement badge Galaxy Brain][gb-default] | ![Bronze badge Galaxy Brain][gb-bronze] | ![Silver badge Galaxy Brain][gb-silver] | ![Gold badge Galaxy Brain][gb-gold] | 104 | | | 2 answers | 8 answers | 16 answers | 32 answers | 105 | | **Heart On Your Sleeve** | ![Achievement badge Heart On Your Sleeve](https://github.githubassets.com/images/modules/profile/achievements/heart-on-your-sleeve-default.png) | ![Bronze badge Heart On Your Sleeve](https://github.githubassets.com/images/modules/profile/achievements/heart-on-your-sleeve-bronze.png) | ![Silver badge Heart On Your Sleeve](https://github.githubassets.com/images/modules/profile/achievements/heart-on-your-sleeve-silver.png) | ![Gold badge Heart On Your Sleeve](https://github.githubassets.com/images/modules/profile/achievements/heart-on-your-sleeve-gold.png) | 106 | | | ??? | ??? | ??? | ??? | 107 | | **Open Sourcerer** | ![Achievement badge Open Sourcerer](https://github.githubassets.com/images/modules/profile/achievements/open-sourcerer-default.png) | ![Bronze badge Open Sourcerer](https://github.githubassets.com/images/modules/profile/achievements/open-sourcerer-bronze.png) | ![Silver badge Open Sourcerer](https://github.githubassets.com/images/modules/profile/achievements/open-sourcerer-silver.png) | ![Gold badge Open Sourcerer](https://github.githubassets.com/images/modules/profile/achievements/open-sourcerer-gold.png) | 108 | | | ??? | ??? | ??? | ??? | 109 | 110 | 111 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png 112 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png 113 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png 114 | 115 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png 116 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png 117 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png 118 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png 119 | 120 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png 121 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png 122 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png 123 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png 124 | 125 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png 126 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png 127 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png 128 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png 129 | 130 |
131 | 132 | ## Highlights Badges 133 | 134 | | Badge | Name | How to achieve | 135 | | --- | --- | --- | 136 | | ![White badge GitHub Pro](https://user-images.githubusercontent.com/65187002/173065531-57dbf8b1-7eb7-4d46-81bf-f2d18c7c9112.svg#gh-dark-mode-only)![Black badge GitHub Pro](https://user-images.githubusercontent.com/65187002/173065669-d1fdb5a7-8895-43cc-8dea-72a511a37e86.svg#gh-light-mode-only) | **Pro** | Use [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) | 137 | | ![Dark badge Discussion answered](https://user-images.githubusercontent.com/65187002/173078083-15a75f15-b040-4a92-8d70-561a206d9fd9.svg#gh-dark-mode-only)![Light badge Discussion answered](https://user-images.githubusercontent.com/65187002/173078106-28bea542-4620-46ee-837d-defda3e44ca6.svg#gh-light-mode-only) | **Discussion answered** | Have your reply to a discussion marked as the answer | 138 | | ![Dark badge Developer Program Member](https://user-images.githubusercontent.com/65187002/173079579-3c393d22-7a13-4e7d-87b8-341fb613d52b.svg#gh-dark-mode-only)![Light badge Developer Program Member](https://user-images.githubusercontent.com/65187002/173079614-33f43a97-1cc2-4228-85e3-ef43836e17c2.svg#gh-light-mode-only) | **Developer Program Member** | Be a registered member of the [GitHub Developer Program](https://docs.github.com/en/developers/overview/github-developer-program) | 139 | | ![security-bug-bounty-hunter-dark](https://user-images.githubusercontent.com/65187002/173081624-93e3cf1f-50b7-45a4-82b7-1954f66368b9.svg#gh-dark-mode-only)![security-bug-bounty-hunter-light](https://user-images.githubusercontent.com/65187002/173081657-e500d72c-9247-44c2-a3d3-2deff30e1ae7.svg#gh-light-mode-only) | **Security Bug Bounty Hunter** | Helped out hunting down security vulnerabilities at [GitHub Security](https://bounty.github.com/) | 140 | | ![Light badge GitHub Campus Expert][gce-dark]![Dark badge GitHub Campus Expert][gce-light] | **GitHub Campus Expert** | Participate in the [GitHub Campus Program](https://education.github.com/experts) | 141 | | ![Dark badge Security advisory credit][SAC-dark]![Light badge Security advisory credit][SAC-light] | **Security advisory credit** | Have your security advisory submitted to the [GitHub Advisory Database](https://github.com/advisories) accepted | 142 | 143 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only 144 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only 145 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only 146 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only 147 | 148 | # More information ℹ️ 149 | 150 | #### You can find more information about GitHub Badges under this [link](https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile#displaying-badges-on-your-profile). 151 | 152 |
153 | 154 | ## Do you have some ideas? 155 | 156 | If you have questions or suggestions on how to improve the information on this page, you can always write to [issues](https://github.com/github-profile-achievements/english/issues). 157 | 158 | # Achievements & Display 🏅 159 | 160 | #### Achievements are pins that GitHub gives to your GitHub account as a reward for certain activities and can be seen in your profile. These achievements give a good effect to your GitHub account and can indicate the amount of your activity and how you are active. 161 | 162 | #### You can opt out from having achievements displayed on your profile by going to your [profile settings](https://github.com/settings). 163 | 164 | #### Here we show you how to get GitHub Achievement pin's step by step :) 165 | 166 |
167 | 168 | # Achievement List 📃 169 | 170 |
171 | 172 |
173 | 174 | QuickDraw-Pin 175 | 176 |
177 |
178 | 179 | ## How to Get Quickdraw Achievement 180 | 181 | ### Quickdraw has one of the easiest ways to receive . and you can receive it by just taking a few steps. To get this achievement you must . (closed an issue / pull request within 5 minutes of opening) 182 | 183 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 184 | 185 | [![Typing SVG](assets/img/btn.png)](assets/steps/README.quickdraw.md) 186 |
187 | 188 |
189 | 190 |
191 | 192 | Yolo-Pin 193 | 194 |
195 |
196 | 197 | ## How to Get Yolo Achievement 198 | 199 | ### Yolo is one of the most beautiful achievements of Github, which can give a very beautiful effect to your Github profile. To get this achievement, you need to Merge a pull request without a review. 200 | 201 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 202 | 203 |
204 |
205 | 206 |
207 | 208 |
209 | 210 | GalaxyBrain-Pin 211 | 212 |
213 |
214 | 215 | ## How to Get Galaxy Brain Achievement 216 | 217 | ### Getting Galaxy Brain is more difficult than the previous two achievements. And to receive it, you need to go through the steps that you need other GitHub users. You need to : Answered a discussion(got an accepted answer two times) 218 | 219 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 220 | 221 |
222 |
223 | 224 |
225 | 226 |
227 | 228 | PullShark-Pin 229 | 230 |
231 |
232 | 233 | ## How to Get Pull Shark Achievement 234 | 235 | ### To get pull shark you need to make 2 merged pull request, you will get the one pull shark badge. 236 | 237 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 238 | 239 |
240 |
241 | 242 |
243 | 244 |
245 | 246 | Starstruck-Pin 247 | 248 |
249 |
250 | 251 | ## How to Get Starstruck Achievement 252 | 253 | ### It's too simple to get Starstruck Achievement & you have few steps to get Starstruck . You can get this Achievement When a Repository on your account hits 16 stars, even if it was transferred, you will receive the badge. 254 | 255 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 256 | 257 |
258 |
259 | 260 |
261 | 262 |
263 | 264 | PairExtraordinaire-Pin 265 | 266 |
267 |
268 | 269 | ## How to Get Pair Extraordinaire Achievement 270 | 271 | ### You can earn the pair extraordinaire badge by co-authoring a pull request that then gets merged. 272 | 273 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 274 | 275 |
276 |
277 | 278 |
279 | 280 |
281 | 282 | PublicSponsor-Pin 283 | 284 |
285 |
286 | 287 | ## How to Get Public Sponsor Achievement 288 | 289 | ### You just need to make a donation to some open source contributor. 290 | 291 | #### - If you need more help, click on the How to Get button to get a step-by-step tutorial on how to get this achievement. 292 | 293 |
294 | 295 |
296 | 297 |
298 | 299 | # Unreleased Achievements ⏳ 300 | 301 |
302 | 303 |
304 | 305 | HeartOnYourSleeve-Pin 306 | 307 |
308 |
309 | 310 | ## Heart On Your Sleeve 311 | 312 | ### the 'Heart On Your Sleeve' achievement badges is not yet released to public GitHub users at the moment. 313 | 314 |
315 |
316 | 317 |
318 | OpenSourcerer-Pin 319 |
320 |
321 | 322 | ## Open Sourcerer 323 | 324 | ### the 'Open Sourcerer' achievement badges is not yet released to public GitHub users at the moment. 325 | 326 |
327 |
328 | 329 | # Badges no longer earnable ❌ 330 | 331 |
332 | 333 |
334 | 335 | Mars 2020 Contributor 336 | 337 |
338 |
339 | 340 | ## Mars 2020 Contributor 341 | 342 | ### Contributed code to a repository used in the Mars 2020 Helicopter Mission 343 | 344 |
345 | 346 |
347 | 348 | Mars 2020 Contributor 349 | 350 |
351 |
352 | 353 | ## Arctic Code Vault Contributor 354 | 355 | ### Contributed code to a repository in the 2020 GitHub Archive Program 356 | 357 |
358 | 359 |
360 | 361 |
362 | 363 | # © 2023 Dawid Olko. All rights reserved. 364 | --------------------------------------------------------------------------------