This README showcases all the people who have made it as Heroes into the Heroes program!
All of our program members start out as Rookies and can become Heroes in one of two ways:
- By being nominated by a member of the Polkadot Developer Heroes team
- By self-nominating and going through the review process
If you are already a Rookie and feel ready to apply to become a Hero, go ahead and nominate yourself today!
You can read the Heroes Review Criteria and Scoring Matrix Guidelines to learn more about the review process.
- Name: Alice
- Position: Substrate Developer
- GitHub Profile: https://github.com/paritytech/substrate
- Social Media Links:
- X: https://twitter.com/paritytech
- LinkedIn: https://www.linkedin.com/company/paritytech/
- ... any others you want to share
- Personal Site: https://www.parity.io/
- Blog: https://www.parity.io/blog/
To add your profile to our list of Rookies or Heroes, please follow the steps below, please only do so once you receive an invitation after acceptance into the program:
Start by clicking on the "Fork" button at the top right corner of this repository. This will create a copy of this repository in your account.
Now, clone this repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the 'copy to clipboard' icon.
Open a terminal and run the following git command:
git clone "url you just copied"
Change to the repository directory on your computer:
cd [repository name]
Now create a branch using the git checkout command:
git checkout -b your-new-branch-name
Create your profile card in the appropriate README.md
file (either Rookies/README.md
or Heroes/README.md
), following the provided template or copy and paste an earlier profile card of another member to use for reference. Make sure your profile is in alphabetical order in the list.
Add your profile image to the ./images folder
, and fill out the information fields in your card.
Don't forget to preview your additions in the README.md
file to confirm it looks as expected.
If you go to the project directory and execute the command git status, you'll see the changes.
Add those changes to the branch you just created using the git add command:
git add -p
Now commit those changes using the git commit command:
git commit -m "Add [Your Name] to Rookie (or Hero) list"
Push your changes using the command git push
:
git push origin <add-your-branch-name>
If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.
Now submit the pull request, ensuring you use the provided PR template (either Rookie or Hero).
Once your pull request is merged, your profile will be visible in the list!
This project is licensed under the terms of the MIT license. Please see LICENSE for more details.