├── .github
└── workflows
│ └── jekyll.yml
├── .gitignore
├── .markdownlint.json
├── 404.html
├── Gemfile
├── Gemfile.lock
├── LICENSE
├── README.md
├── _config.yml
├── _includes
├── footer.html
├── google-analytics-counter.html
├── head.html
├── navbar.html
└── yandex-metrika-counter.html
├── _layouts
├── default.liquid
├── single-page.liquid
├── site.liquid
└── theme.html
├── _sass
└── readme.md
├── assets
├── favicon
│ ├── android-chrome-192x192.png
│ ├── android-chrome-512x512.png
│ ├── android-icon-144x144.png
│ ├── android-icon-192x192.png
│ ├── android-icon-36x36.png
│ ├── android-icon-48x48.png
│ ├── android-icon-72x72.png
│ ├── android-icon-96x96.png
│ ├── apple-icon-114x114.png
│ ├── apple-icon-120x120.png
│ ├── apple-icon-144x144.png
│ ├── apple-icon-152x152.png
│ ├── apple-icon-180x180.png
│ ├── apple-icon-57x57.png
│ ├── apple-icon-60x60.png
│ ├── apple-icon-72x72.png
│ ├── apple-icon-76x76.png
│ ├── apple-icon-precomposed.png
│ ├── apple-icon.png
│ ├── apple-touch-icon.png
│ ├── browserconfig.xml
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── favicon-96x96.png
│ ├── favicon.ico
│ ├── manifest.json
│ ├── ms-icon-144x144.png
│ ├── ms-icon-150x150.png
│ ├── ms-icon-310x310.png
│ └── ms-icon-70x70.png
├── social-preview.png
└── style.css
├── docker-compose.yml
├── lang
├── chinese
│ └── README.md
├── dutch
│ └── README.md
├── french
│ └── README.md
├── german
│ └── README.md
├── hindi
│ └── README.md
├── italian
│ └── README.md
├── kannada
│ └── README.md
├── korean
│ └── README.md
├── odia
│ └── README.md
├── pidgin
│ └── README.md
├── polish
│ └── README.md
├── portuguese
│ └── README.md
├── russian
│ └── README.md
├── spanish
│ └── README.md
├── swahili
│ └── README.md
├── tamil
│ └── README.md
├── telugu
│ └── README.md
├── traditional-chinese
│ └── README.md
├── turkish
│ └── README.md
├── vietnamese
│ └── README.md
└── zulu
│ └── README.md
└── robots.txt
/.github/workflows/jekyll.yml:
--------------------------------------------------------------------------------
1 | # This workflow uses actions that are not certified by GitHub.
2 | # They are provided by a third-party and are governed by
3 | # separate terms of service, privacy policy, and support
4 | # documentation.
5 |
6 | # Sample workflow for building and deploying a Jekyll site to GitHub Pages
7 | name: Deploy Jekyll site to Pages
8 |
9 | on:
10 | # Runs on pushes targeting the default branch
11 | push:
12 | branches: ["main"]
13 |
14 | # Allows you to run this workflow manually from the Actions tab
15 | workflow_dispatch:
16 |
17 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
18 | permissions:
19 | contents: read
20 | pages: write
21 | id-token: write
22 |
23 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
24 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
25 | concurrency:
26 | group: "pages"
27 | cancel-in-progress: false
28 |
29 | jobs:
30 | # Build job
31 | build:
32 | runs-on: ubuntu-latest
33 | steps:
34 | - name: Checkout
35 | uses: actions/checkout@v4
36 | - name: Setup Ruby
37 | uses: ruby/setup-ruby@2654679fe7f7c29875c669398a8ec0791b8a64a1 # v1.215.0
38 | with:
39 | ruby-version: '3.1' # Not needed with a .ruby-version file
40 | bundler-cache: true # runs 'bundle install' and caches installed gems automatically
41 | cache-version: 0 # Increment this number if you need to re-download cached gems
42 | - name: Setup Pages
43 | id: pages
44 | uses: actions/configure-pages@v5
45 | - name: Build with Jekyll
46 | # Outputs to the './_site' directory by default
47 | run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
48 | env:
49 | JEKYLL_ENV: production
50 | - name: Upload artifact
51 | # Automatically uploads an artifact from the './_site' directory by default
52 | uses: actions/upload-pages-artifact@v3
53 |
54 | # Deployment job
55 | deploy:
56 | environment:
57 | name: github-pages
58 | url: ${{ steps.deployment.outputs.page_url }}
59 | runs-on: ubuntu-latest
60 | needs: build
61 | steps:
62 | - name: Deploy to GitHub Pages
63 | id: deployment
64 | uses: actions/deploy-pages@v4
65 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # IDEs
2 | .idea
3 | .vscode
4 |
5 | # OS X
6 | .DS_Store
7 |
8 | # Copied from https://github.com/github/gitignore/blob/main/Jekyll.gitignore
9 | # Ignore metadata generated by Jekyll
10 | _site/
11 | .sass-cache/
12 | .jekyll-cache/
13 | .jekyll-metadata
14 |
15 | # Ignore folders generated by Bundler
16 | .bundle/
17 | vendor/
18 |
--------------------------------------------------------------------------------
/.markdownlint.json:
--------------------------------------------------------------------------------
1 | {
2 | "default": true,
3 | "MD013": false,
4 | "MD033": false,
5 | "MD041": false,
6 | "MD034": false
7 | }
--------------------------------------------------------------------------------
/404.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Page not found :(
4 | ---
5 |
6 |
404
7 |
8 | Page not found.
9 |
10 | Please go to homepage.
11 |
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | source "https://rubygems.org"
2 | ruby RUBY_VERSION
3 |
4 | # Hello! This is where you manage which Jekyll version is used to run.
5 | # When you want to use a different version, change it below, save the
6 | # file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
7 | #
8 | # bundle exec jekyll serve
9 | #
10 |
11 | # If you have any plugins, put them here!
12 | gem 'wdm', '>= 0.1.0' if Gem.win_platform?
13 | group :jekyll_plugins do
14 | gem 'github-pages'
15 | gem 'jekyll-include-cache'
16 | gem 'jekyll-titles-from-headings'
17 | gem 'jekyll-sitemap'
18 | end
19 |
--------------------------------------------------------------------------------
/Gemfile.lock:
--------------------------------------------------------------------------------
1 | GEM
2 | remote: https://rubygems.org/
3 | specs:
4 | activesupport (7.1.5.1)
5 | base64
6 | benchmark (>= 0.3)
7 | bigdecimal
8 | concurrent-ruby (~> 1.0, >= 1.0.2)
9 | connection_pool (>= 2.2.5)
10 | drb
11 | i18n (>= 1.6, < 2)
12 | logger (>= 1.4.2)
13 | minitest (>= 5.1)
14 | mutex_m
15 | securerandom (>= 0.3)
16 | tzinfo (~> 2.0)
17 | addressable (2.8.7)
18 | public_suffix (>= 2.0.2, < 7.0)
19 | base64 (0.2.0)
20 | benchmark (0.4.0)
21 | bigdecimal (3.1.9)
22 | coffee-script (2.4.1)
23 | coffee-script-source
24 | execjs
25 | coffee-script-source (1.12.2)
26 | colorator (1.1.0)
27 | commonmarker (0.23.11)
28 | concurrent-ruby (1.3.5)
29 | connection_pool (2.5.0)
30 | dnsruby (1.72.3)
31 | base64 (~> 0.2.0)
32 | simpleidn (~> 0.2.1)
33 | drb (2.2.1)
34 | em-websocket (0.5.3)
35 | eventmachine (>= 0.12.9)
36 | http_parser.rb (~> 0)
37 | ethon (0.16.0)
38 | ffi (>= 1.15.0)
39 | eventmachine (1.2.7)
40 | execjs (2.10.0)
41 | faraday (2.8.1)
42 | base64
43 | faraday-net_http (>= 2.0, < 3.1)
44 | ruby2_keywords (>= 0.0.4)
45 | faraday-net_http (3.0.2)
46 | ffi (1.17.1)
47 | forwardable-extended (2.6.0)
48 | gemoji (4.1.0)
49 | github-pages (231)
50 | github-pages-health-check (= 1.18.2)
51 | jekyll (= 3.9.5)
52 | jekyll-avatar (= 0.8.0)
53 | jekyll-coffeescript (= 1.2.2)
54 | jekyll-commonmark-ghpages (= 0.4.0)
55 | jekyll-default-layout (= 0.1.5)
56 | jekyll-feed (= 0.17.0)
57 | jekyll-gist (= 1.5.0)
58 | jekyll-github-metadata (= 2.16.1)
59 | jekyll-include-cache (= 0.2.1)
60 | jekyll-mentions (= 1.6.0)
61 | jekyll-optional-front-matter (= 0.3.2)
62 | jekyll-paginate (= 1.1.0)
63 | jekyll-readme-index (= 0.3.0)
64 | jekyll-redirect-from (= 0.16.0)
65 | jekyll-relative-links (= 0.6.1)
66 | jekyll-remote-theme (= 0.4.3)
67 | jekyll-sass-converter (= 1.5.2)
68 | jekyll-seo-tag (= 2.8.0)
69 | jekyll-sitemap (= 1.4.0)
70 | jekyll-swiss (= 1.0.0)
71 | jekyll-theme-architect (= 0.2.0)
72 | jekyll-theme-cayman (= 0.2.0)
73 | jekyll-theme-dinky (= 0.2.0)
74 | jekyll-theme-hacker (= 0.2.0)
75 | jekyll-theme-leap-day (= 0.2.0)
76 | jekyll-theme-merlot (= 0.2.0)
77 | jekyll-theme-midnight (= 0.2.0)
78 | jekyll-theme-minimal (= 0.2.0)
79 | jekyll-theme-modernist (= 0.2.0)
80 | jekyll-theme-primer (= 0.6.0)
81 | jekyll-theme-slate (= 0.2.0)
82 | jekyll-theme-tactile (= 0.2.0)
83 | jekyll-theme-time-machine (= 0.2.0)
84 | jekyll-titles-from-headings (= 0.5.3)
85 | jemoji (= 0.13.0)
86 | kramdown (= 2.4.0)
87 | kramdown-parser-gfm (= 1.1.0)
88 | liquid (= 4.0.4)
89 | mercenary (~> 0.3)
90 | minima (= 2.5.1)
91 | nokogiri (>= 1.13.6, < 2.0)
92 | rouge (= 3.30.0)
93 | terminal-table (~> 1.4)
94 | github-pages-health-check (1.18.2)
95 | addressable (~> 2.3)
96 | dnsruby (~> 1.60)
97 | octokit (>= 4, < 8)
98 | public_suffix (>= 3.0, < 6.0)
99 | typhoeus (~> 1.3)
100 | html-pipeline (2.14.3)
101 | activesupport (>= 2)
102 | nokogiri (>= 1.4)
103 | http_parser.rb (0.8.0)
104 | i18n (1.14.7)
105 | concurrent-ruby (~> 1.0)
106 | jekyll (3.9.5)
107 | addressable (~> 2.4)
108 | colorator (~> 1.0)
109 | em-websocket (~> 0.5)
110 | i18n (>= 0.7, < 2)
111 | jekyll-sass-converter (~> 1.0)
112 | jekyll-watch (~> 2.0)
113 | kramdown (>= 1.17, < 3)
114 | liquid (~> 4.0)
115 | mercenary (~> 0.3.3)
116 | pathutil (~> 0.9)
117 | rouge (>= 1.7, < 4)
118 | safe_yaml (~> 1.0)
119 | jekyll-avatar (0.8.0)
120 | jekyll (>= 3.0, < 5.0)
121 | jekyll-coffeescript (1.2.2)
122 | coffee-script (~> 2.2)
123 | coffee-script-source (~> 1.12)
124 | jekyll-commonmark (1.4.0)
125 | commonmarker (~> 0.22)
126 | jekyll-commonmark-ghpages (0.4.0)
127 | commonmarker (~> 0.23.7)
128 | jekyll (~> 3.9.0)
129 | jekyll-commonmark (~> 1.4.0)
130 | rouge (>= 2.0, < 5.0)
131 | jekyll-default-layout (0.1.5)
132 | jekyll (>= 3.0, < 5.0)
133 | jekyll-feed (0.17.0)
134 | jekyll (>= 3.7, < 5.0)
135 | jekyll-gist (1.5.0)
136 | octokit (~> 4.2)
137 | jekyll-github-metadata (2.16.1)
138 | jekyll (>= 3.4, < 5.0)
139 | octokit (>= 4, < 7, != 4.4.0)
140 | jekyll-include-cache (0.2.1)
141 | jekyll (>= 3.7, < 5.0)
142 | jekyll-mentions (1.6.0)
143 | html-pipeline (~> 2.3)
144 | jekyll (>= 3.7, < 5.0)
145 | jekyll-optional-front-matter (0.3.2)
146 | jekyll (>= 3.0, < 5.0)
147 | jekyll-paginate (1.1.0)
148 | jekyll-readme-index (0.3.0)
149 | jekyll (>= 3.0, < 5.0)
150 | jekyll-redirect-from (0.16.0)
151 | jekyll (>= 3.3, < 5.0)
152 | jekyll-relative-links (0.6.1)
153 | jekyll (>= 3.3, < 5.0)
154 | jekyll-remote-theme (0.4.3)
155 | addressable (~> 2.0)
156 | jekyll (>= 3.5, < 5.0)
157 | jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0)
158 | rubyzip (>= 1.3.0, < 3.0)
159 | jekyll-sass-converter (1.5.2)
160 | sass (~> 3.4)
161 | jekyll-seo-tag (2.8.0)
162 | jekyll (>= 3.8, < 5.0)
163 | jekyll-sitemap (1.4.0)
164 | jekyll (>= 3.7, < 5.0)
165 | jekyll-swiss (1.0.0)
166 | jekyll-theme-architect (0.2.0)
167 | jekyll (> 3.5, < 5.0)
168 | jekyll-seo-tag (~> 2.0)
169 | jekyll-theme-cayman (0.2.0)
170 | jekyll (> 3.5, < 5.0)
171 | jekyll-seo-tag (~> 2.0)
172 | jekyll-theme-dinky (0.2.0)
173 | jekyll (> 3.5, < 5.0)
174 | jekyll-seo-tag (~> 2.0)
175 | jekyll-theme-hacker (0.2.0)
176 | jekyll (> 3.5, < 5.0)
177 | jekyll-seo-tag (~> 2.0)
178 | jekyll-theme-leap-day (0.2.0)
179 | jekyll (> 3.5, < 5.0)
180 | jekyll-seo-tag (~> 2.0)
181 | jekyll-theme-merlot (0.2.0)
182 | jekyll (> 3.5, < 5.0)
183 | jekyll-seo-tag (~> 2.0)
184 | jekyll-theme-midnight (0.2.0)
185 | jekyll (> 3.5, < 5.0)
186 | jekyll-seo-tag (~> 2.0)
187 | jekyll-theme-minimal (0.2.0)
188 | jekyll (> 3.5, < 5.0)
189 | jekyll-seo-tag (~> 2.0)
190 | jekyll-theme-modernist (0.2.0)
191 | jekyll (> 3.5, < 5.0)
192 | jekyll-seo-tag (~> 2.0)
193 | jekyll-theme-primer (0.6.0)
194 | jekyll (> 3.5, < 5.0)
195 | jekyll-github-metadata (~> 2.9)
196 | jekyll-seo-tag (~> 2.0)
197 | jekyll-theme-slate (0.2.0)
198 | jekyll (> 3.5, < 5.0)
199 | jekyll-seo-tag (~> 2.0)
200 | jekyll-theme-tactile (0.2.0)
201 | jekyll (> 3.5, < 5.0)
202 | jekyll-seo-tag (~> 2.0)
203 | jekyll-theme-time-machine (0.2.0)
204 | jekyll (> 3.5, < 5.0)
205 | jekyll-seo-tag (~> 2.0)
206 | jekyll-titles-from-headings (0.5.3)
207 | jekyll (>= 3.3, < 5.0)
208 | jekyll-watch (2.2.1)
209 | listen (~> 3.0)
210 | jemoji (0.13.0)
211 | gemoji (>= 3, < 5)
212 | html-pipeline (~> 2.2)
213 | jekyll (>= 3.0, < 5.0)
214 | kramdown (2.4.0)
215 | rexml
216 | kramdown-parser-gfm (1.1.0)
217 | kramdown (~> 2.0)
218 | liquid (4.0.4)
219 | listen (3.9.0)
220 | rb-fsevent (~> 0.10, >= 0.10.3)
221 | rb-inotify (~> 0.9, >= 0.9.10)
222 | logger (1.6.5)
223 | mercenary (0.3.6)
224 | minima (2.5.1)
225 | jekyll (>= 3.5, < 5.0)
226 | jekyll-feed (~> 0.9)
227 | jekyll-seo-tag (~> 2.1)
228 | minitest (5.25.4)
229 | mutex_m (0.3.0)
230 | nokogiri (1.15.7-x86_64-linux)
231 | racc (~> 1.4)
232 | octokit (4.25.1)
233 | faraday (>= 1, < 3)
234 | sawyer (~> 0.9)
235 | pathutil (0.16.2)
236 | forwardable-extended (~> 2.6)
237 | public_suffix (5.1.1)
238 | racc (1.8.1)
239 | rb-fsevent (0.11.2)
240 | rb-inotify (0.11.1)
241 | ffi (~> 1.0)
242 | rexml (3.4.0)
243 | rouge (3.30.0)
244 | ruby2_keywords (0.0.5)
245 | rubyzip (2.4.1)
246 | safe_yaml (1.0.5)
247 | sass (3.7.4)
248 | sass-listen (~> 4.0.0)
249 | sass-listen (4.0.0)
250 | rb-fsevent (~> 0.9, >= 0.9.4)
251 | rb-inotify (~> 0.9, >= 0.9.7)
252 | sawyer (0.9.2)
253 | addressable (>= 2.3.5)
254 | faraday (>= 0.17.3, < 3)
255 | securerandom (0.3.2)
256 | simpleidn (0.2.3)
257 | terminal-table (1.8.0)
258 | unicode-display_width (~> 1.1, >= 1.1.1)
259 | typhoeus (1.4.1)
260 | ethon (>= 0.9.0)
261 | tzinfo (2.0.6)
262 | concurrent-ruby (~> 1.0)
263 | unicode-display_width (1.8.0)
264 |
265 | PLATFORMS
266 | x86_64-linux
267 | x86_64-linux-musl
268 |
269 | DEPENDENCIES
270 | github-pages
271 | jekyll-include-cache
272 | jekyll-sitemap
273 | jekyll-titles-from-headings
274 |
275 | RUBY VERSION
276 | ruby 2.7.1p83
277 |
278 | BUNDLED WITH
279 | 2.2.24
280 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Creative Commons Legal Code
2 |
3 | CC0 1.0 Universal
4 |
5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
12 | HEREUNDER.
13 |
14 | Statement of Purpose
15 |
16 | The laws of most jurisdictions throughout the world automatically confer
17 | exclusive Copyright and Related Rights (defined below) upon the creator
18 | and subsequent owner(s) (each and all, an "owner") of an original work of
19 | authorship and/or a database (each, a "Work").
20 |
21 | Certain owners wish to permanently relinquish those rights to a Work for
22 | the purpose of contributing to a commons of creative, cultural and
23 | scientific works ("Commons") that the public can reliably and without fear
24 | of later claims of infringement build upon, modify, incorporate in other
25 | works, reuse and redistribute as freely as possible in any form whatsoever
26 | and for any purposes, including without limitation commercial purposes.
27 | These owners may contribute to the Commons to promote the ideal of a free
28 | culture and the further production of creative, cultural and scientific
29 | works, or to gain reputation or greater distribution for their Work in
30 | part through the use and efforts of others.
31 |
32 | For these and/or other purposes and motivations, and without any
33 | expectation of additional consideration or compensation, the person
34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she
35 | is an owner of Copyright and Related Rights in the Work, voluntarily
36 | elects to apply CC0 to the Work and publicly distribute the Work under its
37 | terms, with knowledge of his or her Copyright and Related Rights in the
38 | Work and the meaning and intended legal effect of CC0 on those rights.
39 |
40 | 1. Copyright and Related Rights. A Work made available under CC0 may be
41 | protected by copyright and related or neighboring rights ("Copyright and
42 | Related Rights"). Copyright and Related Rights include, but are not
43 | limited to, the following:
44 |
45 | i. the right to reproduce, adapt, distribute, perform, display,
46 | communicate, and translate a Work;
47 | ii. moral rights retained by the original author(s) and/or performer(s);
48 | iii. publicity and privacy rights pertaining to a person's image or
49 | likeness depicted in a Work;
50 | iv. rights protecting against unfair competition in regards to a Work,
51 | subject to the limitations in paragraph 4(a), below;
52 | v. rights protecting the extraction, dissemination, use and reuse of data
53 | in a Work;
54 | vi. database rights (such as those arising under Directive 96/9/EC of the
55 | European Parliament and of the Council of 11 March 1996 on the legal
56 | protection of databases, and under any national implementation
57 | thereof, including any amended or successor version of such
58 | directive); and
59 | vii. other similar, equivalent or corresponding rights throughout the
60 | world based on applicable law or treaty, and any national
61 | implementations thereof.
62 |
63 | 2. Waiver. To the greatest extent permitted by, but not in contravention
64 | of, applicable law, Affirmer hereby overtly, fully, permanently,
65 | irrevocably and unconditionally waives, abandons, and surrenders all of
66 | Affirmer's Copyright and Related Rights and associated claims and causes
67 | of action, whether now known or unknown (including existing as well as
68 | future claims and causes of action), in the Work (i) in all territories
69 | worldwide, (ii) for the maximum duration provided by applicable law or
70 | treaty (including future time extensions), (iii) in any current or future
71 | medium and for any number of copies, and (iv) for any purpose whatsoever,
72 | including without limitation commercial, advertising or promotional
73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
74 | member of the public at large and to the detriment of Affirmer's heirs and
75 | successors, fully intending that such Waiver shall not be subject to
76 | revocation, rescission, cancellation, termination, or any other legal or
77 | equitable action to disrupt the quiet enjoyment of the Work by the public
78 | as contemplated by Affirmer's express Statement of Purpose.
79 |
80 | 3. Public License Fallback. Should any part of the Waiver for any reason
81 | be judged legally invalid or ineffective under applicable law, then the
82 | Waiver shall be preserved to the maximum extent permitted taking into
83 | account Affirmer's express Statement of Purpose. In addition, to the
84 | extent the Waiver is so judged Affirmer hereby grants to each affected
85 | person a royalty-free, non transferable, non sublicensable, non exclusive,
86 | irrevocable and unconditional license to exercise Affirmer's Copyright and
87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the
88 | maximum duration provided by applicable law or treaty (including future
89 | time extensions), (iii) in any current or future medium and for any number
90 | of copies, and (iv) for any purpose whatsoever, including without
91 | limitation commercial, advertising or promotional purposes (the
92 | "License"). The License shall be deemed effective as of the date CC0 was
93 | applied by Affirmer to the Work. Should any part of the License for any
94 | reason be judged legally invalid or ineffective under applicable law, such
95 | partial invalidity or ineffectiveness shall not invalidate the remainder
96 | of the License, and in such case Affirmer hereby affirms that he or she
97 | will not (i) exercise any of his or her remaining Copyright and Related
98 | Rights in the Work or (ii) assert any associated claims and causes of
99 | action with respect to the Work, in either case contrary to Affirmer's
100 | express Statement of Purpose.
101 |
102 | 4. Limitations and Disclaimers.
103 |
104 | a. No trademark or patent rights held by Affirmer are waived, abandoned,
105 | surrendered, licensed or otherwise affected by this document.
106 | b. Affirmer offers the Work as-is and makes no representations or
107 | warranties of any kind concerning the Work, express, implied,
108 | statutory or otherwise, including without limitation warranties of
109 | title, merchantability, fitness for a particular purpose, non
110 | infringement, or the absence of latent or other defects, accuracy, or
111 | the present or absence of errors, whether or not discoverable, all to
112 | the greatest extent permissible under applicable law.
113 | c. Affirmer disclaims responsibility for clearing rights of other persons
114 | that may apply to the Work or any use thereof, including without
115 | limitation any person's Copyright and Related Rights in the Work.
116 | Further, Affirmer disclaims responsibility for obtaining any necessary
117 | consents, permissions or other rights required for any use of the
118 | Work.
119 | d. Affirmer understands and acknowledges that Creative Commons is not a
120 | party to this document and has no duty or obligation with respect to
121 | this CC0 or use of the Work.
122 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Complete list of all GitHub Profile Badges and Achievements
2 |
3 | Read this in other languages:
4 |
5 | [English](README.md)
6 | · [Chinese](lang/chinese/README.md)
7 | · [Русский](lang/russian/README.md)
8 | · [Nederlands](lang/dutch/README.md)
9 | · [Français](lang/french/README.md)
10 | · [Deutsch](lang/german/README.md)
11 | · [हिन्दी](lang/hindi/README.md)
12 | · [Italiano](lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](lang/kannada/README.md)
16 | · [odia](lang/odia/README.md)
17 | · [pidgin](lang/pidgin/README.md)
18 | · [Polski](lang/polish/README.md)
19 | · [Português](lang/portuguese/README.md)
20 | · [Español](lang/spanish/README.md)
21 | · [Kiswahili](lang/swahili/README.md)
22 | · [తెలుగు](lang/telugu/README.md)
23 | · [Traditional chinese](lang/traditional-chinese/README.md)
24 | · [Türkçe](lang/turkish/README.md)
25 | · [isiZulu](lang/zulu/README.md)
26 | · [Tiếng Việt](lang/vietnamese/README.md)
27 |
28 | _Don't have the language you need? Just create an [issue](https://github.com/gomzyakov/achievements/issues)._
29 |
30 |
31 |
32 | | Badge | Name | How to get |
33 | | :---: | --- | --- |
34 | |  | **Heart On Your Sleeve** | React to something on GitHub with a ❤️ emoji **(Being tested - now unable to earn)** |
35 | |  | **Open Sourcerer** | User had PRs merged in multiple public repositories **(Being tested - now unable to earn)** |
36 | |  | **Starstruck** | Created a repository that has **16 stars** or [more](#badge-tiers). |
37 | |  | **Quickdraw** | Closed an issue or a pull request within 5 min of opening. |
38 | |  | **Pair Extraordinaire** | Coauthored in **one** or [more](#badge-tiers) merged pull requests. |
39 | |  | **Pull Shark** | **2 pull requests** merged (or [more](#badge-tiers)). |
40 | |  | **Galaxy Brain** | 2 accepted answers or [more](#badge-tiers).
*Now unable to earn via [Community discussions](https://github.com/orgs/community/discussions/), for more information see [here](https://github.com/orgs/community/discussions/106536).* |
41 | |  | **YOLO** | Merged **at least one** pull request without code review. |
42 | |  | **Public Sponsor** | Sponsoring open source work via [GitHub Sponsors](https://github.com/sponsors). |
43 | |  | **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.* |
44 | |  | **Arctic Code Vault Contributor** | Contributed code to a repository in the [2020 GitHub Archive Program](https://archiveprogram.github.com/). *Now unable to earn.* |
45 |
46 |
47 |
48 | ## Badge Tiers
49 |
50 | Some Achievements not only have the base version, but also tiers.
51 |
52 | | Achievement | Default | Bronze | Silver | Gold |
53 | | --- | :---: | :---: | :---: | :---: |
54 | | **Starstruck** |  |  |  |  |
55 | | | 16 stars | 128 stars
[@gomzyakov](https://github.com/gomzyakov?achievement=starstruck&tab=achievements) | 512 stars | 4096 stars
[@torvalds](https://github.com/torvalds?achievement=starstruck&tab=achievements) |
56 | | **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] |
57 | | | 1 pull request
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | 10 pull requests | 24 pull requests | 48 pull requests
[@Rongronggg9](https://github.com/Rongronggg9?achievement=pair-extraordinaire&tab=achievements) |
58 | | **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] |
59 | | | 2 pull requests
[@gomzyakov](https://github.com/gomzyakov?achievement=pull-shark&tab=achievements) | 16 pull requests | 128 pull requests | 1024 pull requests
[@ljharb](https://github.com/ljharb?achievement=pull-shark&tab=achievements) |
60 | | **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] |
61 | | | 2 answers | 8 answers | 16 answers | 32 answers
[@ljharb](https://github.com/ljharb?achievement=galaxy-brain&tab=achievements) |
62 | | **Heart On Your Sleeve** |  |  |  |  |
63 | | | ??? | ??? | ??? | ??? |
64 | | **Open Sourcerer** |  |  |  |  |
65 | | | ??? | ??? | ??? | ??? |
66 |
67 |
68 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png
69 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png
70 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png
71 |
72 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png
73 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png
74 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png
75 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png
76 |
77 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png
78 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png
79 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png
80 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png
81 |
82 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png
83 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png
84 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png
85 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png
86 |
87 |
88 |
89 | ## Achievement Skin Tone
90 |
91 | The appearance of some achievements depends on your Emoji Skin Tone Preference.
92 |
93 | You can change your preferred Skin Tone by going to [appearance settings](https://github.com/settings/appearance).
94 |
95 |
96 |
97 | | **Badge** | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
98 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
99 | | **Starstruck** |  |  |  |  |  |  |
100 | | **Quickdraw** | ![Default skin tone of Quickdraw][q-default] | ![Light skin tone of Quickdraw][q-light] | ![Light-medium skin tone of Quickdraw][q-light-medium] | ![Medium skin tone of Quickdraw][q-medium] | ![Medium-dark skin tone of Quickdraw][q-medium-dark] | ![Dark skin tone of Quickdraw][q-dark] |
101 |
102 | [s-light]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light.png
103 | [s-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light-medium.png
104 | [s-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium.png
105 | [s-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium-dark.png
106 | [s-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--dark.png
107 |
108 | [q-default]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png
109 | [q-light]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light.png
110 | [q-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light-medium.png
111 | [q-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium.png
112 | [q-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium-dark.png
113 | [q-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--dark.png
114 |
115 |
116 |
117 | ## Highlights Badges
118 |
119 | | Badge | Name | Is it possible to get? | How to achieve |
120 | | --- | --- | --- | --- |
121 | |  | **Pro** | Yes | Use [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) |
122 | |  | **Developer Program Member** | Yes | Be a registered member of the [GitHub Developer Program](https://docs.github.com/en/developers/overview/github-developer-program) |
123 | |  | **Security Bug Bounty Hunter** | Yes | Helped out hunting down security vulnerabilities at [GitHub Security](https://bounty.github.com/) |
124 | | ![Light badge GitHub Campus Expert][gce-dark]![Dark badge GitHub Campus Expert][gce-light] | **GitHub Campus Expert** | Yes | Participate in the [GitHub Campus Program](https://education.github.com/experts) (Open [in August 2024](https://education.github.com/campus_experts)) |
125 | | ![Dark badge Security advisory credit][SAC-dark]![Light badge Security advisory credit][SAC-light] | **Security Advisory Credit** | Yes | Have your security advisory submitted to the [GitHub Advisory Database](https://github.com/advisories) accepted |
126 | | | **GitHub Star** | Yes | Become a [GitHub Star](https://stars.github.com) |
127 | |  | **Discussion answered** | No | Have your reply to a discussion marked as the answer |
128 |
129 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only
130 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only
131 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only
132 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only
133 |
134 |
135 | ## Do you have some ideas?
136 |
137 | If you have questions or suggestions on how to improve the information on this page, you can always write to [issues](https://github.com/gomzyakov/achievements/issues).
138 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | # Text for `site.*`
2 | title: Complete list of all GitHub profile Badges and Achievements
3 | url: https://gomzyakov.github.io/achievements
4 | baseurl: ""
5 | repository: gomzyakov/achievements
6 |
7 | permalinks: pretty
8 |
9 | include:
10 | - LICENSE
11 |
12 | plugins:
13 | - github-pages
14 | - jekyll-include-cache
15 | - jekyll-titles-from-headings
16 | - jekyll-sitemap
17 |
18 | # Exclude the `vendor` folder created by build process
19 | exclude:
20 | - vendor
21 |
22 | defaults:
23 | -
24 | scope:
25 | path: "index.md"
26 | values:
27 | order: 0 # Show the index at the top of the navigation
28 | -
29 | scope:
30 | path: "LICENSE.md"
31 | values:
32 | order: 100 # Show the license at the bottom of the navigation
33 |
34 | titles_from_headings:
35 | strip_title: true
36 |
37 | syntax_highlighter: rouge
38 |
--------------------------------------------------------------------------------
/_includes/footer.html:
--------------------------------------------------------------------------------
1 | {% if site.github %}
2 |
3 |
25 |
26 | {% endif %}
27 |
--------------------------------------------------------------------------------
/_includes/google-analytics-counter.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
--------------------------------------------------------------------------------
/_includes/head.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | {{ page.title | default: site.title }}
7 |
8 |
9 |
10 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/_includes/navbar.html:
--------------------------------------------------------------------------------
1 |
11 |
--------------------------------------------------------------------------------
/_includes/yandex-metrika-counter.html:
--------------------------------------------------------------------------------
1 |
2 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/_layouts/default.liquid:
--------------------------------------------------------------------------------
1 | ---
2 | layout: single-page
3 | ---
4 |
5 |
6 |
7 | {{ content }}
8 |
9 |
10 |
--------------------------------------------------------------------------------
/_layouts/single-page.liquid:
--------------------------------------------------------------------------------
1 | ---
2 | layout: site
3 | ---
4 |
5 |
6 |
7 |
8 | {% if site.titles_from_headings.strip_title == true %}
9 |
{{ page.title | default: post.title }}
10 | {% endif %}
11 |
12 | {{ content }}
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/_layouts/site.liquid:
--------------------------------------------------------------------------------
1 | ---
2 | layout: theme
3 | ---
4 |
5 | {{ content }}
6 |
--------------------------------------------------------------------------------
/_layouts/theme.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {% include head.html %}
4 |
5 |
6 | {% include navbar.html %}
7 |
8 | {{ content }}
9 |
10 | {% include footer.html %}
11 |
12 | {% include google-analytics-counter.html %}
13 | {% include yandex-metrika-counter.html %}
14 |
15 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/_sass/readme.md:
--------------------------------------------------------------------------------
1 | # Sass folder
2 |
3 | This folder purely serves to prevent the Jekyll error `Invalid theme folder: _sass`.
--------------------------------------------------------------------------------
/assets/favicon/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/android-chrome-192x192.png
--------------------------------------------------------------------------------
/assets/favicon/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/android-chrome-512x512.png
--------------------------------------------------------------------------------
/assets/favicon/android-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/android-icon-144x144.png
--------------------------------------------------------------------------------
/assets/favicon/android-icon-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/android-icon-192x192.png
--------------------------------------------------------------------------------
/assets/favicon/android-icon-36x36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/android-icon-36x36.png
--------------------------------------------------------------------------------
/assets/favicon/android-icon-48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/android-icon-48x48.png
--------------------------------------------------------------------------------
/assets/favicon/android-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/android-icon-72x72.png
--------------------------------------------------------------------------------
/assets/favicon/android-icon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/android-icon-96x96.png
--------------------------------------------------------------------------------
/assets/favicon/apple-icon-114x114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-icon-114x114.png
--------------------------------------------------------------------------------
/assets/favicon/apple-icon-120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-icon-120x120.png
--------------------------------------------------------------------------------
/assets/favicon/apple-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-icon-144x144.png
--------------------------------------------------------------------------------
/assets/favicon/apple-icon-152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-icon-152x152.png
--------------------------------------------------------------------------------
/assets/favicon/apple-icon-180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-icon-180x180.png
--------------------------------------------------------------------------------
/assets/favicon/apple-icon-57x57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-icon-57x57.png
--------------------------------------------------------------------------------
/assets/favicon/apple-icon-60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-icon-60x60.png
--------------------------------------------------------------------------------
/assets/favicon/apple-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-icon-72x72.png
--------------------------------------------------------------------------------
/assets/favicon/apple-icon-76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-icon-76x76.png
--------------------------------------------------------------------------------
/assets/favicon/apple-icon-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-icon-precomposed.png
--------------------------------------------------------------------------------
/assets/favicon/apple-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-icon.png
--------------------------------------------------------------------------------
/assets/favicon/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/apple-touch-icon.png
--------------------------------------------------------------------------------
/assets/favicon/browserconfig.xml:
--------------------------------------------------------------------------------
1 |
2 | #ffffff
--------------------------------------------------------------------------------
/assets/favicon/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/favicon-16x16.png
--------------------------------------------------------------------------------
/assets/favicon/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/favicon-32x32.png
--------------------------------------------------------------------------------
/assets/favicon/favicon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/favicon-96x96.png
--------------------------------------------------------------------------------
/assets/favicon/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/favicon.ico
--------------------------------------------------------------------------------
/assets/favicon/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "App",
3 | "icons": [
4 | {
5 | "src": "\/android-icon-36x36.png",
6 | "sizes": "36x36",
7 | "type": "image\/png",
8 | "density": "0.75"
9 | },
10 | {
11 | "src": "\/android-icon-48x48.png",
12 | "sizes": "48x48",
13 | "type": "image\/png",
14 | "density": "1.0"
15 | },
16 | {
17 | "src": "\/android-icon-72x72.png",
18 | "sizes": "72x72",
19 | "type": "image\/png",
20 | "density": "1.5"
21 | },
22 | {
23 | "src": "\/android-icon-96x96.png",
24 | "sizes": "96x96",
25 | "type": "image\/png",
26 | "density": "2.0"
27 | },
28 | {
29 | "src": "\/android-icon-144x144.png",
30 | "sizes": "144x144",
31 | "type": "image\/png",
32 | "density": "3.0"
33 | },
34 | {
35 | "src": "\/android-icon-192x192.png",
36 | "sizes": "192x192",
37 | "type": "image\/png",
38 | "density": "4.0"
39 | }
40 | ]
41 | }
--------------------------------------------------------------------------------
/assets/favicon/ms-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/ms-icon-144x144.png
--------------------------------------------------------------------------------
/assets/favicon/ms-icon-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/ms-icon-150x150.png
--------------------------------------------------------------------------------
/assets/favicon/ms-icon-310x310.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/ms-icon-310x310.png
--------------------------------------------------------------------------------
/assets/favicon/ms-icon-70x70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/favicon/ms-icon-70x70.png
--------------------------------------------------------------------------------
/assets/social-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gomzyakov/achievements/91f9c3aa0fb4616c26f906687157384757872753/assets/social-preview.png
--------------------------------------------------------------------------------
/assets/style.css:
--------------------------------------------------------------------------------
1 | @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
2 |
3 | .container {
4 | max-width: 880px !important;
5 | }
6 |
7 | h1 {
8 | margin-bottom: 36px;
9 | }
10 |
11 | h2 {
12 | margin-bottom: 24px;
13 | }
14 |
15 | img {
16 | max-width: 800px;
17 | }
18 |
19 | table {
20 | table-layout: fixed !important;
21 | width: 100% !important;
22 | border: 1px solid rgb(222, 226, 230) !important;
23 | margin-bottom: 1rem !important;
24 | vertical-align: top !important;
25 | }
26 |
27 | table thead tr th {
28 | border: 1px solid rgb(222, 226, 230) !important;
29 | padding: 0.5rem 0.5rem !important;
30 | }
31 |
32 | table tbody tr td {
33 | border: 1px solid rgb(222, 226, 230) !important;
34 | padding: 0.5rem 0.5rem !important;
35 | }
36 |
37 | table tbody tr td img {
38 | max-width: 100px !important; /** or 100% **/
39 | }
--------------------------------------------------------------------------------
/docker-compose.yml:
--------------------------------------------------------------------------------
1 | services:
2 | jekyll:
3 | image: jekyll/jekyll:4.2.0
4 | platform: linux/amd64
5 | command: jekyll serve --force_polling --drafts --trace
6 | ports:
7 | - 4000:4000
8 | volumes:
9 | - .:/srv/jekyll
10 |
--------------------------------------------------------------------------------
/lang/french/README.md:
--------------------------------------------------------------------------------
1 | # Liste complète de tous les badges et réalisations du profil GitHub
2 |
3 | #### Read this in other languages:
4 |
5 | [English](../../README.md)
6 | · [Chinese](../../lang/chinese/README.md)
7 | · [Русский](../../lang/russian/README.md)
8 | · [Nederlands](../../lang/dutch/README.md)
9 | · [Français](../../lang/french/README.md)
10 | · [Deutsch](../../lang/german/README.md)
11 | · [हिन्दी](../../lang/hindi/README.md)
12 | · [Italiano](../../lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](../../lang/kannada/README.md)
16 | · [odia](../../lang/odia/README.md)
17 | · [pidgin](../../lang/pidgin/README.md)
18 | · [Polski](../../lang/polish/README.md)
19 | · [Português](../../lang/portuguese/README.md)
20 | · [Español](../../lang/spanish/README.md)
21 | · [Kiswahili](../../lang/swahili/README.md)
22 | · [తెలుగు](../../lang/telugu/README.md)
23 | · [Traditional chinese](../../lang/traditional-chinese/README.md)
24 | · [Türkçe](../../lang/turkish/README.md)
25 | · [isiZulu](../../lang/zulu/README.md)
26 | · [Tiếng Việt](../../lang/vietnamese/README.md)
27 |
28 | _Don't have the language you need? Just create an [issues](https://github.com/gomzyakov/achievements/issues)._
29 |
30 |
31 |
32 | | Badge | Nom | Comment l'obtenir |
33 | | :---: | --- |------------------------------------------------------------------------------------------------------------------------------------------------------------------|
34 | |  | **Le cœur sur la main** | Réagir à quelque chose sur GitHub avec un emoji ❤️ **(En cours de test)** |
35 | |  | **Open Sourcerer** | L'utilisateur a fait fusionner des PRs dans plusieurs dépôts publics **(En cours de test)** |
36 | |  | **Des étoiles pleins les yeux** | Création d'un dépôt qui a **16 étoiles** ou [plus](#niveaux-des-badges). |
37 | |  | **Dégaine rapide** | Fermeture d'un problème ou d'une PR dans les 5 minutes suivant l'ouverture. |
38 | |  | **Paire Extraordinaire** | Être co-auteur d'une pull request faite par **deux** contributeurs ou [plus](#niveaux-des-badges). |
39 | |  | **Pull Shark** | **2 pull requests** fusionnées (ou [plus](#niveaux-des-badges)). |
40 | |  | **Galaxy Brain** | 2 réponses acceptées ou [plus](#niveaux-des-badges). |
41 | |  | **YOLO** | Fusionner **au moins une** pull request sans contrôler le code. |
42 | |  | **Sponsor Public** | Sponsoriser un projet Open Source via [GitHub Sponsors](https://github.com/sponsors). |
43 | |  | **Contributeur "Mars 2020"** | Contribuer à des projets utilisés dans le programme [Mars 2020 Helicopter Mission](https://github.com/readme/featured/nasa-ingenuity-helicopter). *Désormais impossible à obtenir.* |
44 | |  | **Contributeur de l'Artic Code Vault** | Contribuer à un projet dans le [programme GitHub Archive 2020](https://archiveprogram.github.com/). *Désormais impossible à obtenir* |
45 |
46 |
47 |
48 | ## Niveaux des badges
49 |
50 | Certains badges ne sont pas que disponible dans leur version par défaut, mais aussi dans des déclinaisons par niveaux.
51 |
52 | | Réalisation | Défaut | Bronze | Argent | Or |
53 | | --- | :---: | :---: | :---: | :---: |
54 | | **Des étoiles pleins les yeux** |  |  |  |  |
55 | | | 16 étoiles | 128 étoiles | 512 étoiles | 4096 étoiles
[@torvalds](https://github.com/torvalds?achievement=starstruck&tab=achievements) |
56 | | **Paire Extraordinaire** | ![Badge "Paire Extraordinaire"][pe-default] | ![Badge Bronze "Paire Extraordinaire"][pe-bronze] | ![Badge Argent "Paire Extraordinaire"][pe-silver] | ![Badge Or "Paire Extraordinaire"][pe-gold] |
57 | | | 1 pull requests
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | 10 pull requests | 24 pull requests | 48 pull requests
[@Rongronggg9](https://github.com/Rongronggg9?achievement=pair-extraordinaire&tab=achievements) |
58 | | **Pull Shark** | ![Badge "Pull Shark"][ps-default] | ![Badge Bronze "Pull Shark"][ps-bronze] | ![Badge Argent "Pull Shark"][ps-silver] | ![Badge Or "Pull Shark"][ps-gold] |
59 | | | 2 pull requests | 16 pull requests | 128 pull requests | 1024 pull requests
[@ljharb](https://github.com/ljharb?achievement=pull-shark&tab=achievements) |
60 | | **Galaxy Brain** | ![Badge "Galaxy Brain"][gb-default] | ![Badge Bronze "Galaxy Brain"][gb-bronze] | ![Badge Argent "Galaxy Brain"][gb-silver] | ![Badge Or "Galaxy Brain"][gb-gold] |
61 | | | 2 réponses | 8 réponses | 16 réponses | 32 réponses
[@ljharb](https://github.com/ljharb?achievement=galaxy-brain&tab=achievements) |
62 | | **Le cœur sur la main** |  |  |  |  |
63 | | | ??? | ??? | ??? | ??? |
64 | | **Open Sourcerer** |  |  |  |  |
65 | | | ??? | ??? | ??? | ??? |
66 |
67 |
68 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png
69 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png
70 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png
71 |
72 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png
73 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png
74 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png
75 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png
76 |
77 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png
78 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png
79 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png
80 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png
81 |
82 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png
83 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png
84 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png
85 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png
86 |
87 |
88 |
89 | ## Badges en fonction de la couleur de peau
90 |
91 | L'apparence de certains badges dépend de vos préférence de couleur de peau des emoji
92 |
93 | Vous pouvez changer vos préférences de couleur de peau des emoji dans les [paramètres d'apparence](https://github.com/settings/appearance).
94 |
95 |
96 |
97 | | **Badge** | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
98 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
99 | | **Des étoiles pleins les yeux** |  |  |  |  |  |  |
100 | | **Dégaine rapide** | ![Badge "Dégaine rapide" par défaut][q-default] | ![Badge "Dégaine rapide" peau claire][q-light] | ![Badge "Dégaine rapide" peau claire-médium][q-light-medium] | ![Badge "Dégaine rapide" peau médium][q-medium] | ![Badge "Dégaine rapide" peau médium-sombre][q-medium-dark] | ![Badge "Dégaine rapide" peau sombre][q-dark] |
101 |
102 | [s-light]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light.png
103 | [s-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light-medium.png
104 | [s-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium.png
105 | [s-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium-dark.png
106 | [s-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--dark.png
107 |
108 | [q-default]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png
109 | [q-light]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light.png
110 | [q-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light-medium.png
111 | [q-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium.png
112 | [q-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium-dark.png
113 | [q-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--dark.png
114 |
115 |
116 |
117 | ## Badges des Points Forts
118 |
119 | | Badge | Nom | Comment l'obtenir |
120 | | --- | --- | --- |
121 | |  | **Pro** | Utiliser [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) |
122 | |  | **Réponse à une discussion** | Avoir sa réponse marqué comme solution dans une discussion |
123 | |  | **Membre du Programme Développeur** | Être enregistré dans le [GitHub Developer Program](https://docs.github.com/en/developers/overview/github-developer-program) |
124 | |  | **Chasseur de Bug de Sécurité** | Avoir participé à la recherche de vulnérabilités en matière de sécurité sur [GitHub Security](https://bounty.github.com/) |
125 | | ![Badge clair "GitHub Campus Expert"][gce-dark]![Badge sombre "GitHub Campus Expert"][gce-light] | **GitHub Campus Expert** | Participer dans le [GitHub Campus Program](https://education.github.com/experts) |
126 | | ![Badge sombre "Conseil de sécurité reconnu"][SAC-dark]![Badge clair "Conseil de sécurité reconnu"][SAC-light] | **Conseil de sécurité reconnu** | Avoir un conseil de sécurité proposé dans la [GitHub Advisory Database](https://github.com/advisories) accepté. |
127 |
128 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only
129 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only
130 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only
131 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only
132 |
133 |
134 |
135 | ## Vous avez des idées ?
136 |
137 | Si vous avez des questions ou des suggestions sur comment améliorer les informations sur cette pages, vous pouvez toujours ouvrir une [issues](https://github.com/gomzyakov/achievements/issues).
138 |
--------------------------------------------------------------------------------
/lang/hindi/README.md:
--------------------------------------------------------------------------------
1 | # GitHub प्रोफाइल की सभी उपलब्धियों और बैजो की पूरी सूची
2 |
3 | #### Read this in other languages:
4 |
5 | [English](../../README.md)
6 | · [Chinese](../../lang/chinese/README.md)
7 | · [Русский](../../lang/russian/README.md)
8 | · [Nederlands](../../lang/dutch/README.md)
9 | · [Français](../../lang/french/README.md)
10 | · [Deutsch](../../lang/german/README.md)
11 | · [हिन्दी](../../lang/hindi/README.md)
12 | · [Italiano](../../lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](../../lang/kannada/README.md)
16 | · [odia](../../lang/odia/README.md)
17 | · [pidgin](../../lang/pidgin/README.md)
18 | · [Polski](../../lang/polish/README.md)
19 | · [Português](../../lang/portuguese/README.md)
20 | · [Español](../../lang/spanish/README.md)
21 | · [Kiswahili](../../lang/swahili/README.md)
22 | · [తెలుగు](../../lang/telugu/README.md)
23 | · [Traditional chinese](../../lang/traditional-chinese/README.md)
24 | · [Türkçe](../../lang/turkish/README.md)
25 | · [isiZulu](../../lang/zulu/README.md)
26 | · [Tiếng Việt](../../lang/vietnamese/README.md)
27 |
28 | _Don't have the language you need? Just create an [issues](https://github.com/gomzyakov/achievements/issues)._
29 |
30 |
31 |
32 | | बैज | नाम | कैसे प्राप्त करें |
33 | | :---: | --- |------------------------------------------------------------------------------------------------------------------------------------------------------------------|
34 | |  | **Heart On Your Sleeve** | GitHub पर किसी चीज पर ❤️ इमोजी के साथ प्रतिक्रिया करें **(जांचा गया है)**|
35 | |  | **Open Sourcerer** | उपयोगकर्ता द्वारा कई सार्वजनिक रिपोजिटर्यो में PR (पुल रिक्वेस्ट) का मर्ज होना **(जांचा गया है)** |
36 | |  | **Starstruck** | एक ऐसी रिपोजिट्री बनाओ जिस पर **16** या [अधिक](#बैजों-के-स्तर) स्टार हों |
37 | |  | **Quickdraw** | किसी इश्यू या पुल रिक्वेस्ट को खुलने के 5 मिनट के अंदर ही क्लोज कर देना |
38 | |  | **Pair Extraordinaire** | **दो** या [अधिक](#बैजों-के-स्तर) पुल रिक्वेट मर्ज होंगा जिनमे आप सह लेखक हों |
39 | |  | **Pull Shark** | **2** (या [अधिक](#बैजों-के-स्तर)) पुल रिक्वेस्ट मर्ज हो जाना
40 | |  | **Galaxy Brain** | 2 या [अधिक](#बैजों-के-स्तर) उत्तरों को स्वीकृति मिलना |
41 | |  | **YOLO** | **कम से कम एक** पुल रिक्वेस्ट को बिना कोड रूई किए ही मर्ज करें |
42 | |  | **Public Sponsor** | [GitHub स्पॉन्सर्स](https://github.com/sponsors) के मध्यम से कैसी ओपन सोर्स काम का आयोजन करें |
43 | |  | **Mars 2020 Contributor** | [मंगल 2020 हेलीकॉप्टर मिशन](https://github.com/readme/featured/nasa-ingenuity-helicopter) में उपयोग हुई किसी रिपोजिट में योगदान दें *अब प्राप्त नहीं किया जा सकता* |
44 | |  | **Arctic Code Vault Contributor** | [2020 GitHub पुरालेख प्रोग्राम](https://archiveprogram.github.com/) की रिपोजिटरी में कोड का योगदान दें. *अब प्राप्त नहीं किया जा सकता* |
45 |
46 |
47 |
48 | ## बैजों के स्तर
49 |
50 | कुछ उपलब्धियों के केवल मुख्य संस्करण ही नहीं होते, स्तर भी होते हैं
51 |
52 |
53 | | उपलब्धि | डिफॉल्ट | ब्रोंज | सिल्वर | गोल्ड |
54 | | --- | :---: | :---: | :---: | :---: |
55 | | **Starstruck** |  |  |  |  |
56 | | | 16 स्टार्स | 128 स्टार्स | 512 स्टार्स | 4096 स्टार्स
[@torvalds](https://github.com/torvalds?achievement=starstruck&tab=achievements) |
57 | | **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] |
58 | | | 1 पुल रिक्वेस्ट
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | 10 पुल रिक्वेस्ट | 24 पुल रिक्वेस्ट | 48 पुल रिक्वेस्ट
[@Rongronggg9](https://github.com/Rongronggg9?achievement=pair-extraordinaire&tab=achievements) |
59 | | **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] |
60 | | | 2 पुल रिक्वेस्ट
[@amanbabuhemant](https://github.com/amanbabuhemant?achievement=pull-shark&tab=achievements) | 16 पुल रिक्वेस्ट | 128 पुल रिक्वेस्ट | 1024 पुल रिक्वेस्ट
[@ljharb](https://github.com/ljharb?achievement=pull-shark&tab=achievements) |
61 | | **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] |
62 | | | 2 उत्तर | 8 उत्तर | 16 उत्तर | 32 उत्तर
[@ljharb](https://github.com/ljharb?achievement=galaxy-brain&tab=achievements) |
63 | | **Heart On Your Sleeve** |  |  |  |  |
64 | | | ??? | ??? | ??? | ??? |
65 | | **Open Sourcerer** |  |  |  |  |
66 | | | ??? | ??? | ??? | ??? |
67 |
68 |
69 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png
70 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png
71 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png
72 |
73 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png
74 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png
75 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png
76 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png
77 |
78 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png
79 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png
80 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png
81 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png
82 |
83 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png
84 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png
85 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png
86 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png
87 |
88 |
89 |
90 | ## उपलब्धियों की स्किन टोन
91 |
92 | कुछ उपलब्धियों का स्वरूप आपकी इमोजी स्किन टोन की प्राथमिकता पर निर्भर करता है।
93 |
94 | आप अपनी इच्छानुसार स्किन टोन को [अपीयरेंस सेटिंग्स](https://github.com/settings/appearance) में जाकर बदल सकते हैं।
95 |
96 |
97 |
98 | | **बैज** | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
99 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
100 | | **Starstruck** |  |  |  |  |  |  |
101 | | **Quickdraw** | ![Default skin tone of Quickdraw][q-default] | ![Light skin tone of Quickdraw][q-light] | ![Light-medium skin tone of Quickdraw][q-light-medium] | ![Medium skin tone of Quickdraw][q-medium] | ![Medium-dark skin tone of Quickdraw][q-medium-dark] | ![Dark skin tone of Quickdraw][q-dark] |
102 |
103 | [s-light]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light.png
104 | [s-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light-medium.png
105 | [s-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium.png
106 | [s-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium-dark.png
107 | [s-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--dark.png
108 |
109 | [q-default]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png
110 | [q-light]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light.png
111 | [q-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light-medium.png
112 | [q-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium.png
113 | [q-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium-dark.png
114 | [q-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--dark.png
115 |
116 |
117 |
118 | ## हाइलाइट्स
119 |
120 | | बैज | नाम | कैसे प्राप्त करें? |
121 | | --- | --- | --- |
122 | |  | **Pro** | [GitHub प्रो](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) उपयोग करें |
123 | |  | **Discussion answered** | डिस्कशन में आपके जबाव को एक उत्तर के रूप में चिन्हित किया जाए |
124 | |  | **Developer Program Member** | [GitHub डेवलपर प्रोग्राम](https://docs.github.com/en/developers/overview/github-developer-program) के रजिस्टर्ड मेंबर बनें |
125 | |  | **Security Bug Bounty Hunter** | [GitHub सिक्योरिटी](https://bounty.github.com/) पर सुरक्षा खामियों को ढूंढने में मदद करें|
126 | | ![Light badge GitHub Campus Expert][gce-dark]![Dark badge GitHub Campus Expert][gce-light] | **GitHub Campus Expert** | [GitHub कैंपस प्रोग्राम](https://education.github.com/experts) में भाग लें|
127 | | ![Dark badge Security advisory credit][SAC-dark]![Light badge Security advisory credit][SAC-light] | **Security advisory credit** | [GitHub Advisory Database](https://github.com/advisories) पर सबमिट आपकी सुरक्षा सलहा सबमिट हो जाए |
128 |
129 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only
130 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only
131 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only
132 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only
133 |
134 |
135 |
136 | ## क्या आपके पास कुछ सुझाव हैं?
137 |
138 | यदि आपके पास इस पेज की जानकारी को लेकर कोई सवाल या सुझाव हैएम तो आप बेझिजक [इश्यू](https://github.com/gomzyakov/achievements/issues) ओपन कर सकते हैं।
139 |
--------------------------------------------------------------------------------
/lang/korean/README.md:
--------------------------------------------------------------------------------
1 | # 모든 GitHub 프로필 배지 및 업적의 전체 목록
2 |
3 | #### Read this in other languages:
4 |
5 | [English](../../README.md)
6 | · [Chinese](../../lang/chinese/README.md)
7 | · [Русский](../../lang/russian/README.md)
8 | · [Nederlands](../../lang/dutch/README.md)
9 | · [Français](../../lang/french/README.md)
10 | · [Deutsch](../../lang/german/README.md)
11 | · [हिन्दी](../../lang/hindi/README.md)
12 | · [Italiano](../../lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](../../lang/kannada/README.md)
16 | · [odia](../../lang/odia/README.md)
17 | · [pidgin](../../lang/pidgin/README.md)
18 | · [Polski](../../lang/polish/README.md)
19 | · [Português](../../lang/portuguese/README.md)
20 | · [Español](../../lang/spanish/README.md)
21 | · [Kiswahili](../../lang/swahili/README.md)
22 | · [తెలుగు](../../lang/telugu/README.md)
23 | · [Traditional chinese](../../lang/traditional-chinese/README.md)
24 | · [Türkçe](../../lang/turkish/README.md)
25 | · [isiZulu](../../lang/zulu/README.md)
26 | · [Tiếng Việt](../../lang/vietnamese/README.md)
27 |
28 | _Don't have the language you need? Just create an [issues](https://github.com/gomzyakov/achievements/issues)._
29 |
30 |
31 |
32 | | 배지 | 이름 | 획득 방법 |
33 | | :---: | --- |------------------------------------------------------------------------------------------------------------------------------------------------------------------|
34 | |  | **Heart On Your Sleeve** | ❤️ 이모지를 사용하여 GitHub에서 콘텐츠에 반응하기 **(테스트 중)** |
35 | |  | **Open Sourcerer** | 사용자가 여러 공개 저장소에 PR을 병합함 **(테스트 중)** |
36 | |  | **Starstruck** | 16개의 별 또는 더 많은 별을 가진 저장소를 생성함. |
37 | |  | **Quickdraw** | 열린 지 5분 이내에 이슈나 풀 리퀘스트를 닫음. |
38 | |  | **Pair Extraordinaire** | **하나** 또는 [더 많은](#업적 배지 레벨) 병합된 풀 요청**의 공동 창작. |
39 | |  | **Pull Shark** | **2 pull requests** 또는 [더 많은](#업적 배지 레벨) 병합된 풀 요청**의 공동 창작. |
40 | |  | **Galaxy Brain** | **하나** 또는 [더 많은](#업적 배지 레벨) 병합된 풀 요청**의 공동 창작. |
41 | |  | **YOLO** | 코드 검토 없이 **최소 하나의** PR을 병합합니다. |
42 | |  | **Public Sponsor** | 통과 [GitHub Sponsors](https://github.com/sponsors) 오픈 소스 프로젝트에 기부하기. |
43 | |  | **Mars 2020 Contributor** | [Mars 2020 헬리콥터 미션](https://github.com/readme/featured/nasa-ingenuity-helicopter)용 저장소에 코드를 기여했습니다. *더 이상 얻을 수 없습니다.* |
44 | |  | **Arctic Code Vault Contributor** | [2020 GitHub Archive Program](https://archiveprogram.github.com/)에 기여한 코드입니다. **더 이상 얻을 수 없습니다.* |
45 |
46 |
47 |
48 | ## 성취 배지 레벨
49 |
50 | 일부 배지는 기본 버전 외에도 계속 업그레이드할 수 있습니다.
51 |
52 | | 성취 수준 | 기본값 | 황동 | 백은 | 금 |
53 | | --- | :---: | :---: | :---: | :---: |
54 | | **Starstruck** |  |  |  |  |
55 | | | 16 별 | 128 별 | 512 별 | 4096 별
[@torvalds](https://github.com/torvalds?achievement=starstruck&tab=achievements) |
56 | | **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] |
57 | | | 1 개의 풀 리퀘스트
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | 10 개의 풀 리퀘스트 | 24 개의 풀 리퀘스트 | 48 개의 풀 리퀘스트
[@Rongronggg9](https://github.com/Rongronggg9?achievement=pair-extraordinaire&tab=achievements) |
58 | | **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] |
59 | | | 2 개의 풀 리퀘스트 | 16 개의 풀 리퀘스트 | 128 개의 풀 리퀘스트 | 1024 개의 풀 리퀘스트
[@ljharb](https://github.com/ljharb?achievement=pull-shark&tab=achievements) |
60 | | **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] |
61 | | | 2 개의 답변 | 8 개의 답변 | 16개의 답변 | 32 개의 답변
[@ljharb](https://github.com/ljharb?achievement=galaxy-brain&tab=achievements) |
62 | | **Heart On Your Sleeve** |  |  |  |  |
63 | | | ??? | ??? | ??? | ??? |
64 | | **Open Sourcerer** |  |  |  |  |
65 | | | ??? | ??? | ??? | ??? |
66 |
67 |
68 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png
69 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png
70 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png
71 |
72 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png
73 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png
74 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png
75 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png
76 |
77 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png
78 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png
79 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png
80 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png
81 |
82 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png
83 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png
84 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png
85 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png
86 |
87 |
88 |
89 | ## 성취 스킨 톤
90 |
91 | 일부 성과의 외관은 귀하의 Emoji 설정에 따라 달라집니다
92 |
93 | 당신은[외관 설정](https://github.com/settings/appearance)당신의 선호 설정을 변경할 수 있습니다
94 |
95 |
96 |
97 | | **배지** | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
98 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
99 | | **Starstruck** |  |  |  |  |  |  |
100 | | **미리보기** | ![Default skin tone of Quickdraw][q-default] | ![Light skin tone of Quickdraw][q-light] | ![Light-medium skin tone of Quickdraw][q-light-medium] | ![Medium skin tone of Quickdraw][q-medium] | ![Medium-dark skin tone of Quickdraw][q-medium-dark] | ![Dark skin tone of Quickdraw][q-dark] |
101 |
102 | [s-light]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light.png
103 | [s-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light-medium.png
104 | [s-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium.png
105 | [s-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium-dark.png
106 | [s-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--dark.png
107 |
108 | [q-default]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png
109 | [q-light]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light.png
110 | [q-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light-medium.png
111 | [q-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium.png
112 | [q-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium-dark.png
113 | [q-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--dark.png
114 |
115 |
116 |
117 | ## 강조된 업적
118 |
119 | | 배지 | 이름 | 획득 가능 여부 | 획득 방법 |
120 | | --- | --- | --- | --- |
121 | |  | **Pro** | 네 | 사용 [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) |
122 | |  | **Developer Program Member** | 네 | [GitHub Developer Program](https://docs.github.com/en/developers/overview/github-developer-program)의 등록 회원이 되세요. |
123 | |  | **Security Bug Bounty Hunter** | 네 | [GitHub Security](https://bounty.github.com/)에서 보안 취약점 찾기 |
124 | | ![Light badge GitHub Campus Expert][gce-dark]![Dark badge GitHub Campus Expert][gce-light] | **GitHub Campus Expert** | 네 | 참여 [GitHub Campus Program](https://education.github.com/experts)([2024년 8월에 개방](https://education.github.com/campus_experts))|
125 | | ![Dark badge Security advisory credit][SAC-dark]![Light badge Security advisory credit][SAC-light] | **Security Advisory Credit** | 네 | [GitHub Advisory Database](https://github.com/advisories)에 제출된 보안 권고가 수락되었습니다. |
126 | | ![Dark badge Github Stars][stars-dark]![Light badge Github Stars][stars-light] | **GitHub Star** | 네 | [GitHub Star](https://stars.github.com)가 되세요.|
127 | |  | **Discussion answered** | 아니요 | 토론에서 답변으로 표시된 댓글 |
128 |
129 |
130 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only
131 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only
132 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only
133 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only
134 | [stars-dark]: images/stars-dark.svg#gh-dark-mode-only
135 | [stars-light]: images/stars-light.svg#gh-light-mode-only
136 |
137 |
138 |
139 | ## 어떤 생각이 있으신가요?
140 |
141 | 이 페이지의 정보를 개선하는 방법에 대해 궁금하거나 제안이 있으시면 언제든지 제출하실 수 있습니다 [issues](https://github.com/gomzyakov/achievements/issues).
142 |
--------------------------------------------------------------------------------
/lang/odia/README.md:
--------------------------------------------------------------------------------
1 | # ସମସ୍ତ GitHub ପ୍ରୋଫାଇଲ୍ ବ୍ୟାଜ୍ ଏବଂ ସଫଳତାର ସମ୍ପୂର୍ଣ୍ଣ ତାଲିକା
2 |
3 | #### Read this in other languages:
4 |
5 | [English](../../README.md)
6 | · [Chinese](../../lang/chinese/README.md)
7 | · [Русский](../../lang/russian/README.md)
8 | · [Nederlands](../../lang/dutch/README.md)
9 | · [Français](../../lang/french/README.md)
10 | · [Deutsch](../../lang/german/README.md)
11 | · [हिन्दी](../../lang/hindi/README.md)
12 | · [Italiano](../../lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](../../lang/kannada/README.md)
16 | · [odia](../../lang/odia/README.md)
17 | · [pidgin](../../lang/pidgin/README.md)
18 | · [Polski](../../lang/polish/README.md)
19 | · [Português](../../lang/portuguese/README.md)
20 | · [Español](../../lang/spanish/README.md)
21 | · [Kiswahili](../../lang/swahili/README.md)
22 | · [తెలుగు](../../lang/telugu/README.md)
23 | · [Traditional chinese](../../lang/traditional-chinese/README.md)
24 | · [Türkçe](../../lang/turkish/README.md)
25 | · [isiZulu](../../lang/zulu/README.md)
26 | · [Tiếng Việt](../../lang/vietnamese/README.md)
27 |
28 | _Don't have the language you need? Just create an [issues](https://github.com/gomzyakov/achievements/issues)._
29 |
30 |
31 |
32 | | ବ୍ୟାଜ୍ | ବ୍ୟାଜ୍ ର ନାମ | କିପରି ପାଇ ପାରିବେ |
33 | | :---: | --- |------------------------------------------------------------------------------------------------------------------------------------------------------------------|
34 | |  | **Heart On Your Sleeve** | GitHub ରେ କିଛି ବି ❤️ ଇମୋଜି ରେ ପ୍ରତିକ୍ରିୟା ଅର୍ଥାତ ରିଆକ୍ଟ କରନ୍ତୁ **( ଏହାର ପରୀକ୍ଷଣ ଚାଲୁ ଅଛି )** |
35 | |  | **Open Sourcerer** | ଉପଭୋକ୍ତା ଏକାଧିକ ଜନସାଧାରଣ ପୋଜିଟୋରୀରେ PRs ମିଶ୍ରିତ ହୋଇଥିଲେ **( ଏହାର ପରୀକ୍ଷଣ ଚାଲୁ ଅଛି )** |
36 | |  | **Starstruck** | ଗୋଟିଏ repository ରେ **୧୬ କି ଷ୍ଟାର** କିମ୍ବା [ଅଧିକ](#ବ୍ୟାଜ୍-ର-ସ୍ତରଗୁଡିକ) ଥିଲେ . |
37 | |  | **Quickdraw** | ଖୋଲିବାର 5 ମିନିଟ୍ ମଧ୍ୟରେ ଗୋଟିଏ Issue କିମ୍ବା ଗୋଟିଏ Pull Request ଅନୁରୋଧ ବନ୍ଦ କରିଥିଲେ |
38 | |  | **Pair Extraordinaire** | **ଦୁଇ** [କିମ୍ବା](#ବ୍ୟାଜ୍-ର-ସ୍ତରଗୁଡିକ) ଅଧିକ ଜଣଙ୍କ ସହ ମିଶ୍ରିତ ଭାବେ Merge Request କରିଥିଲେ |
39 | |  | **Pull Shark** | **୨ ଟି Pull Request** merge କରିଥିଲେ (କିମ୍ବା [ଅଧିକ](#ବ୍ୟାଜ୍-ର-ସ୍ତରଗୁଡିକ)). |
40 | |  | **Galaxy Brain** | ୨ ଟି ଗ୍ରହଣୀୟ ଉତ୍ତର କିମ୍ବା [ଅଧିକ](#ବ୍ୟାଜ୍-ର-ସ୍ତରଗୁଡିକ). |
41 | |  | **YOLO** | **ଅତି କମ ରେ ଗୋଟିଏ** Pull Request ବିନା ସମୀକ୍ଷା ବା ପରୀକ୍ଷଣ ରେ Merge ହେଅଇଥିଲେ |
42 | |  | **Public Sponsor** | [GitHub Sponsors](https://github.com/sponsors) ମାଧ୍ୟମରେ ମୁକ୍ତ ଉତ୍ସ କାର୍ଯ୍ୟର ପ୍ରାୟୋଜକ | |
43 | |  | **Mars 2020 Contributor** | [Mars 2020 Helicopter Mission](https://github.com/readme/featured/nasa-ingenuity-helicopter) ରେ ବ୍ୟବହୃତ Repository ଗୁଡିକ ରେ ଯୋଗଦାନ କୋଡ୍ *ବର୍ତ୍ତମାନ ଅର୍ଜନ କରିବାରେ ଅସମର୍ଥ* |
44 | |  | **Arctic Code Vault Contributor** | [2020 GitHub Archive Program](https://archiveprogram.github.com/) ରେ ଏକ Repository ଗୁଡିକ ରେ ଯୋଗଦାନ କୋଡ୍ *ବର୍ତ୍ତମାନ ଅର୍ଜନ କରିବାରେ ଅସମର୍ଥ* |
45 |
46 |
47 |
48 | ## ବ୍ୟାଜ୍ ର ସ୍ତରଗୁଡିକ
49 |
50 | କେତେକ ସଫଳତା କେବଳ ମୂଳ ସଂସ୍କରଣ ନୁହେଁ, ସ୍ତର ମଧ୍ୟ ଅଛି
51 |
52 | | ସଫଳତା | ଡିଫଲ୍ଟ | ପିତ୍ତଳ (Bronze) | ରୂପା (Silver) | ସ୍ଵର୍ଣ (Gold) |
53 | | --- | :---: | :---: | :---: | :---: |
54 | | **Starstruck** |  |  |  |  |
55 | | | ୧୬ ଟି ଷ୍ଟାର | ୧୨୮ ଟି ଷ୍ଟାର | ୫୧୨ ଟି ଷ୍ଟାର | ୪୦୯୬ ଟି ଷ୍ଟାର
[@torvalds](https://github.com/torvalds?achievement=starstruck&tab=achievements) |
56 | | **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] |
57 | | | ଗୋଟିଏ pull requests
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | ୧୦ ଟି pull requests | ୨୪ ଟି pull requests | ୪୮ ଟି pull requests
[@Rongronggg9](https://github.com/Rongronggg9?achievement=pair-extraordinaire&tab=achievements) |
58 | | **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] |
59 | | | ୨ ଟି pull requests | ୧୬ ଟି pull requests | ୧୨୮ ଟି pull requests | ୧୦୨୪ ଟି pull requests
[@ljharb](https://github.com/ljharb?achievement=pull-shark&tab=achievements) |
60 | | **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] |
61 | | | ୨ ଟି ଉତ୍ତର | ୮ ଟି ଉତ୍ତର | ୧୬ ଟି ଉତ୍ତର | ୩୨ ଟି ଉତ୍ତର
[@ljharb](https://github.com/ljharb?achievement=galaxy-brain&tab=achievements) |
62 | | **Heart On Your Sleeve** |  |  |  |  |
63 | | | ??? | ??? | ??? | ??? |
64 | | **Open Sourcerer** |  |  |  |  |
65 | | | ??? | ??? | ??? | ??? |
66 |
67 |
68 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png
69 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png
70 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png
71 |
72 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png
73 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png
74 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png
75 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png
76 |
77 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png
78 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png
79 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png
80 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png
81 |
82 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png
83 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png
84 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png
85 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png
86 |
87 |
88 |
89 | ## ସଫଳତା ସ୍କିନ୍ ଟୋନ୍
90 |
91 | କିଛି ସଫଳତାର ରୂପ ଆପଣଙ୍କ ଇମୋଜି ସ୍କିନ୍ ଟୋନ୍ ପସନ୍ଦ ଉପରେ ନିର୍ଭର କରେ
92 |
93 | ଆପଣ [appearance settings](https://github.com/settings/appearance) କୁ ଯାଇ ଆପଣଙ୍କର ପସନ୍ଦିତ ସ୍କିନ୍ ଟୋନ୍ ପରିବର୍ତ୍ତନ କରିପାରିବେ
94 |
95 |
96 |
97 | | **ବ୍ୟାଜ୍** | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
98 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
99 | | **Starstruck** |  |  |  |  |  |  |
100 | | **Quickdraw** | ![Default skin tone of Quickdraw][q-default] | ![Light skin tone of Quickdraw][q-light] | ![Light-medium skin tone of Quickdraw][q-light-medium] | ![Medium skin tone of Quickdraw][q-medium] | ![Medium-dark skin tone of Quickdraw][q-medium-dark] | ![Dark skin tone of Quickdraw][q-dark] |
101 |
102 | [s-light]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light.png
103 | [s-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light-medium.png
104 | [s-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium.png
105 | [s-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium-dark.png
106 | [s-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--dark.png
107 |
108 | [q-default]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png
109 | [q-light]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light.png
110 | [q-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light-medium.png
111 | [q-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium.png
112 | [q-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium-dark.png
113 | [q-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--dark.png
114 |
115 |
116 |
117 | ## ହାଇଲାଇଟ୍ ବ୍ୟାଜ୍
118 |
119 | | ବ୍ୟାଜ୍ | ବ୍ୟାଜ୍ ର ନାମ | କେମିତି ପାଇ ପାରିବେ |
120 | | --- | --- | --- |
121 | |  | **Pro** | [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) ର ବ୍ୟବହାର |
122 | |  | **Discussion answered** | ଉତ୍ତର ଭାବରେ ଚିହ୍ନିତ ଏକ ଆଲୋଚନାରେ ଆପଣଙ୍କର ଉତ୍ତର ଦିଅନ୍ତୁ |
123 | |  | **Developer Program Member** | [GitHub Developer Program](https://docs.github.com/en/developers/overview/github-developer-program) ର ଏକ ପଞ୍ଜୀକୃତ ସଦସ୍ୟ ହୁଅନ୍ତୁ |
124 | |  | **Security Bug Bounty Hunter** | [GitHub Security](https://bounty.github.com/) ରେ Security ଦୁର୍ବଳତାକୁ ଚିହ୍ନଟ କରିବାରେ ସାହାଯ୍ୟ କରନ୍ତୁ |
125 | | ![Light badge GitHub Campus Expert][gce-dark]![Dark badge GitHub Campus Expert][gce-light] | **GitHub Campus Expert** | [GitHub Campus Program](https://education.github.com/experts) ରେ ଅଂଶଗ୍ରହଣ କରନ୍ତୁ |
126 | | ![Dark badge Security advisory credit][SAC-dark]![Light badge Security advisory credit][SAC-light] | **Security advisory credit** | ଆପଣଙ୍କର ସୁରକ୍ଷା ପରାମର୍ଶଦାତା [GitHub Advisory Database](https://github.com/advisories) ରେ ଦାଖଲ କରନ୍ତୁ |
127 |
128 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only
129 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only
130 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only
131 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only
132 |
133 |
134 |
135 | ## ଆପଣଙ୍କର କିଛି ଧାରଣା (Idea) ଅଛି କି?
136 |
137 | ଯଦି ଏହି ପୃଷ୍ଠାରେ ସୂଚନାକୁ କିପରି ଉନ୍ନତ କରାଯିବ ସେ ସମ୍ବନ୍ଧରେ ଯଦି ଆପଣଙ୍କର ପ୍ରଶ୍ନ କିମ୍ବା ପରାମର୍ଶ ଅଛି, ତେବେ ଆପଣ ସର୍ବଦା [issue](https://github.com/gomzyakov/achievements/issues) କୁ ଲେଖିପାରିବେ । ମୁଁ ଚନ୍ଦନ କୁମାର ପାଣିଗ୍ରାହୀ ଏହି ଓଡିଆ କୁ ଅନୁବାଦ କରିଛି । ମୋତେ ଆପଣ ଫଲୋ କରି ପାରନ୍ତି ମଧ୍ୟ । ଜୟ ଜଗନ୍ନାଥ, ବନ୍ଦେ ଉତ୍କଳ ଜନନୀ ।
138 |
--------------------------------------------------------------------------------
/lang/pidgin/README.md:
--------------------------------------------------------------------------------
1 | # Complete list of all GitHub Profile badges and Achievements
2 |
3 | #### Read this in other languages:
4 |
5 | [English](../../README.md)
6 | · [Chinese](../../lang/chinese/README.md)
7 | · [Русский](../../lang/russian/README.md)
8 | · [Nederlands](../../lang/dutch/README.md)
9 | · [Français](../../lang/french/README.md)
10 | · [Deutsch](../../lang/german/README.md)
11 | · [हिन्दी](../../lang/hindi/README.md)
12 | · [Italiano](../../lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](../../lang/kannada/README.md)
16 | · [odia](../../lang/odia/README.md)
17 | · [pidgin](../../lang/pidgin/README.md)
18 | · [Polski](../../lang/polish/README.md)
19 | · [Português](../../lang/portuguese/README.md)
20 | · [Español](../../lang/spanish/README.md)
21 | · [Kiswahili](../../lang/swahili/README.md)
22 | · [తెలుగు](../../lang/telugu/README.md)
23 | · [Traditional chinese](../../lang/traditional-chinese/README.md)
24 | · [Türkçe](../../lang/turkish/README.md)
25 | · [isiZulu](../../lang/zulu/README.md)
26 | · [Tiếng Việt](../../lang/vietnamese/README.md)
27 |
28 | _Don't have the language you need? Just create an [issues](https://github.com/gomzyakov/achievements/issues)._
29 |
30 |
31 |
32 | | Badge | Name | How to get |
33 | | :---: | --- |------------------------------------------------------------------------------------------------------------------------------------------------------------------|
34 | |  | **Heart On Your Sleeve** | React to something on GitHub with a ❤️ emoji **(Being tested)** |
35 | |  | **Open Sourcerer** | User had PRs merged in multiple public repositories **(Being tested)** |
36 | |  | **Starstruck** | Created a repository that has **16 stars** or [more](#badge-tiers). |
37 | |  | **Quickdraw** | Closed an issue or a pull request within 5 min of opening. |
38 | |  | **Pair Extraordinaire** | Coauthored in a **two** or [more](#badge-tiers) merged pull request. |
39 | |  | **Pull Shark** | **2 pull requests** merged (or [more](#badge-tiers)). |
40 | |  | **Galaxy Brain** | 2 accepted answers or [more](#badge-tiers). |
41 | |  | **YOLO** | Merged **at least one** pull request without code review . |
42 | |  | **Public Sponsor** | Sponsoring open source work via [GitHub Sponsors](https://github.com/sponsors). |
43 | |  | **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.* |
44 | |  | **Arctic Code Vault Contributor** | Contributed code to a repository in the [2020 GitHub Archive Program](https://archiveprogram.github.com/). *Now unable to earn.* |
45 |
46 |
47 |
48 | ## Badge Tiers
49 |
50 | Some Achievements not only have the base version, but also tiers.
51 |
52 | | Achievement | Default | Bronze | Silver | Gold |
53 | | --- | :---: | :---: | :---: | :---: |
54 | | **Starstruck** |  |  |  |  |
55 | | | 16 stars | 128 stars | 512 stars | 4096 stars
[@torvalds](https://github.com/torvalds?achievement=starstruck&tab=achievements) |
56 | | **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] |
57 | | | 1 pull requests
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | 10 pull requests | 24 pull requests | 48 pull requests
[@Rongronggg9](https://github.com/Rongronggg9?achievement=pair-extraordinaire&tab=achievements) |
58 | | **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] |
59 | | | 2 pull requests | 16 pull requests | 128 pull requests | 1024 pull requests
[@ljharb](https://github.com/ljharb?achievement=pull-shark&tab=achievements) |
60 | | **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] |
61 | | | 2 answers | 8 answers | 16 answers | 32 answers
[@ljharb](https://github.com/ljharb?achievement=galaxy-brain&tab=achievements) |
62 | | **Heart On Your Sleeve** |  |  |  |  |
63 | | | ??? | ??? | ??? | ??? |
64 | | **Open Sourcerer** |  |  |  |  |
65 | | | ??? | ??? | ??? | ??? |
66 |
67 |
68 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png
69 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png
70 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png
71 |
72 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png
73 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png
74 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png
75 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png
76 |
77 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png
78 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png
79 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png
80 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png
81 |
82 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png
83 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png
84 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png
85 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png
86 |
87 |
88 |
89 | ## Achievement Skin Tone
90 |
91 | Some achievements' appearance depends on your Emoji Skin Tone Preference.
92 |
93 | You can change your preferred Skin Tone by going to [appearance settings](https://github.com/settings/appearance).
94 |
95 |
96 |
97 | | **Badge** | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
98 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
99 | | **Starstruck** |  |  |  |  |  |  |
100 | | **Quickdraw** | ![Default skin tone of Quickdraw][q-default] | ![Light skin tone of Quickdraw][q-light] | ![Light-medium skin tone of Quickdraw][q-light-medium] | ![Medium skin tone of Quickdraw][q-medium] | ![Medium-dark skin tone of Quickdraw][q-medium-dark] | ![Dark skin tone of Quickdraw][q-dark] |
101 |
102 | [s-light]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light.png
103 | [s-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light-medium.png
104 | [s-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium.png
105 | [s-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium-dark.png
106 | [s-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--dark.png
107 |
108 | [q-default]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png
109 | [q-light]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light.png
110 | [q-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light-medium.png
111 | [q-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium.png
112 | [q-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium-dark.png
113 | [q-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--dark.png
114 |
115 |
116 |
117 | ## Highlights Badges
118 |
119 | | Badge | Name | How to achieve |
120 | | --- | --- | --- |
121 | |  | **Pro** | Use [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) |
122 | |  | **Discussion answered** | Have your reply to a discussion marked as the answer |
123 | |  | **Developer Program Member** | Be a registered member of the [GitHub Developer Program](https://docs.github.com/en/developers/overview/github-developer-program) |
124 | |  | **Security Bug Bounty Hunter** | Helped out hunting down security vulnerabilities at [GitHub Security](https://bounty.github.com/) |
125 | | ![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) |
126 | | ![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 |
127 |
128 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only
129 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only
130 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only
131 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only
132 |
133 |
134 |
135 | ## Do you have some ideas?
136 |
137 | If you have questions or suggestions on how to improve the information on this page, you can always write to [issues](https://github.com/gomzyakov/achievements/issues).
138 |
--------------------------------------------------------------------------------
/lang/polish/README.md:
--------------------------------------------------------------------------------
1 | # Pełna lista wszystkich odznak i osiągnięć Profilu GitHub
2 |
3 | #### Read this in other languages:
4 |
5 | [English](../../README.md)
6 | · [Chinese](../../lang/chinese/README.md)
7 | · [Русский](../../lang/russian/README.md)
8 | · [Nederlands](../../lang/dutch/README.md)
9 | · [Français](../../lang/french/README.md)
10 | · [Deutsch](../../lang/german/README.md)
11 | · [हिन्दी](../../lang/hindi/README.md)
12 | · [Italiano](../../lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](../../lang/kannada/README.md)
16 | · [odia](../../lang/odia/README.md)
17 | · [pidgin](../../lang/pidgin/README.md)
18 | · [Polski](../../lang/polish/README.md)
19 | · [Português](../../lang/portuguese/README.md)
20 | · [Español](../../lang/spanish/README.md)
21 | · [Kiswahili](../../lang/swahili/README.md)
22 | · [తెలుగు](../../lang/telugu/README.md)
23 | · [Traditional chinese](../../lang/traditional-chinese/README.md)
24 | · [Türkçe](../../lang/turkish/README.md)
25 | · [isiZulu](../../lang/zulu/README.md)
26 | · [Tiếng Việt](../../lang/vietnamese/README.md)
27 |
28 | _Don't have the language you need? Just create an [issues](https://github.com/gomzyakov/achievements/issues)._
29 |
30 |
31 |
32 | | Odznaka | Nazwa | Jak zdobyć |
33 | | :---: | --- |------------------------------------------------------------------------------------------------------------------------------------------------------------------|
34 | |  | **Heart On Your Sleeve** | Zareaguj na coś w Githubie emotką ❤️ **(Testowane)** |
35 | |  | **Open Sourcerer** | Miej pull requesty złączone (merged) w kilku publicznych repozytoriach **(Testowane)** |
36 | |  | **Starstruck** | Posiadaj repozytorium, które ma **16 gwiazdek** lub [więcej](#poziomy-odznak). |
37 | |  | **Quickdraw** | Zamknij problem (issue) lub pull request w ciągu 5 minut od otwarcia. |
38 | |  | **Pair Extraordinaire** | Bądź współautorem w **dwóch** lub [więcej](#poziomy-odznak) złączonych pull requestach. |
39 | |  | **Pull Shark** | **2 pull requesty** złączone (lub [więcej](#poziomy-odznak)). |
40 | |  | **Galaxy Brain** | 2 lub [więcej](#poziomy-odznak) zaakceptowanych odpowiedzi.
*Teraz nie możliwe do zdobycia poprzez [Dyskusje społeczności](https://github.com/orgs/community/discussions/), więcej informacji można znaleźć [tutaj](https://github.com/orgs/community/discussions/106536).* |
41 | |  | **YOLO** | Złącz **przynajmniej jeden** pull request bez przeglądu kodu. |
42 | |  | **Public Sponsor** | Zasponsoruj pracę open source poprzez [GitHub Sponsors](https://github.com/sponsors). |
43 | |  | **Mars 2020 Contributor** | Użytkownik brał udział w repozytoriach podczas [Misji Mars 2020 Helicopter](https://github.com/readme/featured/nasa-ingenuity-helicopter). *Nie można już zdobyć.* |
44 | |  | **Arctic Code Vault Contributor** | Użytkownik brał udział w repozytoriach podczas [Programu GitHub Archiwum 2020](https://archiveprogram.github.com/). *Nie można już zdobyć.* |
45 |
46 |
47 |
48 | ## Poziomy Odznak
49 |
50 | Niektóre odznaki mają również poziomy.
51 |
52 | | Odznaka | Podstawowy | Brąz | Srebro | Złoto |
53 | | --- | :---: | :---: | :---: | :---: |
54 | | **Starstruck** |  |  |  |  |
55 | | | 16 gwiazdek | 128 gwiazdek | 512 gwiazdek | 4096 gwiazdek
[@torvalds](https://github.com/torvalds?achievement=starstruck&tab=achievements) |
56 | | **Pair Extraordinaire** | ![Odznaka osiągnięcia Pair Extraordinaire][pe-default] | ![Brązowa odznaka Pair Extraordinaire][pe-bronze] | ![Serbrna odznaka Pair Extraordinaire][pe-silver] | ![Złota odznaka Pair Extraordinaire][pe-gold] |
57 | | | 1 pull request
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | 10 pull requestów | 24 pull requesty | 48 pull requestów
[@Rongronggg9](https://github.com/Rongronggg9?achievement=pair-extraordinaire&tab=achievements) |
58 | | **Pull Shark** | ![Odznaka osiągnięcia Pull Shark][ps-default] | ![Brązowa odznaka Pull Shark][ps-bronze] | ![Serbrna odznaka Pull Shark][ps-silver] | ![Złota odznaka Pull Shark][ps-gold] |
59 | | | 2 pull requesty | 16 pull requestów | 128 pull requestów | 1024 pull requesty
[@ljharb](https://github.com/ljharb?achievement=pull-shark&tab=achievements) |
60 | | **Galaxy Brain** | ![Odznaka osiągnięcia Galaxy Brain][gb-default] | ![Brązowa odznaka Galaxy Brain][gb-bronze] | ![Serbrna odznaka Galaxy Brain][gb-silver] | ![Złota odznaka Galaxy Brain][gb-gold] |
61 | | | 2 odpowiedzi | 8 odpowiedzi | 16 odpowiedzi | 32 odpowiedzi
[@ljharb](https://github.com/ljharb?achievement=galaxy-brain&tab=achievements) |
62 | | **Heart On Your Sleeve** |  |  |  |  |
63 | | | ??? | ??? | ??? | ??? |
64 | | **Open Sourcerer** |  |  |  |  |
65 | | | ??? | ??? | ??? | ??? |
66 |
67 |
68 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png
69 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png
70 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png
71 |
72 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png
73 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png
74 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png
75 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png
76 |
77 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png
78 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png
79 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png
80 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png
81 |
82 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png
83 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png
84 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png
85 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png
86 |
87 |
88 |
89 | ## Kolor Skóry Odznak
90 |
91 | Wygląd niektórych odznak osiągnięć jest zależny od twoich ustawień koloru skóry emotek.
92 |
93 | Możesz zmienić preferowany kolor skóry w [ustawieniach wyglądu](https://github.com/settings/appearance).
94 |
95 |
96 |
97 | | **Odznaka** | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
98 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
99 | | **Starstruck** |  |  |  |  |  |  |
100 | | **Quickdraw** | ![Neutralny kolor skóry Quickdraw][q-default] | ![Jasny kolor skóry Quickdraw][q-light] | ![Średnio-jasny kolor skóry Quickdraw][q-light-medium] | ![Średni kolor skóry Quickdraw][q-medium] | ![Średnio-ciemny kolor skóry Quickdraw][q-medium-dark] | ![Ciemny kolor skóry Quickdraw][q-dark] |
101 |
102 | [s-light]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light.png
103 | [s-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light-medium.png
104 | [s-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium.png
105 | [s-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium-dark.png
106 | [s-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--dark.png
107 |
108 | [q-default]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png
109 | [q-light]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light.png
110 | [q-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light-medium.png
111 | [q-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium.png
112 | [q-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium-dark.png
113 | [q-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--dark.png
114 |
115 |
116 |
117 | ## Odznaki Wyróżnienia
118 |
119 | | Odznaka | Nazwa | Jak zdobyć |
120 | | --- | --- | --- |
121 | |  | **Pro** | Używaj [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) |
122 | |  | **Discussion answered** | Opublikuj odpowiedź w dyskusji oznaczonej jako odpowiedź |
123 | |  | **Developer Program Member** | Bądź zarejestrowanym członkiem [Programu Developerów GitHub](https://docs.github.com/en/developers/overview/github-developer-program) |
124 | |  | **Security Bug Bounty Hunter** | Pomóż znaleźć luki w zabezpieczeniach w [GitHub Security](https://bounty.github.com/) |
125 | | ![Jasna odznaka GitHub Campus Expert][gce-dark]![Ciemna odznaka GitHub Campus Expert][gce-light] | **GitHub Campus Expert** | Weź udział w [Programie GitHub Campus](https://education.github.com/experts) |
126 | | ![Ciemna odznaka Security advisory credit][SAC-dark]![Jasna odznaka Security advisory credit][SAC-light] | **Security advisory credit** | Miej zaakceptowaną poradę dotyczącą bezpieczeństwa w [Bazie Danych GitHub Advisory](https://github.com/advisories) |
127 |
128 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only
129 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only
130 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only
131 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only
132 |
133 |
134 |
135 | ## Masz pomysły?
136 |
137 | Jeśli masz pytania lub sugestie dotyczące ulepszenia informacji na tej strone, możesz zawsze stworzyć [problem](https://github.com/gomzyakov/achievements/issues) (issue).
138 |
--------------------------------------------------------------------------------
/lang/swahili/README.md:
--------------------------------------------------------------------------------
1 | # Orodha kamili ya beji zote za Mafanikio katika Wasifu wa GitHub
2 |
3 | #### Read this in other languages:
4 |
5 | [English](../../README.md)
6 | · [Chinese](../../lang/chinese/README.md)
7 | · [Русский](../../lang/russian/README.md)
8 | · [Nederlands](../../lang/dutch/README.md)
9 | · [Français](../../lang/french/README.md)
10 | · [Deutsch](../../lang/german/README.md)
11 | · [हिन्दी](../../lang/hindi/README.md)
12 | · [Italiano](../../lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](../../lang/kannada/README.md)
16 | · [odia](../../lang/odia/README.md)
17 | · [pidgin](../../lang/pidgin/README.md)
18 | · [Polski](../../lang/polish/README.md)
19 | · [Português](../../lang/portuguese/README.md)
20 | · [Español](../../lang/spanish/README.md)
21 | · [Kiswahili](../../lang/swahili/README.md)
22 | · [తెలుగు](../../lang/telugu/README.md)
23 | · [Traditional chinese](../../lang/traditional-chinese/README.md)
24 | · [Türkçe](../../lang/turkish/README.md)
25 | · [isiZulu](../../lang/zulu/README.md)
26 | · [Tiếng Việt](../../lang/vietnamese/README.md)
27 |
28 | _Don't have the language you need? Just create an [issues](https://github.com/gomzyakov/achievements/issues)._
29 |
30 |
31 |
32 | | Beji | Jina | Jinsi ya kuipata |
33 | | :---: | --- |------------------------------------------------------------------------------------------------------------------------------------------------------------------|
34 | |  | **Heart On Your Sleeve** | Iwapo umejibu chochote kwenye GitHub ukitumia emoji ya ❤️ **(Bado iko Kwenye majaribio)** |
35 | |  | **Open Sourcerer** | Iwapo una PRs zilizo unganishwa katika hazina au repo nyingi za umma. **(Bado iko Kwenye majaribio)** |
36 | |  | **Starstruck** | Iwapo una hazina au repo ambayo ina **Nyota 16** au [zaidi](#Vyeo-vya-Beji). |
37 | |  | **Quickdraw** | Iwapo umefunga suala au ombi la kuchangia ndani ya dakika 5 za kufunguliwa. |
38 | |  | **Pair Extraordinaire** | Iwapo umekuwa Coauthored mara **mbili** au [zaidi](#Vyeo-vya-Beji) kwenye muunganisho wa ombi la kuchangia. |
39 | |  | **Pull Shark** | Iwapo una **Ombi mbili la kuchangia** zilizo unganishwa (au [zaidi](#Vyeo-vya-Beji)). |
40 | |  | **Galaxy Brain** | Iwapo un majibu mbili yalio kubaliwa au [zaidi](#Vyeo-vya-Beji). |
41 | |  | **YOLO** | Unganisha **angalau mojawapo** ya ombi la kuchangia bila kuhakikisha msimbo au code. |
42 | |  | **Mdhamini wa Umma** | Kudhamini kazi za chanzo wazi au open source kupitia. [GitHub Sponsors](https://github.com/sponsors). |
43 | |  | **Mars 2020 Contributor** | Kuchangia msimbo kwenye hazina katika [Mars 2020 Helicopter Mission](https://github.com/readme/featured/nasa-ingenuity-helicopter). *Kwa sasa mapato yake haipo* |
44 | |  | **Arctic Code Vault Contributor** | Kuchangia msimbo kwenye hazina katika [2020 GitHub Archive Program](https://archiveprogram.github.com/). *Kwa sasa mapato yake haipo* |
45 |
46 |
47 |
48 | ## Vyeo vya Beji
49 |
50 | Baadhi ya mafanikio hayana toleo la msingi pekee, bali pia vyeo.
51 |
52 | | Mafanikio | Chaguomsingi | Shaba | Fedha | Dhahabu |
53 | | --- | :---: | :---: | :---: | :---: |
54 | | **Starstruck** |  |  |  |  |
55 | | | Nyota 16 | Nyota 128 | Nyota 512 | Nyota 4096
[@torvalds](https://github.com/torvalds?achievement=starstruck&tab=achievements) |
56 | | **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] |
57 | | | ombi la kuchangia 1
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | ombi la kuchangia 10 | ombi la kuchangia 24 | ombi la kuchangia 48
[@Rongronggg9](https://github.com/Rongronggg9?achievement=pair-extraordinaire&tab=achievements) |
58 | | **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] |
59 | | | ombi la kuchangia 2 | ombi la kuchangia 16 | ombi la kuchangia 128 | ombi la kuchangia 1024
[@ljharb](https://github.com/ljharb?achievement=pull-shark&tab=achievements) |
60 | | **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] |
61 | | | Majibu 2 | Majibu 8 | Majibu 16 | Majibu 32
[@ljharb](https://github.com/ljharb?achievement=galaxy-brain&tab=achievements) |
62 | | **Heart On Your Sleeve** |  |  |  |  |
63 | | | ??? | ??? | ??? | ??? |
64 | | **Open Sourcerer** |  |  |  |  |
65 | | | ??? | ??? | ??? | ??? |
66 |
67 |
68 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png
69 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png
70 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png
71 |
72 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png
73 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png
74 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png
75 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png
76 |
77 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png
78 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png
79 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png
80 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png
81 |
82 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png
83 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png
84 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png
85 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png
86 |
87 |
88 |
89 | ## Rangi ya Ngozi kwa Ufanisi
90 |
91 | Mwonekano wa mafanikio mengine hutegemea mapendeleo yako ya rangi ya ngozi za emoji
92 |
93 | Waweza kubadilisha rangi yako ya Ngozi unayopendelea kwa kwenda kwa: [Mipangilio ya Muonekano](https://github.com/settings/appearance).
94 |
95 |
96 |
97 | | **Badge** | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
98 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
99 | | **Starstruck** |  |  |  |  |  |  |
100 | | **Quickdraw** | ![Default skin tone of Quickdraw][q-default] | ![Light skin tone of Quickdraw][q-light] | ![Light-medium skin tone of Quickdraw][q-light-medium] | ![Medium skin tone of Quickdraw][q-medium] | ![Medium-dark skin tone of Quickdraw][q-medium-dark] | ![Dark skin tone of Quickdraw][q-dark] |
101 |
102 | [s-light]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light.png
103 | [s-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light-medium.png
104 | [s-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium.png
105 | [s-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium-dark.png
106 | [s-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--dark.png
107 |
108 | [q-default]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png
109 | [q-light]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light.png
110 | [q-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light-medium.png
111 | [q-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium.png
112 | [q-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium-dark.png
113 | [q-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--dark.png
114 |
115 |
116 |
117 | ## Beji Zakuangazia
118 |
119 | | Beji | Jina | jinsi ya kuifikia |
120 | | --- | --- | --- |
121 | |  | **Pro** | Tumia [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) |
122 | |  | **Majadiliano Yaliojibiwa** | Jibu lako kwa mjadala liweke alama kama jibu |
123 | |  | **Mshiriki Kwenye Programu Msanidi** | Unafaa uwe mshiriki kwenye [Programu ya Msanidi wa GitHub](https://docs.github.com/en/developers/overview/github-developer-program) |
124 | |  | **Mwindaji wa Tuzo ya Kasoro za Usalama** | Saidiana kuwinda kasoro za usalama kwenye [Usalama wa GitHub](https://bounty.github.com/) |
125 | | ![Light badge GitHub Campus Expert][gce-dark]![Dark badge GitHub Campus Expert][gce-light] | **Mtaalamu wa Chuo kikuu ya Github** | Shiriki katika [Programu ya GitHub kwenye Chuo Kikuu](https://education.github.com/experts) |
126 | | ![Dark badge Security advisory credit][SAC-dark]![Light badge Security advisory credit][SAC-light] | **Mikopo ya Mashauriano ya Usalama** | Je, mawaidha yako ya usalama yaliyo wasilishwa kwa [Hifadhidata ya Mawaidha ya GitHub](https://github.com/advisories) kuwa imekubaliwa |
127 |
128 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only
129 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only
130 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only
131 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only
132 |
133 |
134 |
135 | ## Je, una mawazo fulani?
136 |
137 | Ikiwa una maswali au mapendekezo juu ya jinsi ya kuboresha maelezo kwenye ukurasa huu, unaweza kuiandika kwa [suala](https://github.com/gomzyakov/achievements/issues).
138 |
--------------------------------------------------------------------------------
/lang/telugu/README.md:
--------------------------------------------------------------------------------
1 | GitHub ప్రొఫైల్ బ్యాడ్జ్లు మరియు అచీవ్మెంట్ల పూర్తి జాబితా
2 |
3 | #### Read this in other languages:
4 |
5 | [English](../../README.md)
6 | · [Chinese](../../lang/chinese/README.md)
7 | · [Русский](../../lang/russian/README.md)
8 | · [Nederlands](../../lang/dutch/README.md)
9 | · [Français](../../lang/french/README.md)
10 | · [Deutsch](../../lang/german/README.md)
11 | · [हिन्दी](../../lang/hindi/README.md)
12 | · [Italiano](../../lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](../../lang/kannada/README.md)
16 | · [odia](../../lang/odia/README.md)
17 | · [pidgin](../../lang/pidgin/README.md)
18 | · [Polski](../../lang/polish/README.md)
19 | · [Português](../../lang/portuguese/README.md)
20 | · [Español](../../lang/spanish/README.md)
21 | · [Kiswahili](../../lang/swahili/README.md)
22 | · [తెలుగు](../../lang/telugu/README.md)
23 | · [Traditional chinese](../../lang/traditional-chinese/README.md)
24 | · [Türkçe](../../lang/turkish/README.md)
25 | · [isiZulu](../../lang/zulu/README.md)
26 | · [Tiếng Việt](../../lang/vietnamese/README.md)
27 |
28 | _Don't have the language you need? Just create an [issues](https://github.com/gomzyakov/achievements/issues)._
29 |
30 |
31 |
32 | | బ్యాడ్జ్ | పేరు | ఎలా పొందాలి |
33 | | :---: | --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
34 | |  | **Heart On Your Sleeve** | GitHub లో ఏదైనా ఒక దానికి ❤️ ఎమోజీతో ప్రతిస్పందించండి **(పరీక్షించబడుతోంది)** |
35 | |  | **Open Sourcerer** | బహిరంగ రీపాజిటరీలలో పీఆర్లు (పుల్ రిక్వెస్టులు) కలిపివేయబడ్డాయి **(పరీక్షించబడుతోంది)** |
36 | |  | **Starstruck** | **16 నక్షత్రాలు** లేదా [ఇంకా ఎక్కువ](#బ్యాడ్జ్-స్థాయిలు) ఉన్న రీపాజిటరీని సృష్టించారు |
37 | |  | **Quickdraw** | ఓపెనింగ్ చేసిన 5 నిమిషాల లోపల ఒక ఇష్యూ లేదా పుల్ రిక్వెస్ట్ను మూసివేశారు |
38 | |  | **Pair Extraordinaire** | రెండు లేదా మరియు మిళితమైన పుల్ రిక్వెస్టుల్లో సహ రచయిత |
39 | |  | **Pull Shark** | 2 పుల్ రిక్వెస్టులు మిళితమయ్యాయి (లేదా మరియు) |
40 | |  | **Galaxy Brain** | 2 అంగీకరించిన సమాధానాలు లేదా మరియు |
41 | |  | **YOLO** | కోడ్ సమీక్ష లేకుండా **కనీసం ఒక** పుల్ రిక్వెస్ట్ మిళితమైంది. |
42 | |  | **Public Sponsor** | [GitHub Sponsors](https://github.com/sponsors) ద్వారా ఓపెన్ సోర్స్ పనికి మద్దతు ఇవ్వడం. |
43 | |  | **Mars 2020 Contributor** | [Mars 2020 Helicopter Mission](https://github.com/readme/featured/nasa-ingenuity-helicopter) లో ఉపయోగించిన రిపోజిటరీలకు కోడ్ అందించండి. *ఇప్పుడు సంపాదించలేరు.* |
44 | |  | **Arctic Code Vault Contributor** | [2020 GitHub Archive Program](https://archiveprogram.github.com/) లో ఒక రిపోజిటరీకు కోడ్ అందించండి. *ఇప్పుడు సంపాదించలేరు.* |
45 |
46 |
47 |
48 | ## బ్యాడ్జ్ స్థాయిలు
49 |
50 | కొన్ని సిఫార్సులు మాత్రమే ప్రాథమిక వెర్షన్ను కలిగి ఉండవు, కానీ tiers కూడా ఉన్నాయి.
51 |
52 | | సిఫార్సు | డిఫాల్ట్ | బ్రాంజ్ | సిల్వర్ | గోల్డ్ |
53 | | --- | :---: | :---: | :---: | :---: |
54 | | **Starstruck** |  |  |  |  |
55 | || 16 స్టార్లు | 128 స్టార్లు | 512 స్టార్లు | 4096 స్టార్లు
[@torvalds](https://github.com/torvalds?achievement=starstruck&tab=achievements) |
56 | | **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] |
57 | | | 1 పుల్ రిక్వెస్ట్
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | 10 పుల్ రిక్వెస్టులు | 24 పుల్ రిక్వెస్టులు | 48 పుల్ రిక్వెస్టులు
[@Rongronggg9](https://github.com/Rongronggg9?achievement=pair-extraordinaire&tab=achievements) |
58 | | **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] |
59 | | | 2 పుల్ రిక్వెస్టులు | 16 పుల్ రిక్వెస్టులు | 128 పుల్ రిక్వెస్టులు | 1024 పుల్ రిక్వెస్టులు
[@ljharb](https://github.com/ljharb?achievement=pull-shark&tab=achievements) |
60 | | **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] |
61 | | | 2 సమాధానాలు | 8 సమాధానాలు | 16 సమాధానాలు | 32 సమాధానాలు
[@ljharb](https://github.com/ljharb?achievement=galaxy-brain&tab=achievements) |
62 | | **Heart On Your Sleeve** |  |  |  |  |
63 | | | ??? | ??? | ??? | ??? |
64 | | **Open Sourcerer** |  |  |  |  |
65 | | | ??? | ??? | ??? | ??? |
66 |
67 |
68 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png
69 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png
70 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png
71 |
72 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png
73 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png
74 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png
75 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png
76 |
77 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png
78 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png
79 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png
80 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png
81 |
82 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png
83 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png
84 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png
85 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png
86 |
87 |
88 |
89 | ## సిఫార్సు స్కిన్ టోన్
90 |
91 | కొన్ని సిఫార్సుల రూపం మీ ఎమోజీ స్కిన్ టోన్ ప్రిఫరెన్స్ పై ఆధారపడి ఉంటుంది.
92 |
93 | మీ ఇష్టమైన స్కిన్ టోన్ని [ప్రదర్శన సదుపాయాలు](https://github.com/settings/appearance) లో వెళ్లి మార్చవచ్చు.
94 |
95 |
96 |
97 | | **బ్యాడ్జ్** | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
98 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
99 | | **Starstruck** |  |  |  |  |  |  |
100 | | **Quickdraw** | ![Default skin tone of Quickdraw][q-default] | ![Light skin tone of Quickdraw][q-light] | ![Light-medium skin tone of Quickdraw][q-light-medium] | ![Medium skin tone of Quickdraw][q-medium] | ![Medium-dark skin tone of Quickdraw][q-medium-dark] | ![Dark skin tone of Quickdraw][q-dark] |
101 |
102 | [s-light]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light.png
103 | [s-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light-medium.png
104 | [s-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium.png
105 | [s-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium-dark.png
106 | [s-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--dark.png
107 |
108 | [q-default]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png
109 | [q-light]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light.png
110 | [q-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light-medium.png
111 | [q-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium.png
112 | [q-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium-dark.png
113 | [q-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--dark.png
114 |
115 |
116 |
117 | ## హైలైట్స్ బ్యాడ్జ్లు
118 |
119 | | బ్యాడ్జ్ | పేరు | ఎలా సాధించాలి |
120 | | --- | --- | --- |
121 | |  | **Pro** | [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) ఉపయోగించండి |
122 | |  | **Discussion answered** | మీ సమాధానాన్ని చర్చలో సమాధానంగా గుర్తించబడినట్లుగా ఉండాలి |
123 | |  | **Developer Program Member** | [GitHub Developer Program](https://docs.github.com/en/developers/overview/github-developer-program) యొక్క నమోదు చేసిన సభ్యుడిగా ఉండండి |
124 | |  | **Security Bug Bounty Hunter** | [GitHub Security](https://bounty.github.com/)లో సెక్యూరిటీ దుర్లభతలను శోధించడంలో సహాయం చేయండి |
125 | | ![Light badge GitHub Campus Expert][gce-dark]![Dark badge GitHub Campus Expert][gce-light] | **GitHub Campus Expert** | [GitHub Campus Program](https://education.github.com/experts) లో పాల్గొనండి |
126 | | ![Dark badge Security advisory credit][SAC-dark]![Light badge Security advisory credit][SAC-light] | **Security advisory credit** | మీ సెక్యూరిటీ సలహాను [GitHub Advisory Database](https://github.com/advisories) కి సమర్పించబడినట్లుగా అంగీకరించబడాలి |
127 |
128 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only
129 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only
130 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only
131 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only
132 |
133 |
134 |
135 | ## మీకు కొన్ని ఆలోచనలు ఉన్నాయా?
136 |
137 | ఈ పేజీపై సమాచారం మెరుగుపరచడంపై మీకు ఎలాంటి ప్రశ్నలు లేదా సూచనలు ఉంటే, మీరు ఎప్పుడూ [issues](https://github.com/gomzyakov/achievements/issues) కు రాయవచ్చు.
138 |
--------------------------------------------------------------------------------
/lang/traditional-chinese/README.md:
--------------------------------------------------------------------------------
1 | # 所有 GitHub 個人資料徽章和成就的完整列表
2 |
3 | #### Read this in other languages:
4 |
5 | [English](../../README.md)
6 | · [Chinese](../../lang/chinese/README.md)
7 | · [Русский](../../lang/russian/README.md)
8 | · [Nederlands](../../lang/dutch/README.md)
9 | · [Français](../../lang/french/README.md)
10 | · [Deutsch](../../lang/german/README.md)
11 | · [हिन्दी](../../lang/hindi/README.md)
12 | · [Italiano](../../lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](../../lang/kannada/README.md)
16 | · [odia](../../lang/odia/README.md)
17 | · [pidgin](../../lang/pidgin/README.md)
18 | · [Polski](../../lang/polish/README.md)
19 | · [Português](../../lang/portuguese/README.md)
20 | · [Español](../../lang/spanish/README.md)
21 | · [Kiswahili](../../lang/swahili/README.md)
22 | · [తెలుగు](../../lang/telugu/README.md)
23 | · [Traditional chinese](../../lang/traditional-chinese/README.md)
24 | · [Türkçe](../../lang/turkish/README.md)
25 | · [isiZulu](../../lang/zulu/README.md)
26 | · [Tiếng Việt](../../lang/vietnamese/README.md)
27 |
28 | _Don't have the language you need? Just create an [issues](https://github.com/gomzyakov/achievements/issues)._
29 |
30 |
31 |
32 | | 徽章 | 名稱 | 如何獲得 |
33 | | :---: | --- |------------------------------------------------------------------------------------------------------------------------------------------------------------------|
34 | |  | **Heart On Your Sleeve** | 使用 ❤️ 表情符號對 GitHub 上的內容做出反應 **(正在測試中)** |
35 | |  | **Open Sourcerer** | 使用者已將 PR 合併到多個公共儲存庫中 **(正在測試中)** |
36 | |  | **Starstruck** | 建立了一個擁有**16顆星**或[更多](#成就徽章等級)的儲存庫 |
37 | |  | **Quickdraw** | 在 PR 開啟**5 分鐘內**關閉 PR |
38 | |  | **Pair Extraordinaire** | 在**一個**或[更多](#成就徽章等級)合併拉取請求中共同創作 |
39 | |  | **Pull Shark** | **2 個 PR** 或[以上](#成就徽章等級)被合併 |
40 | |  | **Galaxy Brain** | 兩個或[以上](#成就徽章等級)的回答被標記為“答案” |
41 | |  | **YOLO** | 在不進行程式碼審查的情況下合併**至少一個** PR |
42 | |  | **Public Sponsor** | 透過 [GitHub Sponsors](https://github.com/sponsors) 打賞開源專案 |
43 | |  | **Mars 2020 Contributor** | 向用於 [Mars 2020 Helicopter Mission](https://github.com/readme/featured/nasa-ingenuity-helicopter) 的儲存庫貢獻了程式碼 *已無法再獲取* |
44 | |  | **Arctic Code Vault Contributor** | 向用於 [2020 GitHub Archive Program](https://archiveprogram.github.com/) 的儲存庫貢獻了程式碼 *已無法再獲取* |
45 |
46 |
47 |
48 | ## 成就徽章等級
49 |
50 | 一些徽章不僅具有基礎版,還可以繼續升級
51 |
52 | | 成就 | 基礎 | 青銅 | 白銀 | 黃金 |
53 | | --- | :---: | :---: | :---: | :---: |
54 | | **Starstruck** |  |  |  |  |
55 | | | 16 星 | 128 星 | 512 星 | 4096 星
[@torvalds](https://github.com/torvalds?achievement=starstruck&tab=achievements) |
56 | | **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] |
57 | | | 1 次 PR
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | 10 次 PR | 24 次 PR | 48 次 PR
[@Rongronggg9](https://github.com/Rongronggg9?achievement=pair-extraordinaire&tab=achievements) |
58 | | **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] |
59 | | | 2 次 PR | 16 次 PR | 128 次 PR | 1024 次 PR
[@ljharb](https://github.com/ljharb?achievement=pull-shark&tab=achievements) |
60 | | **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] |
61 | | | 2 個答案 | 8 個答案 | 16 個答案 | 32 個答案
[@ljharb](https://github.com/ljharb?achievement=galaxy-brain&tab=achievements) |
62 | | **Heart On Your Sleeve** |  |  |  |  |
63 | | | ??? | ??? | ??? | ??? |
64 | | **Open Sourcerer** |  |  |  |  |
65 | | | ??? | ??? | ??? | ??? |
66 |
67 |
68 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png
69 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png
70 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png
71 |
72 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png
73 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png
74 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png
75 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png
76 |
77 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png
78 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png
79 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png
80 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png
81 |
82 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png
83 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png
84 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png
85 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png
86 |
87 |
88 |
89 | ## 成就面板色調
90 |
91 | 一些成就的外觀取決於你的 Emoji 偏好設定
92 |
93 | 你可以在[外觀設定](https://github.com/settings/appearance)更改你的偏好設定
94 |
95 |
96 |
97 | | **徽章** | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
98 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
99 | | **Starstruck** |  |  |  |  |  |  |
100 | | **Quickdraw** | ![Default skin tone of Quickdraw][q-default] | ![Light skin tone of Quickdraw][q-light] | ![Light-medium skin tone of Quickdraw][q-light-medium] | ![Medium skin tone of Quickdraw][q-medium] | ![Medium-dark skin tone of Quickdraw][q-medium-dark] | ![Dark skin tone of Quickdraw][q-dark] |
101 |
102 | [s-light]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light.png
103 | [s-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light-medium.png
104 | [s-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium.png
105 | [s-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium-dark.png
106 | [s-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--dark.png
107 |
108 | [q-default]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png
109 | [q-light]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light.png
110 | [q-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light-medium.png
111 | [q-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium.png
112 | [q-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium-dark.png
113 | [q-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--dark.png
114 |
115 |
116 |
117 | ## 高亮成就
118 |
119 | | 徽章 | 名稱 | 如何獲得 |
120 | | --- | --- | --- |
121 | |  | **Pro** | 使用 [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) |
122 | |  | **Discussion answered** | 在討論中的回覆被標記為答案 |
123 | |  | **Developer Program Member** | 註冊成為 [GitHub Developer Program](https://docs.github.com/en/developers/overview/github-developer-program) 的一員 |(https://docs.github.com/en/developers/overview/github-developer-program) |
124 | |  | **Security Bug Bounty Hunter** | 在 [GitHub Security](https://bounty.github.com/) 上尋找安全漏洞|
125 | | ![Light badge GitHub Campus Expert][gce-dark]![Dark badge GitHub Campus Expert][gce-light] | **GitHub Campus Expert** | 參與 [GitHub Campus Program](https://education.github.com/experts) *(2024.2.29前有效)* |
126 | | ![Dark badge Security advisory credit][SAC-dark]![Light badge Security advisory credit][SAC-light] | **Security advisory credit** | 提交到 [GitHub Advisory Database](https://github.com/advisories) 的安全性建議被接受 |
127 |
128 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only
129 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only
130 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only
131 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only
132 |
133 |
134 |
135 | ## 你有任何想法嗎?
136 |
137 | 如果您對如何改進此頁面上的資訊有疑問或建議,您可以隨時提 [issues](https://github.com/gomzyakov/achievements/issues).
138 |
--------------------------------------------------------------------------------
/lang/turkish/README.md:
--------------------------------------------------------------------------------
1 | # GitHub Profil Rozetleri ve Başarılarının Tam Listesi
2 |
3 | #### Diğer dillerde oku:
4 |
5 | [English](../../README.md)
6 | · [Chinese](../../lang/chinese/README.md)
7 | · [Русский](../../lang/russian/README.md)
8 | · [Nederlands](../../lang/dutch/README.md)
9 | · [Français](../../lang/french/README.md)
10 | · [Deutsch](../../lang/german/README.md)
11 | · [हिन्दी](../../lang/hindi/README.md)
12 | · [Italiano](../../lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](../../lang/kannada/README.md)
16 | · [odia](../../lang/odia/README.md)
17 | · [pidgin](../../lang/pidgin/README.md)
18 | · [Polski](../../lang/polish/README.md)
19 | · [Português](../../lang/portuguese/README.md)
20 | · [Español](../../lang/spanish/README.md)
21 | · [Kiswahili](../../lang/swahili/README.md)
22 | · [తెలుగు](../../lang/telugu/README.md)
23 | · [Traditional chinese](../../lang/traditional-chinese/README.md)
24 | · [Türkçe](../../lang/turkish/README.md)
25 | · [isiZulu](../../lang/zulu/README.md)
26 | · [Tiếng Việt](../../lang/vietnamese/README.md)
27 |
28 | _Gereken dili bulamadınız mı? Sadece bir [issue](https://github.com/gomzyakov/achievements/issues) oluşturun._
29 |
30 |
31 |
32 | | Badge | Name | Nasıl kazanılır |
33 | | :---: | --- |------------------|
34 | |  | **Heart On Your Sleeve** | GitHub’da bir içeriğe ❤️ emojisi ile tepki ver (**Test aşamasında**) |
35 | |  | **Open Sourcerer** | Birden fazla herkese açık repoya PR göndermek (**Test aşamasında**) |
36 | |  | **Starstruck** | En az **16 yıldız** alan bir repo oluştur |
37 | |  | **Quickdraw** | Bir issue ya da PR’ı açıldıktan sonra 5 dakika içinde kapat |
38 | |  | **Pair Extraordinaire** | Bir veya daha fazla **ortak yazar** ile gönderilmiş PR’ların merge edilmesi |
39 | |  | **Pull Shark** | **2 PR** merge edildi (**ya da daha fazlası**) |
40 | |  | **Galaxy Brain** | Kabul edilmiş en az **2 yanıt** (**ya da daha fazlası**) |
41 | |  | **YOLO** | En az bir PR’ı kod incelemesi olmadan merge et |
42 | |  | **Public Sponsor** | [GitHub Sponsors](https://github.com/sponsors) üzerinden açık kaynak projelere sponsor ol |
43 | |  | **Mars 2020 Contributor** | [Mars 2020 Helicopter Mission](https://github.com/readme/featured/nasa-ingenuity-helicopter) projesine katkı ver (Artık kazanılamıyor) |
44 | |  | **Arctic Code Vault Contributor** | [2020 GitHub Archive Program](https://archiveprogram.github.com/) kapsamındaki bir repoya katkı ver (Artık kazanılamıyor) |
45 |
46 |
47 |
48 | ## Badge Tiers
49 |
50 | Bazı **Achievements** sadece temel sürümle sınırlı değil, aynı zamanda **bronze**, **silver**, ve **gold** gibi kademelere sahiptir:
51 |
52 | | Achievement | Default | Bronze | Silver | Gold |
53 | | --- | :---: | :---: | :---: | :---: |
54 | | **Starstruck** | 16 yıldız | 128 yıldız | 512 yıldız | 4096 yıldız |
55 | | **Pair Extraordinaire** | 1 PR | 10 PR | 24 PR | 48 PR |
56 | | **Pull Shark** | 2 PR | 16 PR | 128 PR | 1024 PR |
57 | | **Galaxy Brain** | 2 yanıt | 8 yanıt | 16 yanıt | 32 yanıt |
58 | | **Heart On Your Sleeve** | ??? | ??? | ??? | ??? |
59 | | **Open Sourcerer** | ??? | ??? | ??? | ??? |
60 |
61 |
62 |
63 | ## Başarı Rozetlerinin Ten Rengi
64 |
65 | Bazı başarı rozetlerinin görünümü, tercih ettiğiniz **Emoji Ten Rengi**’ne göre değişebilir.
66 |
67 | Emoji ten renginizi değiştirmek için [görünüm ayarları](https://github.com/settings/appearance) sayfasına gidebilirsiniz.
68 |
69 | | Badge | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
70 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
71 | | **Starstruck** | Varsayılan | Açık | Açık-Orta | Orta | Orta-Koyu | Koyu |
72 | | **Quickdraw** | Varsayılan | Açık | Açık-Orta | Orta | Orta-Koyu | Koyu |
73 |
74 |
75 |
76 | ## Highlights Badges
77 |
78 | | Badge | Name | Nasıl kazanılır |
79 | | --- | --- | --- |
80 | |  | **Pro** | [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) kullanıcısı ol |
81 | |  | **Discussion answered** | Bir tartışmadaki cevabınız “yanıt” olarak işaretlensin |
82 | |  | **Developer Program Member** | [GitHub Developer Program](https://docs.github.com/en/developers/overview/github-developer-program) üyesi olun |
83 | |  | **Security Bug Bounty Hunter** | [GitHub Security](https://bounty.github.com/) platformunda güvenlik açığı bul |
84 | |  | **GitHub Campus Expert** | [GitHub Campus Program](https://education.github.com/experts) programına katıl |
85 | |  | **Security advisory credit** | [GitHub Advisory Database](https://github.com/advisories)'e kabul edilmiş bir güvenlik tavsiyesi gönder |
86 |
87 |
88 |
89 | ## Bir fikrin mi var?
90 |
91 | Bu sayfadaki bilgileri nasıl geliştireceğimize dair fikir veya önerin varsa her zaman bir [issue](https://github.com/gomzyakov/achievements/issues) açabilirsin.
92 |
--------------------------------------------------------------------------------
/lang/zulu/README.md:
--------------------------------------------------------------------------------
1 | # Complete list of all GitHub Profile badges and Achievements
2 |
3 | #### Read this in other languages:
4 |
5 | [English](../../README.md)
6 | · [Chinese](../../lang/chinese/README.md)
7 | · [Русский](../../lang/russian/README.md)
8 | · [Nederlands](../../lang/dutch/README.md)
9 | · [Français](../../lang/french/README.md)
10 | · [Deutsch](../../lang/german/README.md)
11 | · [हिन्दी](../../lang/hindi/README.md)
12 | · [Italiano](../../lang/italian/README.md)
13 | · [한국어](lang/korean/README.md)
14 | · [தமிழ்](lang/tamil/README.md)
15 | · [ಕನ್ನಡ](../../lang/kannada/README.md)
16 | · [odia](../../lang/odia/README.md)
17 | · [pidgin](../../lang/pidgin/README.md)
18 | · [Polski](../../lang/polish/README.md)
19 | · [Português](../../lang/portuguese/README.md)
20 | · [Español](../../lang/spanish/README.md)
21 | · [Kiswahili](../../lang/swahili/README.md)
22 | · [తెలుగు](../../lang/telugu/README.md)
23 | · [Traditional chinese](../../lang/traditional-chinese/README.md)
24 | · [Türkçe](../../lang/turkish/README.md)
25 | · [isiZulu](../../lang/zulu/README.md)
26 | · [Tiếng Việt](../../lang/vietnamese/README.md)
27 |
28 | _Don't have the language you need? Just create an [issues](https://github.com/gomzyakov/achievements/issues)._
29 |
30 |
31 |
32 | | Badge | Name | How to get |
33 | | :---: | --- |------------------------------------------------------------------------------------------------------------------------------------------------------------------|
34 | |  | **Heart On Your Sleeve** | React to something on GitHub with a ❤️ emoji **(Being tested)** |
35 | |  | **Open Sourcerer** | User had PRs merged in multiple public repositories **(Being tested)** |
36 | |  | **Starstruck** | Created a repository that has **16 stars** or [more](#badge-tiers). |
37 | |  | **Quickdraw** | Closed an issue or a pull request within 5 min of opening. |
38 | |  | **Pair Extraordinaire** | Coauthored in a **two** or [more](#badge-tiers) merged pull request. |
39 | |  | **Pull Shark** | **2 pull requests** merged (or [more](#badge-tiers)). |
40 | |  | **Galaxy Brain** | 2 accepted answers or [more](#badge-tiers). |
41 | |  | **YOLO** | Merged **at least one** pull request without code review . |
42 | |  | **Public Sponsor** | Sponsoring open source work via [GitHub Sponsors](https://github.com/sponsors). |
43 | |  | **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.* |
44 | |  | **Arctic Code Vault Contributor** | Contributed code to a repository in the [2020 GitHub Archive Program](https://archiveprogram.github.com/). *Now unable to earn.* |
45 |
46 |
47 |
48 | ## Badge Tiers
49 |
50 | Some Achievements not only have the base version, but also tiers.
51 |
52 | | Achievement | Default | Bronze | Silver | Gold |
53 | | --- | :---: | :---: | :---: | :---: |
54 | | **Starstruck** |  |  |  |  |
55 | | | 16 stars | 128 stars | 512 stars | 4096 stars
[@torvalds](https://github.com/torvalds?achievement=starstruck&tab=achievements) |
56 | | **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] |
57 | | | 1 pull requests
[@gomzyakov](https://github.com/gomzyakov?achievement=pair-extraordinaire&tab=achievements) | 10 pull requests | 24 pull requests | 48 pull requests
[@Rongronggg9](https://github.com/Rongronggg9?achievement=pair-extraordinaire&tab=achievements) |
58 | | **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] |
59 | | | 2 pull requests | 16 pull requests | 128 pull requests | 1024 pull requests
[@ljharb](https://github.com/ljharb?achievement=pull-shark&tab=achievements) |
60 | | **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] |
61 | | | 2 answers | 8 answers | 16 answers | 32 answers
[@ljharb](https://github.com/ljharb?achievement=galaxy-brain&tab=achievements) |
62 | | **Heart On Your Sleeve** |  |  |  |  |
63 | | | ??? | ??? | ??? | ??? |
64 | | **Open Sourcerer** |  |  |  |  |
65 | | | ??? | ??? | ??? | ??? |
66 |
67 |
68 | [ss-bronze]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-bronze.png
69 | [ss-silver]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-silver.png
70 | [ss-gold]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-gold.png
71 |
72 | [pe-default]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-default.png
73 | [pe-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-bronze.png
74 | [pe-silver]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-silver.png
75 | [pe-gold]: https://github.githubassets.com/images/modules/profile/achievements/pair-extraordinaire-gold.png
76 |
77 | [ps-default]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-default.png
78 | [ps-bronze]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-bronze.png
79 | [ps-silver]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-silver.png
80 | [ps-gold]: https://github.githubassets.com/images/modules/profile/achievements/pull-shark-gold.png
81 |
82 | [gb-default]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-default.png
83 | [gb-bronze]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-bronze.png
84 | [gb-silver]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-silver.png
85 | [gb-gold]: https://github.githubassets.com/images/modules/profile/achievements/galaxy-brain-gold.png
86 |
87 |
88 |
89 | ## Achievement Skin Tone
90 |
91 | Some achievements' appearance depends on your Emoji Skin Tone Preference.
92 |
93 | You can change your preferred Skin Tone by going to [appearance settings](https://github.com/settings/appearance).
94 |
95 |
96 |
97 | | **Badge** | 👋 | 👋🏻 | 👋🏼 | 👋🏽 | 👋🏾 | 👋🏿 |
98 | | --- | :---: | :---: | :---: | :---: | :---: | :---: |
99 | | **Starstruck** |  |  |  |  |  |  |
100 | | **Quickdraw** | ![Default skin tone of Quickdraw][q-default] | ![Light skin tone of Quickdraw][q-light] | ![Light-medium skin tone of Quickdraw][q-light-medium] | ![Medium skin tone of Quickdraw][q-medium] | ![Medium-dark skin tone of Quickdraw][q-medium-dark] | ![Dark skin tone of Quickdraw][q-dark] |
101 |
102 | [s-light]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light.png
103 | [s-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--light-medium.png
104 | [s-medium]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium.png
105 | [s-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--medium-dark.png
106 | [s-dark]: https://github.githubassets.com/images/modules/profile/achievements/starstruck-default--dark.png
107 |
108 | [q-default]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default.png
109 | [q-light]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light.png
110 | [q-light-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--light-medium.png
111 | [q-medium]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium.png
112 | [q-medium-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--medium-dark.png
113 | [q-dark]: https://github.githubassets.com/images/modules/profile/achievements/quickdraw-default--dark.png
114 |
115 |
116 |
117 | ## Highlights Badges
118 |
119 | | Badge | Name | How to achieve |
120 | | --- | --- | --- |
121 | |  | **Pro** | Use [GitHub Pro](https://docs.github.com/en/get-started/learning-about-github/githubs-products#github-pro) |
122 | |  | **Discussion answered** | Have your reply to a discussion marked as the answer |
123 | |  | **Developer Program Member** | Be a registered member of the [GitHub Developer Program](https://docs.github.com/en/developers/overview/github-developer-program) |
124 | |  | **Security Bug Bounty Hunter** | Helped out hunting down security vulnerabilities at [GitHub Security](https://bounty.github.com/) |
125 | | ![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) |
126 | | ![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 |
127 |
128 | [gce-dark]: https://user-images.githubusercontent.com/65187002/173082819-b3625c23-bfd6-4492-b828-56ed91c45f52.svg#gh-dark-mode-only
129 | [gce-light]: https://user-images.githubusercontent.com/65187002/173082836-08be81fe-13b7-4acf-9096-e5241d76f237.svg#gh-light-mode-only
130 | [SAC-dark]: https://user-images.githubusercontent.com/65187002/173084051-79a0a626-1c1a-4d60-afdf-50ad001d7b21.svg#gh-dark-mode-only
131 | [SAC-light]: https://user-images.githubusercontent.com/65187002/173084071-5f321da2-b2a9-490b-a524-1b21fa384d7e.svg#gh-light-mode-only
132 |
133 |
134 |
135 | ## Do you have some ideas?
136 |
137 | If you have questions or suggestions on how to improve the information on this page, you can always write to [issues](https://github.com/gomzyakov/achievements/issues).
138 |
--------------------------------------------------------------------------------
/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow: /google4df2868514d6870d.html
3 |
--------------------------------------------------------------------------------