src/markdown-pages/addons.md
GitHub Profile README Generator tool uses few open-source addons developed by other developers. Including such features makes the tool useful. The developers of this tool is very grateful to use these awesome addons.
ā”ļø Dynamically generated stats for your github readmes
Developed by Anurag Hazra.
You can customize the theme too. See how to customize yours here
Stay motivated while contributing to open source by displaying your current contribution streak
Developed by by Jonah Lawrence.
See how to customize the theme here
It counts how many times your GitHub profile has been viewed. Free cloud micro-service.
Developed by by Anton Komarev.
You can customize the color, label and style too. See how to customize here
Show your latest blog posts from any sources(like dev(.)to, medium etc) or StackOverflow activity on your GitHub profile/project readme automatically using the RSS feed.
Developed by Gautam Krishna R
# Blog posts
<!-- BLOG-POST-LIST:START -->
<!-- BLOG-POST-LIST:END -->
.github and create workflows folder inside it if it doesn't exist.blog-post-workflow.yml with the following contents inside the workflows folder:name: Latest blog post workflow
on:
schedule:
# Runs every hour
- cron: '0 * * * *'
jobs:
update-readme-with-blog:
name: Update this repo's README with latest blog posts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gautamkrishnar/blog-post-workflow@master
with:
feed_list: 'https://dev.to/feed/rahuldkjain, https://medium.com/feed/@rahuldkjain'
To know more, check out the official github repository