[
  {
    "path": ".eslintrc.js",
    "content": "module.exports = {\n  \"extends\": [\"react-app\", \"plugin:jsx-a11y/recommended\"],\n  \"plugins\": [\"jsx-a11y\"],\n  \"rules\": {\n    \"jsx-a11y/rule-name\": \"warn\",\n    'jsx-a11y/no-onchange': 'off',\n  },\n  \"env\": {\n    \"browser\": true,\n    \"es6\": true,\n  },\n  \"plugins\": [\n    \"react\",\n  ],\n  \"globals\": {\n    \"graphql\": false,\n  },\n  \"parserOptions\": {\n    \"sourceType\": \"module\",\n    \"ecmaFeatures\": {\n      \"experimentalObjectRestSpread\": true,\n      \"jsx\": true,\n    },\n  }\n}\n"
  },
  {
    "path": ".github/pull_request_template.md",
    "content": "## Issue\n\n<!-- The issue url that you are working on -->\n\n## Description\n\n<!-- Describe what changes you made in this Pull request -->\n\n## Checklist\n\n<!-- Feel free to add ore remove checklist according to your Pull request requirements. -->\n\n- [ ] Added contributor object in ascending order in `contributors.json`\n- [ ] Github action build passing\n- [ ] No merge conflicts\n"
  },
  {
    "path": ".github/workflows/add_reactions.yaml",
    "content": "name: add-reaction-to-pr-description\non: [status]\n\njobs:\n  add-reaction:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: peter-evans/create-pull-request@v3\n        with:\n          message: testing\n          reactions: heart, hooray, +1, rocket\n          repo-token: ${{ secrets.GITHUB_TOKEN }}\n          repo-token-user-login: 'github-actions[bot]'\n          allow-repeats: false\n"
  },
  {
    "path": ".github/workflows/contributor_greet.yaml",
    "content": "name: greet-contributor-action\non: [pull_request_target]\n\njobs:\n  greet-user:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: mshick/add-pr-comment@v1\n        with:\n          message: |\n            Thanks for contributing to `developer-community-stats`! \n            We are happy to have you as a contributor. Your PR will be reviewed and merged to master. \n            Once it is merged you can see your stats in: https://developer-community-stats.netlify.app/\n\n\n            If you want to contribute to other issues check out [Issues needed Help](https://github.com/subeshb1/developer-community-stats/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22)\n\n\n            Please share your feedback and suggestions in this Issue: [Suggestions](https://github.com/subeshb1/developer-community-stats/issues/202)\n            This will help us improve a lot :)\n            **Note: Don't forget to star, share the repository and follow @subeshb1 :)**\n          repo-token: ${{ secrets.GITHUB_TOKEN }}\n          repo-token-user-login: 'github-actions[bot]'\n          allow-repeats: false\n"
  },
  {
    "path": ".github/workflows/contributor_pr_status_comment.yaml",
    "content": "name: ContributorSpecFailure\non: \n  workflow_run:\n    workflows:\n      - ContributorSpec\n    types:\n       - completed\njobs:\n  test-build:\n    runs-on: ubuntu-latest\n    steps:\n      - env:\n          CONTEXT: ${{ toJSON(github) }}\n        run: echo $CONTEXT\n      - name: Download artifact\n        uses: dawidd6/action-download-artifact@v2\n        with:\n          workflow: ${{ github.event.workflow.id }}\n      - run: echo \"##[set-output name=id;]$(jq '.event.number' ${{ github.event.workflow_run.id }}/data.json)\"\n        id: pull_request\n      - run: jq '.event.number' ${{ github.event.workflow_run.id }}/data.json\n      - run: jq '.' ${{ github.event.workflow_run.id }}/data.json\n      - env:\n          TEST:  steps.pull_request.outputs.id\n        run: echo $TEST  \n      - if: ${{ github.event.workflow_run.conclusion == 'failure' }}\n        uses: peter-evans/create-or-update-comment@v1\n        with:\n          issue-number: ${{ steps.pull_request.outputs.id }} \n          body: |\n            It looks like you haven't ordered the JSON values in **ascending order alphabetically ignoring case** by Github user name or your JSON syntax is wrong. Please read the issue description before taking them.\n\n            If you know about nodejs run the following command to sort the list:\n            ```sh\n              npx sort-json contributors.json --ignore-case\n            ```\n\n            **If you don't know about node js, go the following link:**\n            https://codeshack.io/json-sorter/\n            Paste the content of the file and generate a sorted JSON. After the paste the sorted list in the file and make a commit.\n\n\n            Once this is done, your PR will be reviewed and merged.\n\n\n            If you still have problem you can tag in a maintainer: @subeshb1\n          reactions: eyes, -1, confused\n      - if: ${{ github.event.workflow_run.conclusion == 'success' }}\n        uses: peter-evans/create-or-update-comment@v1\n        with:\n          issue-number: ${{ steps.pull_request.outputs.id }} \n          body: |\n            Great! Your PR has succesfully passed all the checks. 🚀\n            Your PR will be merged by a maintainer. Please be patient.\n            In the meantime checkout the issues for anything you can help out on: [Issues needed Help](https://github.com/subeshb1/developer-community-stats/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22)\n          reactions: heart, hooray, +1, rocket\n"
  },
  {
    "path": ".github/workflows/contributor_spec.yaml",
    "content": "name: \"ContributorSpec\"\non: [pull_request]\njobs:\n  test-build:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v2\n      - name: Build Project\n        uses: actions/setup-node@v1\n        with:\n          node-version: '12'\n      - name: Cache multiple paths\n        uses: actions/cache@v2\n        with:\n          path: |\n            ~/cache\n            !~/cache/exclude\n            **/node_modules\n          key: ${{ runner.os }}-${{ hashFiles('**/package.lock.json') }}\n      - run: npm i\n      - run: NEW_USER=$(git show main:contributors.json | jq -r --argjson new \"$(cat contributors.json)\" '. | keys - ($new | keys) | join(\",\")') npm run test\n      - if: always()\n        env:\n          CONTEXT: ${{ toJSON(github) }}\n        run: echo $CONTEXT > data.json\n      - uses: actions/upload-artifact@v2\n        if: always()\n        with:\n          name: ${{ github.run_id }} \n          path: ./data.json\n"
  },
  {
    "path": ".github/workflows/main_deploy.yaml",
    "content": "name: AppDeploy\non:\n  schedule:\n    - cron:  '0 */4 * * *'\n  push:\n    paths:\n      - 'readme-profiles/*.md'\n      - 'src/**'\n      - 'contributors.json'\n    branches:\n      - main\njobs:\n  deploy-app:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v2\n      - name: Build Project\n        uses: actions/setup-node@v1\n        with:\n          node-version: '12'\n      - name: Cache multiple paths\n        uses: actions/cache@v2\n        with:\n          path: |\n            ~/cache\n            !~/cache/exclude\n            **/node_modules\n          key: ${{ runner.os }}-${{ hashFiles('**/package.lock.json') }}\n      - run: npm i\n      - env:\n          GITHUB_TOKEN: ${{ secrets.USER_TOKEN }}\n        run: npm run build\n      - name: Deploy production to Netlify\n        uses: South-Paw/action-netlify-deploy@v1.0.4\n        with:\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n          netlify-auth-token: ${{ secrets.NETLIFY_AUTH_TOKEN }}\n          netlify-site-id: ${{ secrets.NETLIFY_SITE_ID }}\n          build-dir: './public'\n          comment-on-commit: true\n"
  },
  {
    "path": ".github/workflows/staging_deploy.yaml",
    "content": "name: StagingAppDeploy\non:\n  push:\n    branches:\n      - staging\njobs:\n  deploy-app:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v2\n      - name: Build Project\n        uses: actions/setup-node@v1\n        with:\n          node-version: '12'\n      - name: Cache multiple paths\n        uses: actions/cache@v2\n        with:\n          path: |\n            ~/cache\n            !~/cache/exclude\n            **/node_modules\n          key: ${{ runner.os }}-${{ hashFiles('**/package.lock.json') }}\n      - run: npm i\n      - env:\n          GITHUB_TOKEN: ${{ secrets.USER_TOKEN }}\n        run: npm run build\n      - name: Deploy production to Netlify\n        uses: South-Paw/action-netlify-deploy@v1.0.4\n        with:\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n          netlify-auth-token: ${{ secrets.NETLIFY_AUTH_TOKEN }}\n          netlify-site-id: ${{ secrets.NETLIFY_SITE_ID }}\n          build-dir: './public'\n          comment-on-commit: true\n          draft: true\n"
  },
  {
    "path": ".gitignore",
    "content": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n\n# Runtime data\npids\n*.pid\n*.seed\n*.pid.lock\n\n# Directory for instrumented libs generated by jscoverage/JSCover\nlib-cov\n\n# Coverage directory used by tools like istanbul\ncoverage\n\n# nyc test coverage\n.nyc_output\n\n# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)\n.grunt\n\n# Bower dependency directory (https://bower.io/)\nbower_components\n\n# node-waf configuration\n.lock-wscript\n\n# Compiled binary addons (http://nodejs.org/api/addons.html)\nbuild/Release\n\n# Dependency directories\nnode_modules/\njspm_packages/\n\n# Typescript v1 declaration files\ntypings/\n\n# Optional npm cache directory\n.npm\n\n# Optional eslint cache\n.eslintcache\n\n# Optional REPL history\n.node_repl_history\n\n# Output of 'npm pack'\n*.tgz\n\n# dotenv environment variables file\n.env\n\n# gatsby files\n.cache/\npublic/\n\n# Mac files\n.DS_Store\n\n# Yarn\nyarn-error.log\n.pnp/\n.pnp.js\n# Yarn Integrity file\n.yarn-integrity\n\n# Local Netlify folder\n.netlify\n\ncra/*\n\n.idea/*\n\ncommit.sh\n"
  },
  {
    "path": ".nvmrc",
    "content": "v12.4.0\n"
  },
  {
    "path": ".prettierrc",
    "content": "{\n  \"trailingComma\": \"es5\",\n  \"semi\": false,\n  \"singleQuote\": true\n}\n"
  },
  {
    "path": ".version",
    "content": "1.0.0\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# CHANGELOG\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to making participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, sex characteristics, gender identity and expression,\nlevel of experience, education, socio-economic status, nationality, personal\nappearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment\ninclude:\n\n* Using welcoming and inclusive language\n* Being respectful of differing viewpoints and experiences\n* Gracefully accepting constructive criticism\n* Focusing on what is best for the community\n* Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery and unwelcome sexual attention or\n advances\n* Trolling, insulting/derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or electronic\n address, without explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable\nbehavior and are expected to take appropriate and fair corrective action in\nresponse to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or\nreject comments, commits, code, wiki edits, issues, and other contributions\nthat are not aligned to this Code of Conduct, or to ban temporarily or\npermanently any contributor for other behaviors that they deem inappropriate,\nthreatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces\nwhen an individual is representing the project or its community. Examples of\nrepresenting a project or community include using an official project e-mail\naddress, posting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event. Representation of a project may be\nfurther defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by contacting the project team at subeshb1@gmail.com. All\ncomplaints will be reviewed and investigated and will result in a response that\nis deemed necessary and appropriate to the circumstances. The project team is\nobligated to maintain confidentiality with regard to the reporter of an incident.\nFurther details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good\nfaith may face temporary or permanent repercussions as determined by other\nmembers of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,\navailable at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html\n\n[homepage]: https://www.contributor-covenant.org\n\nFor answers to common questions about this code of conduct, see\nhttps://www.contributor-covenant.org/faq\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing to Developer Community stats\n\nWe love contributions! We want to make contributing to this project as easy and friendly as possible, whether it's:\n\n- Beginner PR requests\n- Questions regarding any problems\n- Submitting a fix\n- Proposing new features\n- Becoming a maintainer\n- Suggestions and Feedbacks\n\n## We Develop with Github\n\nWe use github to host code, to track issues and feature requests, as well as accept pull requests.\n\n## We Use [Github Flow](https://guides.github.com/introduction/flow/index.html), So All Code Changes Happen Through Pull Requests\n\nPull requests are the best way to propose changes to the codebase (we use [Github Flow](https://guides.github.com/introduction/flow/index.html)). We actively welcome your pull requests:\n\n1. Fork the repo and create your branch from `master`.\n2. If you've added code that should be tested, add tests.\n3. If you've changed APIs, update the documentation.\n4. Ensure the test suite passes.\n5. Make sure your code lints.\n6. Issue that pull request!\n\n## Any contributions you make will be under the MIT Software License\n\nIn short, when you submit code changes, your submissions are understood to be under the same [MIT License](http://choosealicense.com/licenses/mit/) that covers the project. Feel free to contact the maintainers if that's a concern.\n\n## Contributing to Open issues and Challenges\n\nThe repository consists of Open issues encouraging beginners to take their first step to contribute to Open source. If you have any ideas regarding challenges, suggestions or feedback don't feel hesitant, create some issues.\n\nWhen contributing to an issue be sure to read through the description and follow the steps and make sure all the builds in the PR succeed.\n\nThe most common contribution is adding yourself to `contributors.json`. See issue https://github.com/subeshb1/developer-community-stats/issues/8 on how to add your info and view your Github stats in https://developer-community-stats.netlify.app/.\n\n## Contributing to Core Website\n\nThe core website is built with Gatsby, React and Github Graphql API. Follow the following steps to contribute to the website\n\n```sh\n# Fork the repo\nhttps://github.com/subeshb1/developer-community-stats\n\n# Clone your forked repo\n$ git clone git@github.com:username/developer-community-stats.git\n\n$ npm install\n\n# Create a new branch for you.\n$ git pull origin master # Pull the latest master\n$ git checkout new-branch # Checkout to your new branch\n\n# Start Gatsby mock server\nENV_TYPE=mock gatsby develop\n\n# To start Gatsby server with github token and url expose the following variables\nGITHUB_GRAPHQL_URL=<github_graphql_url>\nGITHUB_TOKEN=<your_personal_access_token>\n\n# Run tests\n$ npm run test\n\n# Commit the changes\n$ git commit -m \"Commit message\"\n\n# Push your changes and\n$ git push\n\n# Make a pull request of your newly changed branch\n[https://github.com/subeshb1/developer-community-stats/compare](https://github.com/username/developer-community-stats/compare)\n```\n"
  },
  {
    "path": "IDEAS.md",
    "content": "# Suggestions or ideas of new features for Developer Community stats\nThis page will collect all the ideas or any suggestions for Developer Community stats\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2020 Subesh\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# 🚀 Developer Community stats\n\n![Contributors](https://img.shields.io/github/contributors/subeshb1/developer-community-stats)\n![Closed PR](https://img.shields.io/github/issues-pr-closed/subeshb1/developer-community-stats)\n![Stars](https://img.shields.io/github/stars/subeshb1/developer-community-stats)\n![License](https://img.shields.io/github/license/subeshb1/developer-community-stats)\n![Issues](https://img.shields.io/github/issues/subeshb1/developer-community-stats)\n![Forks](https://img.shields.io/github/forks/subeshb1/developer-community-stats)\n![Contributor Country](https://img.shields.io/badge/ContributorsCountry-25%2B-red)\n![main-push-deploy-action](https://github.com/subeshb1/developer-community-stats/workflows/main-push-deploy-action/badge.svg)\n\n\nA repository to encourage beginners to contribute to open source and for all contributors to view their Github stats.\n\n![stats](./stats.png)\n\n## Contributing to Developer Community stats\n\n### Contributing to Open issues and Challenges\n\nThe repository consists of Open issues encouraging beginners to take their first step to contribute to Open source. If you have any ideas regarding challenges, suggestions or feedback don't feel hesitant, create some issues.\n\nWhen contributing to an issue be sure to read through the description and follow the steps and make sure all the builds in the PR succeed.\n\nThe most common contribution is adding yourself to `contributors.json`. See issue https://github.com/subeshb1/developer-community-stats/issues/8 on how to add your info and view your Github stats in https://developer-community-stats.netlify.app/.\n\n### Contributing to Core Website\n\nThe core website is built with Gatsby, React and Github Graphql API. Follow the following steps to contribute to the website\n\n```sh\n# Fork the repo\nhttps://github.com/subeshb1/developer-community-stats\n\n# Clone your forked repo\n$ git clone git@github.com:username/developer-community-stats.git\n\n$ npm install\n\n# Create a new branch for you.\n$ git pull origin main # Pull the latest main branch\n$ git checkout -b new-branch # Checkout to your new branch\n\n# Start Gatsby mock server\nENV_TYPE=mock gatsby develop\n\n# To start Gatsby server with github token and url expose the following variables\nGITHUB_GRAPHQL_URL=<github_graphql_url>\nGITHUB_TOKEN=<your_personal_access_token>\n\n# Run tests\n$ npm run test\n\n# Commit the changes\n$ git commit -m \"Commit message\"\n\n# Push your changes and\n$ git push --set-upstream origin new-branch\n\n# Make a pull request of your newly changed branch\n[https://github.com/subeshb1/developer-community-stats/compare](https://github.com/username/developer-community-stats/compare)\n```\n\n### Have some Suggestions or a new Idea?\n\nAdd your idea/suggestion in the `IDEAS.md` file.\n\n## License\n\n[MIT](https://github.com/subeshb1/developer-community-stats/blob/main/LICENSE)\n\n\n## Contributors\n<a href=\"https://github.com/subeshb1/developer-community-stats/graphs/contributors\">\n  <img src=\"https://contributors-img.web.app/image?repo=subeshb1/developer-community-stats\" />\n</a>\n"
  },
  {
    "path": "contributors.json",
    "content": "{\n  \"21Rutam\": {\n    \"country\": \"India\",\n    \"name\": \"Rutam Prita Mishra\"\n  },\n  \"5h0bh4nk\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/shubhank-kulshreshtha-782627190/\",\n    \"name\": \"Shubhank Kulshreshtha\"\n  },\n  \"96RadhikaJadhav\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/radhika-jadhav-297672160/\",\n    \"name\": \"Radhika Jadhav\",\n    \"twitter\": \"https://twitter.com/Radhika47579652/status/1297174421124182016\"\n  },\n  \"AAAliBaba\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/arafat-arman-0207a714a/\",\n    \"name\": \"Arafat Arman\"\n  },\n  \"abhijeetekad\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/abhijeet-ekad-767a691aa/\",\n    \"name\": \"Abhijeet Rohidas Ekad\"\n  },\n  \"Abhikumar98\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/abhishekkumar98/\",\n    \"name\": \"Abhishek Kumar\",\n    \"twitter\": \"https://twitter.com/abhikumar_98\"\n  },\n  \"abhishekpatel946\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/abhishek-patel-700442172/\",\n    \"name\": \"Abhishek Patel\",\n    \"twitter\": \"https://twitter.com/abhishekpatel_0\",\n    \"website\": \"http://www.devabhishek.tech/\"\n  },\n  \"acorson1\": {\n    \"country\": \"United Kingdom\",\n    \"name\": \"Alex Corson\"\n  },\n  \"adhityamurali\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/adhitya-murali/\",\n    \"name\": \"Adhitya Murai\",\n    \"website\": \"https://thatcoffeeeguy.com/\"\n  },\n  \"adibemohamed\": {\n    \"country\": \"Morocco\",\n    \"linkedin\": \"https://www.linkedin.com/in/adibemohamed/\",\n    \"name\": \"Adibe Mohamed\",\n    \"twitter\": \"https://twitter.com/adibe.mohamed\",\n    \"website\": \"https://adibemohamed.herokuapp.com/\"\n  },\n  \"adriantse136\": {\n    \"country\": \"United States\",\n    \"name\": \"Adrian Tse\",\n    \"twitter\": \"https://twitter.com/atomicdragon136\"\n  },\n  \"afonsocarlos\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/carlos-afonso-b66088124/\",\n    \"name\": \"Carlos Afonso\",\n    \"twitter\": \"https://twitter.com/afonsocarlos97\"\n  },\n  \"Ahkam95\": {\n    \"country\": \"Sri Lanka\",\n    \"linkedin\": \"https://www.linkedin.com/in/ahkamnaseek/\",\n    \"name\": \"Ahkam Naseek\",\n    \"twitter\": \"https://twitter.com/mohamedahkam\"\n  },\n  \"AhmadShaaban\": {\n    \"country\": \"Egypt\",\n    \"linkedin\": \"https://www.linkedin.com/in/ahmadshaaban97/\",\n    \"name\": \"Ahmad Shaaban\"\n  },\n  \"aishwaryakore\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/aishwaryakore\",\n    \"name\": \"Aishwarya\"\n  },\n  \"alexdmckee\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/alex-mckee-a5b2aa61/\",\n    \"name\": \"Alex McKee\"\n  },\n  \"alexkimeu0\": {\n    \"country\": \"Kenya\",\n    \"linkedin\": \"https://www.linkedin.com/in/alexkimeu0/\",\n    \"name\": \"Alex Kimeu\",\n    \"twitter\": \"https://twitter.com/alexkimeu0\"\n  },\n  \"alvinuday\": {\n    \"country\": \"India\",\n    \"name\": \"Alvin Adarsh Kumar\"\n  },\n  \"alwayschange\": {\n    \"country\": \"Nigeria\",\n    \"name\": \"Ibrahim Musa\"\n  },\n  \"amirtechnoide\": {\n    \"country\": \"cameroon\",\n    \"linkedin\": \"https://www.linkedin.com/in/amir-toukour-87b2291a1/\",\n    \"name\": \"Amir toukour\"\n  },\n  \"amit14mitra\": {\n    \"country\": \"India\",\n    \"linkedin\": \"www.linkedin.com/in/amit-kumar-mitra-351ba8190/\",\n    \"name\": \"Amit Kumar Mitra\",\n    \"twitter\": \"twitter.com/Amitmitra141\",\n    \"website\": \"https://akm-website.netlify.app/\"\n  },\n  \"amitsgh\": {\n    \"country\": \"India\",\n    \"github\": \"https://github.com/amitsgh\",\n    \"linkedin\": \"https://www.linkedin.com/in/amit-singh-a794131b5/\",\n    \"name\": \"Amit Singh\"\n  },\n  \"Ampit\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/amarpreet-singh-824179a6/\",\n    \"name\": \"Amarpreet Singh\"\n  },\n  \"ana-vela\": {\n    \"country\": \"United States\",\n    \"name\": \"Ana Vela\"\n  },\n  \"anacarolinaarellano\": {\n    \"country\": \"Mexico\",\n    \"linkedin\": \"https://www.linkedin.com/in/carolina-arellano1/\",\n    \"name\": \"Ana Carolina Arellano\",\n    \"website\": \"https://anacarolinaarellano.dev/\"\n  },\n  \"ankit-rawani\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/ankit-r-422192135/\",\n    \"name\": \"Ankit Rawani\"\n  },\n  \"anshika0207\": {\n    \"country\": \"India\",\n    \"name\": \"Anshika Bhatt\"\n  },\n  \"AnshumanMahato\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/anshuman-mahato-15b74b1a9/\",\n    \"name\": \"Anshuman Mahato\"\n  },\n  \"anshutoppo\": {\n    \"country\": \"India\",\n    \"name\": \"Anshu Toppo\"\n  },\n  \"antoniocra04\": {\n    \"country\": \"Russia\",\n    \"linkedin\": \"https://www.linkedin.com/in/anton-ryazanov-7a53101b2/\",\n    \"name\": \"Anton\",\n    \"twitter\": \"https://twitter.com/anton_ryazanov_\",\n    \"website\": \"https://anton-ryazanov.xyz/\"\n  },\n  \"anu-ragi\": {\n    \"country\": \"India\",\n    \"name\": \"Anu Ragi\"\n  },\n  \"aortiz24\": {\n    \"country\": \"United States\",\n    \"name\": \"Andrea Ortiz\"\n  },\n  \"aparnagopalakrishnan432\": {\n    \"country\": \"India\",\n    \"name\": \"Aparna Gopalakrishnan\"\n  },\n  \"Apoorv-Saxena\": {\n    \"country\": \"India\",\n    \"name\": \"Apoorv Saxena\",\n    \"website\": \"https://surviton.ezyro.com/\",\n    \"youtube\": \"https://www.youtube.com/channel/UC4PO0JP-dE5hSaCvsC-Q4Cg\"\n  },\n  \"appukapoor\": {\n    \"country\": \"India\",\n    \"name\": \"Apurva Kapoor\"\n  },\n  \"ares358\": {\n    \"country\": \"India\",\n    \"name\": \"Sunny Kushwaha\"\n  },\n  \"arifinoid\": {\n    \"country\": \"Indonesia\",\n    \"linkedin\": \"https://www.linkedin.com/in/rohmadarifin/\",\n    \"name\": \"Rohmad Arifin\",\n    \"twitter\": \"https://twitter.com/arifinoid\"\n  },\n  \"armsasmart\": {\n    \"country\": \"Thailand\",\n    \"linkedin\": \"https://www.linkedin.com/in/sirawit-arayatrakullikit-5a73821b9/\",\n    \"name\": \"Sirawit Arayatrakullikit\"\n  },\n  \"Arnold-Bundotich\": {\n    \"country\": \"Kenya\",\n    \"linkedin\": \"https://www.linkedin.com/in/arnold-bundotich-7753a5120/\",\n    \"name\": \"Arnold Bundotich\",\n    \"twitter\": \"https://twitter.com/BundotichA\"\n  },\n  \"arturssmirnovs\": {\n    \"country\": \"Latvia\",\n    \"linkedin\": \"https://www.linkedin.com/in/art%C5%ABrs-smirnovs-b6399275/\",\n    \"name\": \"Arturs Smirnovs\",\n    \"twitter\": \"https://twitter.com/artuurssmirnovs\"\n  },\n  \"arung86\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/arun-kumar-govindappa-a6325a10a/\",\n    \"name\": \"Arun Govindappa\",\n    \"twitter\": \"https://twitter.com/govindappaarun\",\n    \"website\": \"\"\n  },\n  \"Ashank16\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/ashank-juyal-b99783188/\",\n    \"name\": \"Ashank Juyal\"\n  },\n  \"Ashlin21dev\": {\n    \"country\": \"India\",\n    \"name\": \"Ashlin Dev\"\n  },\n  \"auxfuse\": {\n    \"country\": \"Ireland\",\n    \"name\": \"Anthony O' Brien\",\n    \"twitter\": \"https://twitter.com/Auxfuse\"\n  },\n  \"aweditya\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/aditya-sriram-192a951a0/\",\n    \"name\": \"Aditya Sriram\"\n  },\n  \"ayansiddiqui007\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/ayaan-siddiqui-2b41451a5/\",\n    \"name\": \"Ayan Siddiqui\"\n  },\n  \"ayoolafelix\": {\n    \"country\": \"Nigeria\",\n    \"linkedin\": \"https://www.linkedin.com/in/felix-ayoola-516ab5165/\",\n    \"name\": \"Felix Ayoola\",\n    \"twitter\": \"twitter.com/ayoolafelix\",\n    \"website\": \"felixayoola.com\"\n  },\n  \"axorax\": {\n    \"country\": \"United States\",\n    \"name\": \"Aayan Abdullah\",\n    \"website\":\"https://axorax.github.io/\"\n  },\n  \"azriakmalk\": {\n    \"country\": \"Indonesia\",\n    \"linkedin\": \"https://www.linkedin.com/in/azri-akmal-kurniawan-b69746100/\",\n    \"name\": \"Azri Akmal\"\n  },\n  \"b2pacific\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/prashant-pandey-3545aa1ab/\",\n    \"name\": \"Prashant Pandey\"\n  },\n  \"baranwal\": {\n    \"country\": \"India\",\n    \"name\": \"Shubham Kumar Baranwal\"\n  },\n  \"bartomiak\": {\n    \"country\": \"Poland\",\n    \"name\": \"Bartosz\"\n  },\n  \"BasilVictor\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/basil-benedict-victor-119706195/\",\n    \"name\": \"Basil Victor\"\n  },\n  \"bensbits91\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/benbrooks/\",\n    \"name\": \"Ben Brooks\",\n    \"website\": \"http://www.nutandem.com/\"\n  },\n  \"bernawastaken\": {\n    \"country\": \"Portugal\",\n    \"name\": \"Bernardo\"\n  },\n  \"BhanukaC\": {\n    \"country\": \"Sri Lanka\",\n    \"linkedin\": \"https://www.linkedin.com/in/bhanukauyanage\",\n    \"name\": \"Bhanuka Uyanage\"\n  },\n  \"bianca-michels-barcelos\": {\n    \"country\": \"United Kingdom\",\n    \"linkedin\": \"https://www.linkedin.com/in/biancamichelsbarcelos/\",\n    \"name\": \"Bianca\",\n    \"twitter\": \"https://twitter.com/Bibs_Michels\"\n  },\n  \"BillGun\": {\n    \"country\": \"Indonesia\",\n    \"linkedin\": \"https://www.linkedin.com/in/billgun/\",\n    \"name\": \"Billy Gunawan\"\n  },\n  \"binismail\": {\n    \"country\": \"Nigeria\",\n    \"name\": \"Khalid Ismail\"\n  },\n  \"blee1710\": {\n    \"country\": \"Australia\",\n    \"linkedin\": \"https://www.linkedin.com/in/brandon-lee-a95b8b1a2/\",\n    \"name\": \"Brandon Lee\",\n    \"website\": \"https://brndnlee.me/\"\n  },\n  \"bojandevic\": {\n    \"country\": \"Bosnia and Herzegovina\",\n    \"linkedin\": \"https://www.linkedin.com/in/bojandevic/\",\n    \"name\": \"Bojan Devic\",\n    \"twitter\": \"https://twitter.com/bojandevic\",\n    \"website\": \"https://bojandevic.com/\"\n  },\n  \"bolu-tife\": {\n    \"country\": \"Nigeria\",\n    \"name\": \"Boluwatife Omosowon\"\n  },\n  \"brianleemcqueen\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/brianmcqueen/\",\n    \"name\": \"Brian McQueen\"\n  },\n  \"bruceyboy86\": {\n    \"country\": \"United Kingdom\",\n    \"linkedin\": \"https://www.linkedin.com/in/bruce-davidson-6a10012b/\",\n    \"name\": \"Bruce Davidson\",\n    \"twitter\": \"https://twitter.com/BruceyBoyD\"\n  },\n  \"brymopo\": {\n    \"country\": \"Colombia\",\n    \"name\": \"Bryan Moreno\"\n  },\n  \"Cap10Kirk\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/quiara-kirkland-659611167/\",\n    \"name\": \"Quiara Kirkland\",\n    \"twitter\": \"https://twitter.com/qrkirk\"\n  },\n  \"carrycooldude\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/kartikey-rawat-02822916a/\",\n    \"name\": \"Kartikey Rawat\",\n    \"twitter\": \"https://twitter.com/kari_rawat\",\n    \"website\": \"https://carrycooldude.github.io/\"\n  },\n  \"catw101\": {\n    \"country\": \"United States\",\n    \"name\": \"Catelen Wu\"\n  },\n  \"cb2609\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/chirayubansal2609/\",\n    \"name\": \"Chirayu Bansal\"\n  },\n  \"Chobocharles\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/charles-napierala/\",\n    \"name\": \"Charles Napierala\"\n  },\n  \"ChristineJ82\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/christinejackson82/\",\n    \"name\": \"Christine Jackson\"\n  },\n  \"claudemuller\": {\n    \"country\": \"South Africa\",\n    \"linkedin\": \"https://www.linkedin.com/in/claudemuller007\",\n    \"name\": \"Claude Müller\",\n    \"twitter\": \"https://twitter.com/Claude_Muller\",\n    \"website\": \"https://claudemuller.io\"\n  },\n  \"Code-hunter-star\": {\n    \"country\": \"India\",\n    \"name\": \"sonu\"\n  },\n  \"conejodan\": {\n    \"country\": \"Mexico\",\n    \"linkedin\": \"https://www.linkedin.com/in/daniel-sanchez-fernandez-16851b119/\",\n    \"name\": \"Daniel Sanchez\"\n  },\n  \"danielaamu12345\": {\n    \"country\": \"Colombia\",\n    \"name\": \"Daniela Amu\"\n  },\n  \"dao-phuong\": {\n    \"country\": \"Vietnam\",\n    \"linkedin\": \"https://www.linkedin.com/in/phuong-dao-duy-6159b7a4/\",\n    \"name\": \"Dao Duy Phuong\"\n  },\n  \"degram\": {\n    \"country\": \"Ukraine\",\n    \"linkedin\": \"https://www.linkedin.com/in/aleksandr-gubin-7482a21b7/\",\n    \"name\": \"Aleksandr Gubin\"\n  },\n  \"devblin\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://linkedin.com/in/devblin\",\n    \"name\": \"Deepanshu Dhruw\",\n    \"website\": \"https://devblin.codes\"\n  },\n  \"Deveshgsk\": {\n    \"country\": \"India\",\n    \"linkedin\": \"linkedin.com/in/devesh-gobind-18a047175\",\n    \"name\": \"Devesh Gobind\",\n    \"website\": \"https://github.com/Deveshgsk\"\n  },\n  \"devonpmack\": {\n    \"country\": \"Canada\",\n    \"linkedin\": \"https://linkedin.com/in/devonpmack\",\n    \"name\": \"Devon Mack\",\n    \"website\": \"https://devonpmack.github.io\"\n  },\n  \"dfrichard\": {\n    \"country\": \"Cameroon\",\n    \"name\": \"Dze Richard\",\n    \"twitter\": \"https://twitter.com/DzeRichard\"\n  },\n  \"dimlaksana\": {\n    \"country\": \"Indonesia\",\n    \"linkedin\": \"https://www.linkedin.com/in/dimas-laksana/\",\n    \"name\": \"Dimas Laksana\",\n    \"twitter\": \"https://twitter.com/dimlaksana\"\n  },\n  \"dipanshubhola1009\": {\n    \"country\": \"India\",\n    \"name\": \"Dipanshu Bhola\"\n  },\n  \"dnrm\": {\n    \"country\": \"Mexico\",\n    \"name\": \"Daniel\",\n    \"twitter\": \"https://twitter.com/dannermm_\",\n    \"website\": \"https://dannermm.com\"\n  },\n  \"DOCTSTR\": {\n    \"country\": \"India\",\n    \"name\": \"Rushiraj Hada\"\n  },\n  \"duptitung\": {\n    \"country\": \"Nepal\",\n    \"name\": \"Dhondup Lama\",\n    \"twitter\": \"https://twitter.com/titungdup\"\n  },\n  \"earle-poole\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/earle-poole/\",\n    \"name\": \"Earle Poole\",\n    \"twitter\": \"https://twitter.com/Eepoole4\"\n  },\n  \"edazpotato\": {\n    \"country\": \"New Zealand\",\n    \"name\": \"Edazpotato\",\n    \"twitter\": \"https://twitter.com/edazpotato\",\n    \"website\": \"https://edazpotato.github.io/\"\n  },\n  \"eitinaa\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/christina-oliveira-dos-santos-613a54158/\",\n    \"name\": \"Tina Oliveira\"\n  },\n  \"eldrige\": {\n    \"country\": \"Cameroon\",\n    \"linkedin\": \"https://www.linkedin.com/in/prince-eldrige-9b64881b2/\",\n    \"name\": \"Apoh Prince Eldrige\",\n    \"twitter\": \"https://twitter.com/Apoh68673473\",\n    \"website\": \"https://eldrige.github.io/Portfolio/\"\n  },\n  \"elinaDangol\": {\n    \"country\": \"Nepal\",\n    \"linkedin\": \"https://www.linkedin.com/in/elina-dangol-732a94157/\",\n    \"name\": \"Elina Dangol\",\n    \"twitter\": \"https://twitter.com/eDangol901\",\n    \"website\": \"https://www.quora.com/q/abettercommunity\"\n  },\n  \"Elisecroft\": {\n    \"country\": \"France\",\n    \"name\": \"Elise Guezel\"\n  },\n  \"EmeraldEntities\": {\n    \"country\": \"Canada\",\n    \"name\": \"Joseph Wang\"\n  },\n  \"engrrbilal\": {\n    \"country\": \"Pakistan\",\n    \"linkedin\": \"https://www.linkedin.com/in/engineermuhammadbilal/\",\n    \"name\": \"Muhammad Bilal\"\n  },\n  \"evertonrbraga\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/evertonrbraga/\",\n    \"name\": \"Everton Braga\"\n  },\n  \"faisaljamil25\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/faisaljamil25/\",\n    \"name\": \"Faisal Jamil\"\n  },\n  \"fangstar\": {\n    \"country\": \"USA\",\n    \"name\": \"Mitchell Fang\"\n  },\n  \"FavourOyewumi7\": {\n    \"country\": \"Nigeria\",\n    \"name\": \"Oyewumi Favour\",\n    \"twitter\": \"https://twitter.com/ayomideif\"\n  },\n  \"femakin\": {\n    \"country\": \"Nigeria\",\n    \"linkedin\": \"https://www.linkedin.com/in/oluwafemi-tosin-akinyemi-6b028270/\",\n    \"name\": \"Femi Akinyemi\",\n    \"twitter\": \"https://twitter.com/akinyemi_t\"\n  },\n  \"fgiuliani\": {\n    \"country\": \"Argentina\",\n    \"linkedin\": \"https://www.linkedin.com/in/facundogiuliani/\",\n    \"name\": \"Facundo Giuliani\",\n    \"twitter\": \"https://twitter.com/facundozurdo\"\n  },\n  \"Gaurab4\": {\n    \"country\": \"India\",\n    \"name\": \"Gaurab\"\n  },\n  \"gauravbisht005\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/gauravbisht005\",\n    \"name\": \"Gaurav Bisht\",\n    \"twitter\": \"https://www.twitter.com/Jarvis_Me\"\n  },\n  \"gauravgutholia\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/gaurav-gutholia-25615a1a1/\",\n    \"name\": \"Gaurav Gutholia\"\n  },\n  \"ghanender-chauhan\": {\n    \"country\": \"India\",\n    \"name\": \"Ghanender Chauhan\"\n  },\n  \"gisabernardess\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/gisabernardess/\",\n    \"name\": \"Gisele Bernardes\",\n    \"twitter\": \"https://twitter.com/gisabernardess\"\n  },\n  \"guberlo\": {\n    \"country\": \"Italy\",\n    \"name\": \"Salvo Asero\",\n    \"twitter\": \"https://twitter.com/SalvoAsero/\"\n  },\n  \"guijacobus2\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/guilherme-jacobus-379485158/\",\n    \"name\": \"Guilherme Jacobus\"\n  },\n  \"hambali999\": {\n    \"country\": \"Singapore\",\n    \"linkedin\": \"https://www.linkedin.com/in/nur-hambali-064126131/\",\n    \"name\": \"Nur Hambali\"\n  },\n  \"Hamza-Slama\": {\n    \"country\": \"Tunisia\",\n    \"linkedin\": \"https://www.linkedin.com/in/hamza-slama-/\",\n    \"name\": \"Hamza Slama\",\n    \"twitter\": \"https://twitter.com/hamzaslama2\"\n  },\n  \"hardik7e\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/sensei9717/\",\n    \"name\": \"Hardik Singh\"\n  },\n  \"hasna-akbarali\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/hasna-akbar-ali-1485981b0/\",\n    \"name\": \"Hasna Akbar Ali\"\n  },\n  \"HellSingCoder\": {\n    \"country\": \"Ireland\",\n    \"linkedin\": \"https://www.linkedin.com/in/pellegrinosimone/\",\n    \"name\": \"Simone Pellegrino\",\n    \"website\": \"https://www.simonepellegrino.com/\"\n  },\n  \"hhelenxu\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/helenzxu/\",\n    \"name\": \"Helen Xu\"\n  },\n  \"hilbug\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/hferraro/\",\n    \"name\": \"Hilary Ferraro\",\n    \"twitter\": \"https://twitter.com/HilbugCodes\",\n    \"website\": \"https://hilbug.github.io/\"\n  },\n  \"himanshu1603\": {\n    \"country\": \"India\",\n    \"name\": \"Himanshu Singh\",\n    \"twitter\": \"https://twitter.com/himanshu30ber\"\n  },\n  \"himanshu2408\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/himanshu-s/\",\n    \"name\": \"Himanshu Singh\"\n  },\n  \"hinsxd\": {\n    \"country\": \"Hong Kong\",\n    \"name\": \"Alvin Li\",\n    \"website\": \"https://hinsxd.dev/\"\n  },\n  \"honorezemagho\": {\n    \"country\": \"Cameroon\",\n    \"linkedin\": \"https://www.linkedin.com/in/honorezemagho\",\n    \"name\": \"ZEMAGHO KALONG EUGENE HONORE\"\n  },\n  \"hu-qi\": {\n    \"country\": \"China\",\n    \"linkedin\": \"https://www.linkedin.com/in/琦-胡-26bb34a1/\",\n    \"name\": \"胡琦\",\n    \"twitter\": \"https://twitter.com/huqii\",\n    \"website\": \"https://www.fashaoge.com\"\n  },\n  \"iamgiribabu\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/giribabu-anisetti-208863154/\",\n    \"name\": \"Giribabu\",\n    \"twitter\": \"https://twitter.com/giri_anisetti\"\n  },\n  \"iampk94\": {\n    \"country\": \"India\",\n    \"name\": \"Pradheep Kumar\"\n  },\n  \"idacioDad\": {\n    \"country\": \"Mozambique\",\n    \"linkedin\": \"https://www.linkedin.com/in/id%C3%A1cio-zibia/\",\n    \"name\": \"Idácio Zibia\",\n    \"twitter\": \"https://twitter.com/idacio_dad\"\n  },\n  \"improbably\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/david6fox/\",\n    \"name\": \"Fox Radosevich\",\n    \"twitter\": \"https://twitter.com/OnlyImprobable\"\n  },\n  \"ipapast\": {\n    \"country\": \"United Kingdom\",\n    \"name\": \"Iliana\"\n  },\n  \"isabellabond\": {\n    \"country\": \"United States\",\n    \"name\": \"Isabella Bond\",\n    \"twitter\": \"https://twitter.com/ibond713\"\n  },\n  \"ishantsingla18\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/ishant-singla-361026191/\",\n    \"name\": \"Ishant Singla\"\n  },\n  \"J3ffJessie\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"http://linkedin.com/in/jeff-jessie-4b2323a9\",\n    \"name\": \"Jeff Jessie\",\n    \"twitter\": \"https://twitter.com/j3ffjessie\"\n  },\n  \"jackHedaya\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/jack-hedaya-439801192/\",\n    \"name\": \"Jack Hedaya\"\n  },\n  \"jakolax\": {\n    \"country\": \"Netherlands\",\n    \"name\": \"Jan Carlo\"\n  },\n  \"jamesmulligan\": {\n    \"country\": \"Ireland\",\n    \"name\": \"James Mulligan\"\n  },\n  \"Janitham97\": {\n    \"country\": \"Sri lanka\",\n    \"name\": \"Janitha Missaka\"\n  },\n  \"japnit01\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/japnit-singh-1500561ab/\",\n    \"name\": \"Japnit Singh\"\n  },\n  \"JayZeeXx\": {\n    \"country\": \"USA\",\n    \"name\": \"Rahul Remany\"\n  },\n  \"jboullianne\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/jean-marc-boullianne-aa3a9787/\",\n    \"name\": \"Jean-Marc Boullianne\",\n    \"twitter\": \"https://twitter.com/TrailingClosure\",\n    \"website\": \"https://trailingclosure.com/\"\n  },\n  \"jelmergu\": {\n    \"country\": \"Netherlands\",\n    \"name\": \"Jelmer Wijnja\",\n    \"website\": \"http://jelmerwijnja.nl\"\n  },\n  \"jhonatanbeltran\": {\n    \"country\": \"Colombia\",\n    \"linkedin\": \"https://www.linkedin.com/in/jhonatan-beltran-834234b7/\",\n    \"name\": \"Jhonatan Beltran\"\n  },\n  \"jimlynx\": {\n    \"country\": \"Ireland\",\n    \"name\": \"Jim Morel\"\n  },\n  \"jkrantz\": {\n    \"country\": \"United States\",\n    \"name\": \"Jeff Krantz\",\n    \"twitter\": \"https://twitter.com/JKrantz\"\n  },\n  \"Joblyn\": {\n    \"country\": \"Nigeria\",\n    \"linkedin\": \"https://www.linkedin.com/in/job-oaikhenah-5056111a1/\",\n    \"name\": \"Job Oaikhenah\",\n    \"twitter\": \"https://twitter.com/_Joblyn_\",\n    \"website\": \"https://www.job-oaikhenah.netlify.app\"\n  },\n  \"joharikushagra\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/kushagra-johari-707183191/\",\n    \"name\": \"Kushagra Johari\",\n    \"website\": \"https://mrweber.netlify.app/\"\n  },\n  \"jonathanvanhaaften\": {\n    \"country\": \"Canada\",\n    \"name\": \"Jonathan Vanhaaften\"\n  },\n  \"julioalfian\": {\n    \"country\": \"Indonesia\",\n    \"linkedin\": \"https://www.linkedin.com/in/julioalfian/\",\n    \"name\": \"Julio Alfian Dwicahya\"\n  },\n  \"juliusnguyen\": {\n    \"country\": \"Germany\",\n    \"name\": \"Julius Reischauer\"\n  },\n  \"kanchanachathuranga\": {\n    \"country\": \"Sri Lanka\",\n    \"name\": \"Kanchana Chathuranga\"\n  },\n  \"kannupriyasingh\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/kannu-priya-4a38b0157\",\n    \"name\": \"Kannu Priya\",\n    \"twitter\": \"https://twitter.com/impriya_kannu?s=09\"\n  },\n  \"kaushikisinha\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/kaushiki-sinha-b52853183/\",\n    \"name\": \"Kaushiki Sinha\",\n    \"twitter\": \"https://twitter.com/KAUSHIKI_SINHA_\",\n    \"website\": \"kaushikisinha06.github.io\"\n  },\n  \"keiteo\": {\n    \"country\": \"Singapore\",\n    \"linkedin\": \"https://www.linkedin.com/in/keiteo/\",\n    \"name\": \"Keith Teo\"\n  },\n  \"KGene1901\": {\n    \"country\": \"Malaysia\",\n    \"linkedin\": \"https://www.linkedin.com/in/kah-gene-leong-73500b196/\",\n    \"name\": \"Kah Gene Leong\"\n  },\n  \"khandelwal20sid\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/siddharth-khandelwal-980992173/\",\n    \"name\": \"Siddharth Khandelwal\"\n  },\n  \"kikit0106\": {\n    \"country\": \"Indonesia\",\n    \"linkedin\": \"https://www.linkedin.com/in/pikiring-wh/\",\n    \"name\": \"Pikiring Waskitha\"\n  },\n  \"kimcore\": {\n    \"country\": \"Korea, Republic of South Korea\",\n    \"name\": \"Kim Tae Wan\"\n  },\n  \"Kiralinn\": {\n    \"country\": \"Netherlands\",\n    \"name\": \"Kyara van Putten\"\n  },\n  \"km4\": {\n    \"country\": \"Poland\",\n    \"name\": \"Karol Milewski\"\n  },\n  \"KMuthusamyms\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/muthusamyms/\",\n    \"name\": \"Muthusamy K\",\n    \"twitter\": \"https://twitter.com/k_muthusamyms\",\n    \"website\": \"https://kmuthusamyms.github.io/\"\n  },\n  \"kodekin\": {\n    \"country\": \"Kenya\",\n    \"linkedin\": \"https://www.linkedin.com/in/thomas-mwaka-9bb947ba/\",\n    \"name\": \"Thomas Mwaka\"\n  },\n  \"kontesanjana\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/sanjana-konte-3646441a5/\",\n    \"name\": \"konte sanjana\"\n  },\n  \"kree666\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/emily-basile-03427312a/\",\n    \"name\": \"Emily Basile\"\n  },\n  \"Kritimakaushal\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/kritima-kaushal-41918519a\",\n    \"name\": \"Kritima Kaushal\",\n    \"twitter\": \"https://twitter.com/KritimaKaushal\"\n  },\n  \"ksvkabra\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/ksvkabra\",\n    \"name\": \"Keshav Kabra\"\n  },\n  \"kumarisurbhi\": {\n    \"country\": \"India\",\n    \"Linkedin\": \"https://www.linkedin.com/in/surbhi-kumari-18aa8b152/\",\n    \"name\": \"Surbhi Kumari\",\n    \"twitter\": \"https://twitter.com/SurbhiK79202217\"\n  },\n  \"KushalBhanot\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/kushalbhanot/\",\n    \"name\": \"Kushal Bhanot\",\n    \"twitter\": \"https://twitter.com/bhanot_kushal\",\n    \"website\": \"https://kushalbhanot.github.io/\"\n  },\n  \"lacrosse91\": {\n    \"country\": \"Japan\",\n    \"name\": \"Shoichiro Kawauchi\"\n  },\n  \"laeleoni\": {\n    \"country\": \"France\",\n    \"name\": \"Laetitia Leoni\"\n  },\n  \"LeGnaice\": {\n    \"country\": \"Portugal\",\n    \"linkedin\": \"https://www.linkedin.com/in/joao-carreira-azevedo/\",\n    \"name\": \"João Azevedo\"\n  },\n  \"LemonPlug\": {\n    \"country\": \"Philippines\",\n    \"name\": \"Iridescent Lemon\"\n  },\n  \"LeoAlvarenga\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/leonardo-alvarenga-035a52104/\",\n    \"name\": \"Leonardo Alvarenga\"\n  },\n  \"LeonardoRoccaH\": {\n    \"country\": \"Mexico\",\n    \"name\": \"Leonardo Rocca Herrera\",\n    \"twitter\": \"https://twitter.com/leo_rocca3\"\n  },\n  \"levi-pires\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/levi-pires-5a74331a6/\",\n    \"name\": \"Levi Pires\"\n  },\n  \"lillapulay\": {\n    \"country\": \"Netherlands\",\n    \"name\": \"Lilla Pulay\"\n  },\n  \"lindarama\": {\n    \"country\": \"Indonesia\",\n    \"name\": \"Linda Ramadhani\"\n  },\n  \"Lontchi12\": {\n    \"country\": \"Cameroon\",\n    \"linkedin\": \"https://www.linkedin.com/in/lontchi-lionelle-6a887715b\",\n    \"name\": \"Kamthie Lontchi Lionelle\"\n  },\n  \"lsomacruzl\": {\n    \"country\": \"Colombia\",\n    \"name\": \"Andres\"\n  },\n  \"lucas-c9\": {\n    \"country\": \"Argentina\",\n    \"linkedin\": \"https://www.linkedin.com/in/lucascortesramirez/\",\n    \"name\": \"Lucas Cortés\"\n  },\n  \"luhcasgabriel\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/luhcasgabriel/\",\n    \"name\": \"Lucas Gabriel\"\n  },\n  \"lvmenezes\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/lucas-victor-s-menezes-4212b285/\",\n    \"name\": \"Lucas Menezes\"\n  },\n  \"madhav1928\": {\n    \"country\": \"India\",\n    \"Linkedin\": \"https://www.linkedin.com/in/dadimadhav/\",\n    \"name\": \"Dadi Bindu Madhav\"\n  },\n  \"maeeast\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/jennifermmaher/\",\n    \"name\": \"Jenn Maher\",\n    \"twitter\": \"https://twitter.com/Mae_East\",\n    \"website\": \"https://jennifermaher.me/\"\n  },\n  \"MAHIMA01\": {\n    \"country\": \"India\",\n    \"name\": \"Mahima\"\n  },\n  \"Malvika18\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/malvikabhargava18/\",\n    \"name\": \"Malvika Bhargava\"\n  },\n  \"mani-rsg\": {\n    \"country\": \"India\",\n    \"name\": \"Manigandan Ravi\"\n  },\n  \"MannanAhmad\": {\n    \"blog\": \"https://gyanwithmannan.blogspot.com\",\n    \"country\": \"India\",\n    \"Linkedin\": \"https://www.linkedin.com/in/gyanwithmannan/\",\n    \"name\": \"Sayed Mannan Ahmad\",\n    \"website\": \"https://memannan.cf\"\n  },\n  \"manojhebbani\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/manojhebbani/\",\n    \"name\": \"Manoj Kumar H V\"\n  },\n  \"MasterBrian99\": {\n    \"country\": \"Sri Lanka\",\n    \"linkedin\": \"https://www.linkedin.com/in/pasindu-p-konghawaththa-3808861a0/\",\n    \"name\": \"Pasindu P Konghawaththa\",\n    \"twitter\": \"https://twitter.com/Master_br1an\"\n  },\n  \"Mathur777\": {\n    \"country\": \"India\",\n    \"name\": \"Sumit\"\n  },\n  \"Matthewaustinbell\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/matthewaustinbell/\",\n    \"name\": \"Matt Bell\"\n  },\n  \"mccarthykp\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/mccarki/\",\n    \"name\": \"Kevin McCarthy\"\n  },\n  \"mctraore\": {\n    \"country\": \"United States\",\n    \"name\": \"Marie-Claire\",\n    \"twitter\": \"https://www.twitter.com/mctraore\"\n  },\n  \"mdb1710\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/michael-d-bonner/\",\n    \"name\": \"Michael Bonner\",\n    \"twitter\": \"https://twitter.com/codebymdb\",\n    \"website\": \"https://codebymdb.com/\"\n  },\n  \"mehrapi\": {\n    \"country\": \"Germany\",\n    \"linkedin\": \"https://www.linkedin.com/in/sylviacims/\",\n    \"name\": \"Mehrapi\",\n    \"twitter\": \"https://twitter.com/mehrapi\",\n    \"website\": \"https://mehrapi.github.io/\"\n  },\n  \"missym2\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/missymaloney/\",\n    \"name\": \"Missy Maloney\",\n    \"website\": \"http://missymaloney1.com\"\n  },\n  \"Mogakamo\": {\n    \"country\": \"Kenya\",\n    \"linkedin\": \"www.linkedin.com/in/amos-mogaka-3514aa1a2\",\n    \"name\": \"Mogaka Amos N\",\n    \"twitter\": \"https://twitter.com/m_ogakadev\"\n  },\n  \"mohammadanang\": {\n    \"country\": \"Indonesia\",\n    \"linkedin\": \"https://www.linkedin.com/in/anangm182\",\n    \"name\": \"Mohammad Anang\",\n    \"twitter\": \"https://twitter.com/anangm182\"\n  },\n  \"mohammedaz33m\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/mohammed-azeem78/\",\n    \"name\": \"Mohammed Azeem\",\n    \"twitter\": \"https://twitter.com/Mohammed_Azeem_\"\n  },\n  \"mohanedashraf\": {\n    \"country\": \"Egypt\",\n    \"linkedin\": \"https://www.linkedin.com/in/mohanedashraf\",\n    \"name\": \"Mohaned Ashraf\",\n    \"twitter\": \"https://twitter.com/Mohanedzz\"\n  },\n  \"mohdimran001\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/mohdimran001/\",\n    \"name\": \"Mohd Imran\",\n    \"twitter\": \"https://twitter.com/MohdImran05\"\n  },\n  \"mohprilaksono\": {\n    \"country\": \"Indonesia\",\n    \"linkedin\": \"https://www.linkedin.com/in/moh-prilaksono-67b119198/\",\n    \"name\": \"Moh Prilaksono\",\n    \"twitter\": \"https://twitter.com/MohPrilaksono\"\n  },\n  \"mohsin-code\": {\n    \"country\": \"Pakistan\",\n    \"name\": \"Mohsin Shah\",\n    \"website\": \"https://mohsin-code.github.io/\"\n  },\n  \"moisesjsalmeida\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/moisesjsalmeida/\",\n    \"name\": \"Moisés Almeida\"\n  },\n  \"molleer\": {\n    \"country\": \"Sweden\",\n    \"linkedin\": \"https://www.linkedin.com/in/damoller\",\n    \"name\": \"David Möller\"\n  },\n  \"Mr-emeka\": {\n    \"country\": \"Nigeria\",\n    \"linkedin\": \"https://www.linkedin.com/in/chukwuemeka-ukpai-7232571a1/\",\n    \"name\": \"Ukpai Chukwuemeka\"\n  },\n  \"Mr-garg\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/satyamgrg/\",\n    \"name\": \"Satyam Garg\",\n    \"twitter\": \"https://twitter.com/satyamgarg000\"\n  },\n  \"Mre11i0t\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/pavan-karthick-m-4a712a139/\",\n    \"name\": \"Pavan Karthick M\",\n    \"twitter\": \"https://twitter.com/e11i0t_\"\n  },\n  \"msriaz\": {\n    \"country\": \"Pakistan\",\n    \"linkedin\": \"https://www.linkedin.com/in/muhammad-shoaib-riaz-a175594b/\",\n    \"name\": \"Muhammad Shoaib Riaz\"\n  },\n  \"Mugilan-Codes\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/mugilan-codes/\",\n    \"name\": \"Mugilan E.S.\",\n    \"twitter\": \"https://twitter.com/MugilanCodes\"\n  },\n  \"mustafamasvi\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/mustafamasvi/\",\n    \"name\": \"Mustafa Masvi\",\n    \"twitter\": \"https://twitter.com/mustafamasvi\",\n    \"website\": \"http://mustafamasvi.com\"\n  },\n  \"namchaunguyen\": {\n    \"country\": \"Canada\",\n    \"name\": \"NamChau Nguyen\"\n  },\n  \"namita2310\": {\n    \"country\": \"India\",\n    \"linkedin\": \"NA\",\n    \"name\": \"Namita Shetty\"\n  },\n  \"namruthahari\": {\n    \"country\": \"India\",\n    \"name\": \"Namrutha\"\n  },\n  \"narenbakshi97\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/naren-bakshi/\",\n    \"name\": \"Naren Bakshi\",\n    \"twitter\": \"https://twitter.com/narenbakshi97\",\n    \"website\": \"https://narenbakshi97.github.io/naren/\"\n  },\n  \"NathanPickard\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/nathanpickard/\",\n    \"name\": \"Nathan Pickard\",\n    \"twitter\": \"https://twitter.com/NathanPickard\"\n  },\n  \"nicholasbus\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/nicholas-smith-b9a02918b/\",\n    \"name\": \"Nicholas Smith\",\n    \"twitter\": \"https://twitter.com/NicholasSbus\",\n    \"website\": \"http://www.smithdev.us\"\n  },\n  \"nikhilm2302\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/nikhil-mehta-936283115\",\n    \"name\": \"Nikhil Mehta\"\n  },\n  \"nikolas-haug\": {\n    \"country\": \"United States\",\n    \"name\": \"Nikolas Haug\",\n    \"website\": \"https://nikolashaug.com\"\n  },\n  \"nisargpawade\": {\n    \"country\": \"India\",\n    \"name\": \"Nisarg Pawade\"\n  },\n  \"nitch193\": {\n    \"country\": \"India\",\n    \"name\": \"Nitesh Kumar\"\n  },\n  \"noksenberg\": {\n    \"country\": \"Chile\",\n    \"name\": \"Niv Oksenberg\"\n  },\n  \"Nyd3lig\": {\n    \"country\": \"Norway\",\n    \"name\": \"Dines Larsen\"\n  },\n  \"oli799\": {\n    \"country\": \"Hungary\",\n    \"name\": \"Oliver Reider\"\n  },\n  \"OmkarGeedh\": {\n    \"country\": \"India\",\n    \"name\": \"Omkar Geedh\"\n  },\n  \"oshadeegangangana\": {\n    \"country\": \"Sri Lanka\",\n    \"linkedin\": \"https://www.linkedin.com/in/oshadeegangangana/\",\n    \"name\": \"Oshadee Gangangana\"\n  },\n  \"oshka\": {\n    \"country\": \"Ukraine\",\n    \"name\": \"oshka\"\n  },\n  \"Ousainu\": {\n    \"country\": \"United States\",\n    \"name\": \"Ousainu Jabbi\"\n  },\n  \"P-N-C\": {\n    \"country\": \"Brazil\",\n    \"name\": \"Pedro Nogueira Coutinho\"\n  },\n  \"PankajGupta\": {\n    \"country\": \"India\",\n    \"name\": \"Pankaj Gupta \"\n  },\n  \"panvicka\": {\n    \"country\": \"Czech Republic\",\n    \"name\": \"Ren Dlik\",\n    \"twitter\": \"https://twitter.com/panvicka\"\n  },\n  \"PAPADOXIE\": {\n    \"country\": \"Pakistan\",\n    \"name\": \"Nofil Qasim\",\n    \"twitter\": \"https://twitter.com/nofilq\"\n  },\n  \"paraggoyal28\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://twitter.com/ParagKumarGoya1\",\n    \"name\": \"Parag Kumar Goyal\",\n    \"twitter\": \"https://www.linkedin.com/in/parag-kumar-goyal-2483bb118/\",\n    \"website\": \"https://paraggoyal28.github.io/\"\n  },\n  \"ParanoidWolf\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/p-h-aju-42032915a/\",\n    \"name\": \"Aju\"\n  },\n  \"parrotstone\": {\n    \"country\": \"Egypt\",\n    \"linkedin\": \"https://www.linkedin.com/in/abdulrahman-ali/\",\n    \"name\": \"Abdulrahman Ali\",\n    \"twitter\": \"https://www.twitter.com/abdoalihuss\"\n  },\n  \"parryk303\": {\n    \"country\": \"United States\",\n    \"name\": \"Kyle\"\n  },\n  \"Patea4\": {\n    \"country\": \"Brazil\",\n    \"name\": \"Luis\"\n  },\n  \"pbharathreddy\": {\n    \"country\": \"United States\",\n    \"name\": \"Bharath Reddy\"\n  },\n  \"Pesehr\": {\n    \"country\": \"Canada\",\n    \"linkedin\": \"https://www.linkedin.com/in/pesehr\",\n    \"name\": \"Sepehr\",\n    \"website\": \"http://pesehr.codes/\"\n  },\n  \"pham-jen\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/jennifer-pham-596188185/\",\n    \"name\": \"Jennifer Pham\"\n  },\n  \"Pharcside\": {\n    \"country\": \"United States\",\n    \"name\": \"Brian Corbett\"\n  },\n  \"philip-hobobo\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/philip-hobobo-287623a7/\",\n    \"name\": \"Philip Hobobo\",\n    \"twitter\": \"https://twitter.com/PhilOh_K\",\n    \"website\": \"https://gentle-cove-45249.herokuapp.com/\"\n  },\n  \"pkspyder007\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/praveen-kumar-8512b4189/\",\n    \"name\": \"Praveen Kumar\",\n    \"website\": \"http://thejsguy.me/\"\n  },\n  \"pooja2299\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/pooja-yadav-b537181a7/\",\n    \"name\": \"Pooja Yadav\"\n  },\n  \"potter1024\": {\n    \"country\": \"India\",\n    \"linkedin\": \"http://www.linkedin.com/in/potter1024\",\n    \"name\": \"Rishab Kumar\"\n  },\n  \"prabhat34\": {\n    \"country\": \"India\",\n    \"name\": \"Prabhat kumar singh\"\n  },\n  \"prachivishnoi27\": {\n    \"country\": \"India\",\n    \"linkedin\": \"http://linkedin.com/in/prachivishnoi27\",\n    \"name\": \"Prachi Vishnoi\"\n  },\n  \"pradnyavk\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/pradnyakatigar\",\n    \"name\": \"Pradnya Katigar\"\n  },\n  \"prajnakalpa\": {\n    \"country\": \"India\",\n    \"name\": \"Prajnakalpa Mishra\"\n  },\n  \"PranayK-666\": {\n    \"country\": \"India\",\n    \"name\": \"Pranay Khosla\"\n  },\n  \"pranshumaheshwari\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/pranshu-m-59074297/\",\n    \"name\": \"Pranshu Maheshwari\"\n  },\n  \"prateekcode\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/pratiekray/\",\n    \"name\": \"Prateek\",\n    \"twitter\": \"https://twitter.com/pratiekray\"\n  },\n  \"Pratikzzz\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/pratik-gupta-4495a282/\",\n    \"name\": \"Pratik Gupta\"\n  },\n  \"prayas26\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/prayas26/\",\n    \"name\": \"Prayas Mittal\",\n    \"twitter\": \"https://www.twitter.com/prayas26\",\n    \"website\": \"https://prayasmittal.com\"\n  },\n  \"prsttn\": {\n    \"country\": \"Iran\",\n    \"linkedin\": \"www.linkedin.com/in/parastoo-taleiniya-ba0378140\",\n    \"name\": \"Parastoo Taleiniya\"\n  },\n  \"Quattro04\": {\n    \"country\": \"Slovenia\",\n    \"linkedin\": \"https://www.linkedin.com/in/matija-jeras/\",\n    \"name\": \"Matija Jeras\"\n  },\n  \"raghavg27\": {\n    \"country\": \"India\",\n    \"name\": \"Raghav Gupta\"\n  },\n  \"raj5036\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/rajkarmakar97/\",\n    \"name\": \"Raj Karmakar\",\n    \"twitter\": \"https://twitter.com/RajKarm42837213\",\n    \"website\": \"https://raj5036.github.io/portfolio/dist/\"\n  },\n  \"RajeshNathani\": {\n    \"country\": \"India\",\n    \"name\": \"Rajesh Nathani\",\n    \"website\": \"http://rajeshnathani.co\"\n  },\n  \"RajivSah\": {\n    \"country\": \"Nepal\",\n    \"name\": \"Rajiv Sah\"\n  },\n  \"RanulND\": {\n    \"country\": \"Sri Lanka\",\n    \"name\": \"Ranul Navojith Dayarathne\"\n  },\n  \"Raptor-Dev97\": {\n    \"country\": \"India\",\n    \"name\": \"Raptosh DEB\"\n  },\n  \"RAYogeshwaran\": {\n    \"country\": \"India\",\n    \"name\": \"Yogeshwaran\"\n  },\n  \"RebaiAhmed\": {\n    \"country\": \"Tunisia\",\n    \"linkedin\": \"https://www.linkedin.com/in/rebaiahmed/\",\n    \"name\": \"Rebai Ahmed\",\n    \"twitter\": \"https://twitter.com/RebaiAhmed_\",\n    \"website\": \"https://rebaiahmed.github.io\"\n  },\n  \"Renato1478\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/renato-peres-401137179/\",\n    \"name\": \"Renato Peres de Souza\"\n  },\n  \"Renda02\": {\n    \"country\": \"Spain\",\n    \"linkedin\": \"https://www.linkedin.com/in/rendani-luvhengo/\",\n    \"name\": \"Rendani Sandra Luvhengo\",\n    \"twitter\": \"https://twitter.com/rendani18824096/\"\n  },\n  \"reshma-avvaru\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/reshma-avvaru\",\n    \"name\": \"Reshma Avvaru\"\n  },\n  \"rexdivakar\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/divakar-r-9b34b86b/\",\n    \"name\": \"Divakar\"\n  },\n  \"RFormigao\": {\n    \"country\": \"Brazil\",\n    \"linkedin\": \"https://www.linkedin.com/in/rformigaogomes/\",\n    \"name\": \"Robson Formigão\",\n    \"twitter\": \"https://twitter.com/RobsonFormigao\",\n    \"website\": \"https://rformigao.github.io/\"\n  },\n  \"rifafatima\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/rifa-fatima-70b6681b4\",\n    \"name\": \"Rifa Fatima\"\n  },\n  \"riyajain2\": {\n    \"country\": \"India\",\n    \"name\": \"Riya Jain\"\n  },\n  \"Riyana6\": {\n    \"country\": \"Sri lanka\",\n    \"name\": \"Jeema Riyana\"\n  },\n  \"RohanTheProgrammer\": {\n    \"country\": \"India\",\n    \"name\": \"Dhruv Anand\"\n  },\n  \"Ronal2do\": {\n    \"country\": \"Netherlands\",\n    \"linkedin\": \"https://www.linkedin.com/in/ronal2do/\",\n    \"name\": \"Ronaldo Lima\",\n    \"twitter\": \"https://twitter.com/_2d_lima\"\n  },\n  \"ronlaniado\": {\n    \"country\": \"United States\",\n    \"name\": \"Ron Laniado\"\n  },\n  \"rukundo-kevin\": {\n    \"country\": \"Rwanda\",\n    \"name\": \"Rukundo Kevin\",\n    \"linkedin\": \"www.linkedin.com/in/rukundokevin\",\n    \"twitter\": \"https://twitter.com/rukundokevin_\",\n    \"website\":\"http://www.rukundokevin.codes/\"\n  },\n  \"RuteshRathod\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/ruteshrathod/\",\n    \"name\": \"Rutesh Rathod\",\n    \"twitter\": \"https://twitter.com/RuteshRathod\"\n  },\n  \"ruthiel\": {\n    \"country\": \"Portugal\",\n    \"linkedin\": \"https://www.linkedin.com/in/ruthiel-t-b8735b113//\",\n    \"name\": \"Ruthiel Trevisan\",\n    \"twitter\": \"https://twitter.com/tofucru\"\n  },\n  \"rzadev\": {\n    \"country\": \"Indonesia\",\n    \"linkedin\": \"https://www.linkedin.com/in/rezadev/\",\n    \"name\": \"Mohammad Reza\",\n    \"twitter\": \"https://twitter.com/rza9001\",\n    \"website\": \"https://rzadev.github.io/work.html\"\n  },\n  \"sadathshariff\": {\n    \"country\": \"India\",\n    \"name\": \"Sadathulla Shariff\"\n  },\n  \"sagarpandyansit\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/sagar-pandya-nsit/\",\n    \"name\": \"Sagar Pandya\",\n    \"website\": \"http://sagarpandyansit.github.io/\"\n  },\n  \"sagarrajput\": {\n    \"country\": \"India\",\n    \"name\": \"Sagar Rajput\"\n  },\n  \"saileshbro\": {\n    \"country\": \"Nepal\",\n    \"linkedin\": \"https://www.linkedin.com/in/saileshbro/\",\n    \"name\": \"Sailesh Dahal\",\n    \"twitter\": \"sail_sail30\",\n    \"website\": \"https://sailesh.is-a.dev/\"\n  },\n  \"SamiBeig\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/sami-beig-792346165/\",\n    \"name\": \"Sami Beig\"\n  },\n  \"samuelesimone\": {\n    \"country\": \"Italy\",\n    \"linkedin\": \"https://www.linkedin.com/in/samuele-simone/\",\n    \"name\": \"Samuele Simone\"\n  },\n  \"sandhukaran28\": {\n    \"country\": \"India\",\n    \"linkedin\": \"www.linkedin.com/in/karan-sandhu28\",\n    \"name\": \"Karan Sandhu\",\n    \"twitter\": \"https://twitter.com/sandhukaran28\"\n  },\n  \"sanjus-robotic-studio\": {\n    \"country\": \"India\",\n    \"name\": \"Sanjiv Anand\",\n    \"website\": \"www.sanjusroboticsstudio.me\"\n  },\n  \"saranshkotnala\": {\n    \"country\": \"India\",\n    \"name\": \"Saransh Kotnala\"\n  },\n  \"sathiranipun\": {\n    \"country\": \"Sri Lanka\",\n    \"linkedin\": \"https://www.linkedin.com/in/sathiranipun/\",\n    \"name\": \"Sathira Nipun\"\n  },\n  \"seananth\": {\n    \"country\": \"Sweden\",\n    \"linkedin\": \"https://www.linkedin.com/in/sean-s%C3%A4fstr%C3%B6m/\",\n    \"name\": \"Sean Säfström\",\n    \"twitter\": \"https://twitter.com/safstrm\"\n  },\n  \"Semvrij\": {\n    \"country\": \"Netherlands\",\n    \"name\": \"Sem\"\n  },\n  \"SerekKiri\": {\n    \"country\": \"Poland\",\n    \"name\": \"Kacper\",\n    \"twitter\": \"https://twitter.com/notabaget\",\n    \"website\": \"https://kiri.dev/\"\n  },\n  \"setheal\": {\n    \"country\": \"Belgium\",\n    \"name\": \"Maëlann Barciet\"\n  },\n  \"shankar524\": {\n    \"country\": \"Nepal\",\n    \"linkedin\": \"https://www.linkedin.com/in/er-shankar-acharya/\",\n    \"name\": \"Shankar Acharya\",\n    \"website\": \"https://shankar524.github.io\"\n  },\n  \"Shashi-14\": {\n    \"country\": \"Sri Lanka\",\n    \"name\": \"Nirmani\"\n  },\n  \"shashinkaliyanage\": {\n    \"country\": \"Sri lanka\",\n    \"linkedin\": \"www.linkedin.com/in/shashinka-abeygoda-liyanage-b31b4718b\",\n    \"name\": \"Shashinka Liyanage\",\n    \"twitter\": \"https://twitter.com/shashinkaliyanage\"\n  },\n  \"shehzadosama\": {\n    \"country\": \"Pakistan\",\n    \"linkedin\": \"https://www.linkedin.com/in/shehzad-osama-bb3679a1/\",\n    \"name\": \"Shehzad Osama\"\n  },\n  \"shinigami2905\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/aayush-meshram-a7170a1a2/\",\n    \"name\": \"Aayush Meshram\"\n  },\n  \"Shreejana123\": {\n    \"country\": \"Nepal\",\n    \"linkedin\": \"https://www.linkedin.com/in/shreejana-tandukar-14b6041ab/\",\n    \"name\": \"Shreejana Tandukar\"\n  },\n  \"ShreyanBudhouliya\": {\n    \"country\": \"India\",\n    \"name\": \"Shreyan Budhouliya\"\n  },\n  \"shreyaraj13\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/shreya-raj-ab0743199\",\n    \"name\": \"Shreya Raj\",\n    \"twitter\": \"https://twitter.com/ShreyaR33726664?s=08\"\n  },\n  \"Shubham-Agarwal16\": {\n    \"country\": \"India\",\n    \"linkedin\": \"www.linkedin.com/in/shubham-agarwal16\",\n    \"name\": \"Shubham Agarwal\"\n  },\n  \"shubhik7\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/shubhi-kulshreshtha-13822b1b6\",\n    \"name\": \"Shubhi Kulshreshtha\"\n  },\n  \"Siddhant-K-code\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/siddhantkhare24/\",\n    \"name\": \"Siddhant Khare\",\n    \"twitter\": \"https://twitter.com/Siddhant_K_code\"\n  },\n  \"simran2607\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/simran-6b1665170/\",\n    \"name\": \"Simran\"\n  },\n  \"sketch-tester\": {\n    \"country\": \"Kenya\",\n    \"name\": \"Sketch Tester\"\n  },\n  \"SkyCoder\": {\n    \"country\": \"Nigeria\",\n    \"linkedin\": \"https://www.linkedin.com/in/emmanuel-ezenwigbo-194299195/\",\n    \"name\": \"Emmanuel Ezenwigbo\",\n    \"twitter\": \"https://twitter.com/SkyC0der_\"\n  },\n  \"slash-coders\": {\n    \"country\": \"United States\",\n    \"name\": \"Slash Coders\"\n  },\n  \"SnexusG\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/swapnil-gore-2902/\",\n    \"name\": \"Swapnil Gore\",\n    \"twitter\": \"https://twitter.com/SwapnilGore029\"\n  },\n  \"Soham7270\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/sohamdixit727/\",\n    \"name\": \"Soham\"\n  },\n  \"sonylomo\": {\n    \"country\": \"Kenya\",\n    \"linkedin\": \"https://www.linkedin.com/in/sonia-lomo/\",\n    \"name\": \"Sonia Lomo\",\n    \"twitter\": \"https://twitter.com/sony_lomo\",\n    \"website\": \"https://sonylomo.github.io/\"\n  },\n  \"Speedstor\": {\n    \"country\": \"Hong Kong\",\n    \"name\": \"Aldrin Cheung\"\n  },\n  \"SrijitaSarkar99\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/srijita-sarkar-1241041b4/\",\n    \"name\": \"Srijita Sarkar\"\n  },\n  \"Sripaad\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/sripaad-srinivasan/\",\n    \"name\": \"Sripaad Srinivasan\",\n    \"twitter\": \"https://twitter.com/Sripaad_\",\n    \"website\": \"https://sripaad.github.io/\"\n  },\n  \"stefannypanameno93\": {\n    \"country\": \"El Salvador\",\n    \"name\": \"Stefanny Panameño\",\n    \"twitter\": \"https://twitter.com/StefannyP11\"\n  },\n  \"studpeps\": {\n    \"country\": \"India\",\n    \"name\": \"Stuti Prasad\"\n  },\n  \"subeshb1\": {\n    \"country\": \"Nepal\",\n    \"linkedin\": \"https://www.linkedin.com/in/subesh-bhandari-523438112/\",\n    \"name\": \"Subesh Bhandari\",\n    \"twitter\": \"https://twitter.com/subeshb1\",\n    \"website\": \"http://subeshbhandari.com/\"\n  },\n  \"suffisme\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/sufiyan-ansari-1823b2192/\",\n    \"name\": \"Mohd Sufiyan Ansari\"\n  },\n  \"sukhatmegaurav\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/gauravsukhatme/\",\n    \"name\": \"Gaurav Sukhatme\"\n  },\n  \"sunildipun\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/sunilbehera95/\",\n    \"name\": \"Sunil Behera\",\n    \"twitter\": \"https://twitter.com/sunilbehera\",\n    \"website\": \"https://sunildipun.github.io/portfolio/\"\n  },\n  \"susheelg1197\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/susheel-gounder-31b7b2115/\",\n    \"name\": \"Susheel S Gounder\"\n  },\n  \"SuzannaWentzel\": {\n    \"country\": \"Netherlands\",\n    \"name\": \"Suzanna Wentzel\"\n  },\n  \"Swapnil074\": {\n    \"country\": \"India\",\n    \"name\": \"Swapnil Sinha\"\n  },\n  \"swojeet\": {\n    \"country\": \"Nepal\",\n    \"linkedin\": \"https://www.linkedin.com/in/swojeet-kayastha/\",\n    \"name\": \"Swojeet Kayastha\"\n  },\n  \"tae8838\": {\n    \"country\": \"Thailand\",\n    \"linkedin\": \"https://www.linkedin.com/in/tae8838/\",\n    \"name\": \"Tae Noppakun Wongsrinoppakun\",\n    \"twitter\": \"https://twitter.com/tae8838\",\n    \"website\": \"https://tae8838.github.io/\"\n  },\n  \"TanishqDsharma\": {\n    \"country\": \"India\",\n    \"name\": \"Tanishq\"\n  },\n  \"Tawishi\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/tawishi-s-191857131/\",\n    \"name\": \"Tawishi\",\n    \"twitter\": \"https://twitter.com/Tawishi1\"\n  },\n  \"that-coder\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/jrjayakrishnan/\",\n    \"name\": \"Jayakrishnan JR\",\n    \"twitter\": \"https://twitter.com/that_coder\"\n  },\n  \"therealsanjeev\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/therealsanjeev/\",\n    \"name\": \"Sanjeev\",\n    \"twitter\": \"https://twitter.com/therealsanjeev\"\n  },\n  \"thpadelis\": {\n    \"country\": \"Greece\",\n    \"linkedin\": \"https://www.linkedin.com/in/padelis-theodosiou/\",\n    \"name\": \"Padelis Theodosiou\",\n    \"twitter\": \"https://twitter.com/ThPadelis\",\n    \"website\": \"http://padelis.theodosiou.me/\"\n  },\n  \"Thusal06\": {\n    \"country\": \"Sri Lanka\",\n    \"linkedin\": \"https://www.linkedin.com/in/thusal-ranawaka-773aa1189/\",\n    \"name\": \"Thusal Ranawaka\",\n    \"website\": \"https://thusal06.github.io/\"\n  },\n  \"tobeornottobeadev\": {\n    \"country\": \"United States\",\n    \"name\": \"Jonathan Chang\"\n  },\n  \"tooshar\": {\n    \"country\": \"India\",\n    \"name\": \"Tushar\"\n  },\n  \"traore19\": {\n    \"country\": \"Cameroon\",\n    \"name\": \"Fadimatou Traore\",\n    \"twitter\": \"https://twitter.com/WestAfrica11\"\n  },\n  \"tzAcee\": {\n    \"country\": \"Germany\",\n    \"name\": \"Maxim Leis\",\n    \"twitter\": \"https://twitter.com/CodeFleex\"\n  },\n  \"utkarsh17verma\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/utkarsh17verma/\",\n    \"name\": \"Utkarsh Verma\",\n    \"twitter\": \"https://twitter.com/utkarsh17verma\",\n    \"website\": \"http://utkarsh17verma.github.io/\"\n  },\n  \"varnikajain15\": {\n    \"country\": \"India\",\n    \"name\": \"Varnika Jain\"\n  },\n  \"vasu2907\": {\n    \"country\": \"India\",\n    \"name\": \"Vasu Agrawal\"\n  },\n  \"vatsalgp\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/vatsalgp/\",\n    \"name\": \"Vatsal Gupta\",\n    \"twitter\": \"https://twitter.com/MajesticBaka/\",\n    \"website\": \"https://vatsalgp.live/\"\n  },\n  \"vatsalvj\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/vatsal-jain-598278194/\",\n    \"name\": \"Vatsal Jain\"\n  },\n  \"veerraj\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/rajveer-choudhary-287706178/\",\n    \"name\": \"Rajveer Choudhary\"\n  },\n  \"veranith\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/ryrob/\",\n    \"name\": \"Ryan Robinson\"\n  },\n  \"vijayakumarGit\": {\n    \"country\": \"India\",\n    \"name\": \"Vijayakumar\"\n  },\n  \"vinmay\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/vinmaynair\",\n    \"name\": \"Vinmay Nair\"\n  },\n  \"vipulchauhan24\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/vipul-chauhan2420\",\n    \"name\": \"Vipul Chauhan\",\n    \"website\": \"https://vipulchauhan.ga\"\n  },\n  \"vishwasganatra\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/vishwasganatra/\",\n    \"name\": \"Vishwas Ganatra\",\n    \"twitter\": \"https://twitter.com/GanatraVishwas\"\n  },\n  \"vivekboss99\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/sai-vivek-amirishetty-463a99b7/\",\n    \"name\": \"Sai Vivek Amirishetty\",\n    \"twitter\": \"https://twitter.com/SAI_VIVEK_\",\n    \"website\": \"https://vivekboss99.github.io/\"\n  },\n  \"voidxyzvoidxyz\": {\n    \"country\": \"India\",\n    \"linkedin\": \"www.linkedin.com/in/mohammed-shakir-26256717b\",\n    \"name\": \"Mohammed Shakir\"\n  },\n  \"vppillai\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/vysakh-pillai/\",\n    \"name\": \"Vysakh P Pillai\",\n    \"website\": \"https://embeddedinn.xyz\"\n  },\n  \"vunderkind\": {\n    \"country\": \"Nigeria\",\n    \"linkedin\": \"https://www.linkedin.com/in/justinirabor/\",\n    \"name\": \"Justin Irabor\",\n    \"twitter\": \"https://twitter.com/lifeofmogwai\",\n    \"website\": \"https://justinirabor.com\"\n  },\n  \"weydaej\": {\n    \"country\": \"United States\",\n    \"linkedin\": \"https://www.linkedin.com/in/emilyweyda/\",\n    \"name\": \"Emily Weyda\",\n    \"website\": \"http://emilyweyda.com\"\n  },\n  \"WickedInvi\": {\n    \"country\": \"United Kingdom\",\n    \"name\": \"Deyan Petrov\"\n  },\n  \"wsameer\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/wsameer/\",\n    \"name\": \"Sameer Waskar\",\n    \"website\": \"https://wsameer.github.io/v1/\"\n  },\n  \"xcyraxx\": {\n    \"country\": \"Oman\",\n    \"name\": \"Adil Jafar\"\n  },\n  \"xdebbie\": {\n    \"country\": \"France\",\n    \"linkedin\": \"https://www.linkedin.com/in/deborah-caldeira/\",\n    \"name\": \"Deborah Caldeira\",\n    \"twitter\": \"https://twitter.com/debishot\",\n    \"website\": \"https://deborah.vercel.app/\"\n  },\n  \"Xearty\": {\n    \"country\": \"Bulgaria\",\n    \"name\": \"Martin Ivanov\"\n  },\n  \"xxx32\": {\n    \"country\": \"India\",\n    \"name\": \"Aarushi\"\n  },\n  \"yagyikprajapat\": {\n    \"country\": \"India\",\n    \"linkedin\": \"https://www.linkedin.com/in/yagyik-prajapat-627320192/\",\n    \"name\": \"Yagyik Prajapat\"\n  },\n  \"YashAmin-01\": {\n    \"country\": \"India\",\n    \"name\": \"Yash Amin\"\n  },\n  \"yonaka-37\": {\n    \"country\": \"Indonesia\",\n    \"name\": \"Yusril\"\n  },\n  \"yunweneric\": {\n    \"country\": \"Cameroon\",\n    \"linkedin\": \"https://www.linkedin.com/in/yunwen-eric-40517a147/\",\n    \"name\": \"Yunwen Eric\",\n    \"twitter\": \"https://twitter.com/Yunweneric\"\n  },\n  \"Zura79\": {\n    \"country\": \"Indonesia\",\n    \"linkedin\": \"https://www.linkedin.com/in/fardeen-atallah-kabir-muhammad-4787681a0\",\n    \"name\": \"Fardeen Atallah Kabir Muhammad\"\n  }\n}\n"
  },
  {
    "path": "country-codes.js",
    "content": "const countryCodeMappings = [\n  {\n    \"name\": \"Afghanistan\",\n    \"dial_code\": \"+93\",\n    \"code\": \"AF\"\n  },\n  {\n    \"name\": \"Aland Islands\",\n    \"dial_code\": \"+358\",\n    \"code\": \"AX\"\n  },\n  {\n    \"name\": \"Albania\",\n    \"dial_code\": \"+355\",\n    \"code\": \"AL\"\n  },\n  {\n    \"name\": \"Algeria\",\n    \"dial_code\": \"+213\",\n    \"code\": \"DZ\"\n  },\n  {\n    \"name\": \"AmericanSamoa\",\n    \"dial_code\": \"+1 684\",\n    \"code\": \"AS\"\n  },\n  {\n    \"name\": \"Andorra\",\n    \"dial_code\": \"+376\",\n    \"code\": \"AD\"\n  },\n  {\n    \"name\": \"Angola\",\n    \"dial_code\": \"+244\",\n    \"code\": \"AO\"\n  },\n  {\n    \"name\": \"Anguilla\",\n    \"dial_code\": \"+1 264\",\n    \"code\": \"AI\"\n  },\n  {\n    \"name\": \"Antarctica\",\n    \"dial_code\": \"+672\",\n    \"code\": \"AQ\"\n  },\n  {\n    \"name\": \"Antigua and Barbuda\",\n    \"dial_code\": \"+1268\",\n    \"code\": \"AG\"\n  },\n  {\n    \"name\": \"Argentina\",\n    \"dial_code\": \"+54\",\n    \"code\": \"AR\"\n  },\n  {\n    \"name\": \"Armenia\",\n    \"dial_code\": \"+374\",\n    \"code\": \"AM\"\n  },\n  {\n    \"name\": \"Aruba\",\n    \"dial_code\": \"+297\",\n    \"code\": \"AW\"\n  },\n  {\n    \"name\": \"Australia\",\n    \"dial_code\": \"+61\",\n    \"code\": \"AU\"\n  },\n  {\n    \"name\": \"Austria\",\n    \"dial_code\": \"+43\",\n    \"code\": \"AT\"\n  },\n  {\n    \"name\": \"Azerbaijan\",\n    \"dial_code\": \"+994\",\n    \"code\": \"AZ\"\n  },\n  {\n    \"name\": \"Bahamas\",\n    \"dial_code\": \"+1 242\",\n    \"code\": \"BS\"\n  },\n  {\n    \"name\": \"Bahrain\",\n    \"dial_code\": \"+973\",\n    \"code\": \"BH\"\n  },\n  {\n    \"name\": \"Bangladesh\",\n    \"dial_code\": \"+880\",\n    \"code\": \"BD\"\n  },\n  {\n    \"name\": \"Barbados\",\n    \"dial_code\": \"+1 246\",\n    \"code\": \"BB\"\n  },\n  {\n    \"name\": \"Belarus\",\n    \"dial_code\": \"+375\",\n    \"code\": \"BY\"\n  },\n  {\n    \"name\": \"Belgium\",\n    \"dial_code\": \"+32\",\n    \"code\": \"BE\"\n  },\n  {\n    \"name\": \"Belize\",\n    \"dial_code\": \"+501\",\n    \"code\": \"BZ\"\n  },\n  {\n    \"name\": \"Benin\",\n    \"dial_code\": \"+229\",\n    \"code\": \"BJ\"\n  },\n  {\n    \"name\": \"Bermuda\",\n    \"dial_code\": \"+1 441\",\n    \"code\": \"BM\"\n  },\n  {\n    \"name\": \"Bhutan\",\n    \"dial_code\": \"+975\",\n    \"code\": \"BT\"\n  },\n  {\n    \"name\": \"Bolivia, Plurinational State of\",\n    \"dial_code\": \"+591\",\n    \"code\": \"BO\"\n  },\n  {\n    \"name\": \"Bosnia and Herzegovina\",\n    \"dial_code\": \"+387\",\n    \"code\": \"BA\"\n  },\n  {\n    \"name\": \"Botswana\",\n    \"dial_code\": \"+267\",\n    \"code\": \"BW\"\n  },\n  {\n    \"name\": \"Brazil\",\n    \"dial_code\": \"+55\",\n    \"code\": \"BR\"\n  },\n  {\n    \"name\": \"British Indian Ocean Territory\",\n    \"dial_code\": \"+246\",\n    \"code\": \"IO\"\n  },\n  {\n    \"name\": \"Brunei Darussalam\",\n    \"dial_code\": \"+673\",\n    \"code\": \"BN\"\n  },\n  {\n    \"name\": \"Bulgaria\",\n    \"dial_code\": \"+359\",\n    \"code\": \"BG\"\n  },\n  {\n    \"name\": \"Burkina Faso\",\n    \"dial_code\": \"+226\",\n    \"code\": \"BF\"\n  },\n  {\n    \"name\": \"Burundi\",\n    \"dial_code\": \"+257\",\n    \"code\": \"BI\"\n  },\n  {\n    \"name\": \"Cambodia\",\n    \"dial_code\": \"+855\",\n    \"code\": \"KH\"\n  },\n  {\n    \"name\": \"Cameroon\",\n    \"dial_code\": \"+237\",\n    \"code\": \"CM\"\n  },\n  {\n    \"name\": \"Canada\",\n    \"dial_code\": \"+1\",\n    \"code\": \"CA\"\n  },\n  {\n    \"name\": \"Cape Verde\",\n    \"dial_code\": \"+238\",\n    \"code\": \"CV\"\n  },\n  {\n    \"name\": \"Cayman Islands\",\n    \"dial_code\": \"+ 345\",\n    \"code\": \"KY\"\n  },\n  {\n    \"name\": \"Central African Republic\",\n    \"dial_code\": \"+236\",\n    \"code\": \"CF\"\n  },\n  {\n    \"name\": \"Chad\",\n    \"dial_code\": \"+235\",\n    \"code\": \"TD\"\n  },\n  {\n    \"name\": \"Chile\",\n    \"dial_code\": \"+56\",\n    \"code\": \"CL\"\n  },\n  {\n    \"name\": \"China\",\n    \"dial_code\": \"+86\",\n    \"code\": \"CN\"\n  },\n  {\n    \"name\": \"Christmas Island\",\n    \"dial_code\": \"+61\",\n    \"code\": \"CX\"\n  },\n  {\n    \"name\": \"Cocos (Keeling) Islands\",\n    \"dial_code\": \"+61\",\n    \"code\": \"CC\"\n  },\n  {\n    \"name\": \"Colombia\",\n    \"dial_code\": \"+57\",\n    \"code\": \"CO\"\n  },\n  {\n    \"name\": \"Comoros\",\n    \"dial_code\": \"+269\",\n    \"code\": \"KM\"\n  },\n  {\n    \"name\": \"Congo\",\n    \"dial_code\": \"+242\",\n    \"code\": \"CG\"\n  },\n  {\n    \"name\": \"Congo, The Democratic Republic of the Congo\",\n    \"dial_code\": \"+243\",\n    \"code\": \"CD\"\n  },\n  {\n    \"name\": \"Cook Islands\",\n    \"dial_code\": \"+682\",\n    \"code\": \"CK\"\n  },\n  {\n    \"name\": \"Costa Rica\",\n    \"dial_code\": \"+506\",\n    \"code\": \"CR\"\n  },\n  {\n    \"name\": \"Cote d'Ivoire\",\n    \"dial_code\": \"+225\",\n    \"code\": \"CI\"\n  },\n  {\n    \"name\": \"Croatia\",\n    \"dial_code\": \"+385\",\n    \"code\": \"HR\"\n  },\n  {\n    \"name\": \"Cuba\",\n    \"dial_code\": \"+53\",\n    \"code\": \"CU\"\n  },\n  {\n    \"name\": \"Cyprus\",\n    \"dial_code\": \"+357\",\n    \"code\": \"CY\"\n  },\n  {\n    \"name\": \"Czech Republic\",\n    \"dial_code\": \"+420\",\n    \"code\": \"CZ\"\n  },\n  {\n    \"name\": \"Denmark\",\n    \"dial_code\": \"+45\",\n    \"code\": \"DK\"\n  },\n  {\n    \"name\": \"Djibouti\",\n    \"dial_code\": \"+253\",\n    \"code\": \"DJ\"\n  },\n  {\n    \"name\": \"Dominica\",\n    \"dial_code\": \"+1 767\",\n    \"code\": \"DM\"\n  },\n  {\n    \"name\": \"Dominican Republic\",\n    \"dial_code\": \"+1 849\",\n    \"code\": \"DO\"\n  },\n  {\n    \"name\": \"Ecuador\",\n    \"dial_code\": \"+593\",\n    \"code\": \"EC\"\n  },\n  {\n    \"name\": \"Egypt\",\n    \"dial_code\": \"+20\",\n    \"code\": \"EG\"\n  },\n  {\n    \"name\": \"El Salvador\",\n    \"dial_code\": \"+503\",\n    \"code\": \"SV\"\n  },\n  {\n    \"name\": \"Equatorial Guinea\",\n    \"dial_code\": \"+240\",\n    \"code\": \"GQ\"\n  },\n  {\n    \"name\": \"Eritrea\",\n    \"dial_code\": \"+291\",\n    \"code\": \"ER\"\n  },\n  {\n    \"name\": \"Estonia\",\n    \"dial_code\": \"+372\",\n    \"code\": \"EE\"\n  },\n  {\n    \"name\": \"Ethiopia\",\n    \"dial_code\": \"+251\",\n    \"code\": \"ET\"\n  },\n  {\n    \"name\": \"Falkland Islands (Malvinas)\",\n    \"dial_code\": \"+500\",\n    \"code\": \"FK\"\n  },\n  {\n    \"name\": \"Faroe Islands\",\n    \"dial_code\": \"+298\",\n    \"code\": \"FO\"\n  },\n  {\n    \"name\": \"Fiji\",\n    \"dial_code\": \"+679\",\n    \"code\": \"FJ\"\n  },\n  {\n    \"name\": \"Finland\",\n    \"dial_code\": \"+358\",\n    \"code\": \"FI\"\n  },\n  {\n    \"name\": \"France\",\n    \"dial_code\": \"+33\",\n    \"code\": \"FR\"\n  },\n  {\n    \"name\": \"French Guiana\",\n    \"dial_code\": \"+594\",\n    \"code\": \"GF\"\n  },\n  {\n    \"name\": \"French Polynesia\",\n    \"dial_code\": \"+689\",\n    \"code\": \"PF\"\n  },\n  {\n    \"name\": \"Gabon\",\n    \"dial_code\": \"+241\",\n    \"code\": \"GA\"\n  },\n  {\n    \"name\": \"Gambia\",\n    \"dial_code\": \"+220\",\n    \"code\": \"GM\"\n  },\n  {\n    \"name\": \"Georgia\",\n    \"dial_code\": \"+995\",\n    \"code\": \"GE\"\n  },\n  {\n    \"name\": \"Germany\",\n    \"dial_code\": \"+49\",\n    \"code\": \"DE\"\n  },\n  {\n    \"name\": \"Ghana\",\n    \"dial_code\": \"+233\",\n    \"code\": \"GH\"\n  },\n  {\n    \"name\": \"Gibraltar\",\n    \"dial_code\": \"+350\",\n    \"code\": \"GI\"\n  },\n  {\n    \"name\": \"Greece\",\n    \"dial_code\": \"+30\",\n    \"code\": \"GR\"\n  },\n  {\n    \"name\": \"Greenland\",\n    \"dial_code\": \"+299\",\n    \"code\": \"GL\"\n  },\n  {\n    \"name\": \"Grenada\",\n    \"dial_code\": \"+1 473\",\n    \"code\": \"GD\"\n  },\n  {\n    \"name\": \"Guadeloupe\",\n    \"dial_code\": \"+590\",\n    \"code\": \"GP\"\n  },\n  {\n    \"name\": \"Guam\",\n    \"dial_code\": \"+1 671\",\n    \"code\": \"GU\"\n  },\n  {\n    \"name\": \"Guatemala\",\n    \"dial_code\": \"+502\",\n    \"code\": \"GT\"\n  },\n  {\n    \"name\": \"Guernsey\",\n    \"dial_code\": \"+44\",\n    \"code\": \"GG\"\n  },\n  {\n    \"name\": \"Guinea\",\n    \"dial_code\": \"+224\",\n    \"code\": \"GN\"\n  },\n  {\n    \"name\": \"Guinea-Bissau\",\n    \"dial_code\": \"+245\",\n    \"code\": \"GW\"\n  },\n  {\n    \"name\": \"Guyana\",\n    \"dial_code\": \"+595\",\n    \"code\": \"GY\"\n  },\n  {\n    \"name\": \"Anguilla\",\n    \"dial_code\": \"+1 264\",\n    \"code\": \"AI\"\n  },\n  {\n    \"name\": \"Haiti\",\n    \"dial_code\": \"+509\",\n    \"code\": \"HT\"\n  },\n  {\n    \"name\": \"Holy See (Vatican City State)\",\n    \"dial_code\": \"+379\",\n    \"code\": \"VA\"\n  },\n  {\n    \"name\": \"Honduras\",\n    \"dial_code\": \"+504\",\n    \"code\": \"HN\"\n  },\n  {\n    \"name\": \"Hong Kong\",\n    \"dial_code\": \"+852\",\n    \"code\": \"HK\"\n  },\n  {\n    \"name\": \"Hungary\",\n    \"dial_code\": \"+36\",\n    \"code\": \"HU\"\n  },\n  {\n    \"name\": \"Iceland\",\n    \"dial_code\": \"+354\",\n    \"code\": \"IS\"\n  },\n  {\n    \"name\": \"India\",\n    \"dial_code\": \"+91\",\n    \"code\": \"IN\"\n  },\n  {\n    \"name\": \"Indonesia\",\n    \"dial_code\": \"+62\",\n    \"code\": \"ID\"\n  },\n  {\n    \"name\": \"Iran, Islamic Republic of Persian Gulf\",\n    \"dial_code\": \"+98\",\n    \"code\": \"IR\"\n  },\n  {\n    \"name\": \"Iraq\",\n    \"dial_code\": \"+964\",\n    \"code\": \"IQ\"\n  },\n  {\n    \"name\": \"Ireland\",\n    \"dial_code\": \"+353\",\n    \"code\": \"IE\"\n  },\n  {\n    \"name\": \"Isle of Man\",\n    \"dial_code\": \"+44\",\n    \"code\": \"IM\"\n  },\n  {\n    \"name\": \"Israel\",\n    \"dial_code\": \"+972\",\n    \"code\": \"IL\"\n  },\n  {\n    \"name\": \"Italy\",\n    \"dial_code\": \"+39\",\n    \"code\": \"IT\"\n  },\n  {\n    \"name\": \"Jamaica\",\n    \"dial_code\": \"+1 876\",\n    \"code\": \"JM\"\n  },\n  {\n    \"name\": \"Japan\",\n    \"dial_code\": \"+81\",\n    \"code\": \"JP\"\n  },\n  {\n    \"name\": \"Jersey\",\n    \"dial_code\": \"+44\",\n    \"code\": \"JE\"\n  },\n  {\n    \"name\": \"Jordan\",\n    \"dial_code\": \"+962\",\n    \"code\": \"JO\"\n  },\n  {\n    \"name\": \"Kazakhstan\",\n    \"dial_code\": \"+7 7\",\n    \"code\": \"KZ\"\n  },\n  {\n    \"name\": \"Kenya\",\n    \"dial_code\": \"+254\",\n    \"code\": \"KE\"\n  },\n  {\n    \"name\": \"Kiribati\",\n    \"dial_code\": \"+686\",\n    \"code\": \"KI\"\n  },\n  {\n    \"name\": \"Korea, Democratic People's Republic of Korea\",\n    \"dial_code\": \"+850\",\n    \"code\": \"KP\"\n  },\n  {\n    \"name\": \"Korea, Republic of South Korea\",\n    \"dial_code\": \"+82\",\n    \"code\": \"KR\"\n  },\n  {\n    \"name\": \"Kuwait\",\n    \"dial_code\": \"+965\",\n    \"code\": \"KW\"\n  },\n  {\n    \"name\": \"Kyrgyzstan\",\n    \"dial_code\": \"+996\",\n    \"code\": \"KG\"\n  },\n  {\n    \"name\": \"Laos\",\n    \"dial_code\": \"+856\",\n    \"code\": \"LA\"\n  },\n  {\n    \"name\": \"Latvia\",\n    \"dial_code\": \"+371\",\n    \"code\": \"LV\"\n  },\n  {\n    \"name\": \"Lebanon\",\n    \"dial_code\": \"+961\",\n    \"code\": \"LB\"\n  },\n  {\n    \"name\": \"Lesotho\",\n    \"dial_code\": \"+266\",\n    \"code\": \"LS\"\n  },\n  {\n    \"name\": \"Liberia\",\n    \"dial_code\": \"+231\",\n    \"code\": \"LR\"\n  },\n  {\n    \"name\": \"Libyan Arab Jamahiriya\",\n    \"dial_code\": \"+218\",\n    \"code\": \"LY\"\n  },\n  {\n    \"name\": \"Liechtenstein\",\n    \"dial_code\": \"+423\",\n    \"code\": \"LI\"\n  },\n  {\n    \"name\": \"Lithuania\",\n    \"dial_code\": \"+370\",\n    \"code\": \"LT\"\n  },\n  {\n    \"name\": \"Luxembourg\",\n    \"dial_code\": \"+352\",\n    \"code\": \"LU\"\n  },\n  {\n    \"name\": \"Macao\",\n    \"dial_code\": \"+853\",\n    \"code\": \"MO\"\n  },\n  {\n    \"name\": \"Macedonia\",\n    \"dial_code\": \"+389\",\n    \"code\": \"MK\"\n  },\n  {\n    \"name\": \"Madagascar\",\n    \"dial_code\": \"+261\",\n    \"code\": \"MG\"\n  },\n  {\n    \"name\": \"Malawi\",\n    \"dial_code\": \"+265\",\n    \"code\": \"MW\"\n  },\n  {\n    \"name\": \"Malaysia\",\n    \"dial_code\": \"+60\",\n    \"code\": \"MY\"\n  },\n  {\n    \"name\": \"Maldives\",\n    \"dial_code\": \"+960\",\n    \"code\": \"MV\"\n  },\n  {\n    \"name\": \"Mali\",\n    \"dial_code\": \"+223\",\n    \"code\": \"ML\"\n  },\n  {\n    \"name\": \"Malta\",\n    \"dial_code\": \"+356\",\n    \"code\": \"MT\"\n  },\n  {\n    \"name\": \"Marshall Islands\",\n    \"dial_code\": \"+692\",\n    \"code\": \"MH\"\n  },\n  {\n    \"name\": \"Martinique\",\n    \"dial_code\": \"+596\",\n    \"code\": \"MQ\"\n  },\n  {\n    \"name\": \"Mauritania\",\n    \"dial_code\": \"+222\",\n    \"code\": \"MR\"\n  },\n  {\n    \"name\": \"Mauritius\",\n    \"dial_code\": \"+230\",\n    \"code\": \"MU\"\n  },\n  {\n    \"name\": \"Mayotte\",\n    \"dial_code\": \"+262\",\n    \"code\": \"YT\"\n  },\n  {\n    \"name\": \"Mexico\",\n    \"dial_code\": \"+52\",\n    \"code\": \"MX\"\n  },\n  {\n    \"name\": \"Micronesia, Federated States of Micronesia\",\n    \"dial_code\": \"+691\",\n    \"code\": \"FM\"\n  },\n  {\n    \"name\": \"Moldova\",\n    \"dial_code\": \"+373\",\n    \"code\": \"MD\"\n  },\n  {\n    \"name\": \"Monaco\",\n    \"dial_code\": \"+377\",\n    \"code\": \"MC\"\n  },\n  {\n    \"name\": \"Mongolia\",\n    \"dial_code\": \"+976\",\n    \"code\": \"MN\"\n  },\n  {\n    \"name\": \"Montenegro\",\n    \"dial_code\": \"+382\",\n    \"code\": \"ME\"\n  },\n  {\n    \"name\": \"Montserrat\",\n    \"dial_code\": \"+1664\",\n    \"code\": \"MS\"\n  },\n  {\n    \"name\": \"Morocco\",\n    \"dial_code\": \"+212\",\n    \"code\": \"MA\"\n  },\n  {\n    \"name\": \"Mozambique\",\n    \"dial_code\": \"+258\",\n    \"code\": \"MZ\"\n  },\n  {\n    \"name\": \"Myanmar\",\n    \"dial_code\": \"+95\",\n    \"code\": \"MM\"\n  },\n  {\n    \"name\": \"Namibia\",\n    \"dial_code\": \"+264\",\n    \"code\": \"NA\"\n  },\n  {\n    \"name\": \"Nauru\",\n    \"dial_code\": \"+674\",\n    \"code\": \"NR\"\n  },\n  {\n    \"name\": \"Nepal\",\n    \"dial_code\": \"+977\",\n    \"code\": \"NP\"\n  },\n  {\n    \"name\": \"Netherlands\",\n    \"dial_code\": \"+31\",\n    \"code\": \"NL\"\n  },\n  {\n    \"name\": \"Netherlands Antilles\",\n    \"dial_code\": \"+599\",\n    \"code\": \"AN\"\n  },\n  {\n    \"name\": \"New Caledonia\",\n    \"dial_code\": \"+687\",\n    \"code\": \"NC\"\n  },\n  {\n    \"name\": \"New Zealand\",\n    \"dial_code\": \"+64\",\n    \"code\": \"NZ\"\n  },\n  {\n    \"name\": \"Nicaragua\",\n    \"dial_code\": \"+505\",\n    \"code\": \"NI\"\n  },\n  {\n    \"name\": \"Niger\",\n    \"dial_code\": \"+227\",\n    \"code\": \"NE\"\n  },\n  {\n    \"name\": \"Nigeria\",\n    \"dial_code\": \"+234\",\n    \"code\": \"NG\"\n  },\n  {\n    \"name\": \"Niue\",\n    \"dial_code\": \"+683\",\n    \"code\": \"NU\"\n  },\n  {\n    \"name\": \"Norfolk Island\",\n    \"dial_code\": \"+672\",\n    \"code\": \"NF\"\n  },\n  {\n    \"name\": \"Northern Mariana Islands\",\n    \"dial_code\": \"+1 670\",\n    \"code\": \"MP\"\n  },\n  {\n    \"name\": \"Norway\",\n    \"dial_code\": \"+47\",\n    \"code\": \"NO\"\n  },\n  {\n    \"name\": \"Oman\",\n    \"dial_code\": \"+968\",\n    \"code\": \"OM\"\n  },\n  {\n    \"name\": \"Pakistan\",\n    \"dial_code\": \"+92\",\n    \"code\": \"PK\"\n  },\n  {\n    \"name\": \"Palau\",\n    \"dial_code\": \"+680\",\n    \"code\": \"PW\"\n  },\n  {\n    \"name\": \"Palestinian Territory, Occupied\",\n    \"dial_code\": \"+970\",\n    \"code\": \"PS\"\n  },\n  {\n    \"name\": \"Panama\",\n    \"dial_code\": \"+507\",\n    \"code\": \"PA\"\n  },\n  {\n    \"name\": \"Papua New Guinea\",\n    \"dial_code\": \"+675\",\n    \"code\": \"PG\"\n  },\n  {\n    \"name\": \"Paraguay\",\n    \"dial_code\": \"+595\",\n    \"code\": \"PY\"\n  },\n  {\n    \"name\": \"Peru\",\n    \"dial_code\": \"+51\",\n    \"code\": \"PE\"\n  },\n  {\n    \"name\": \"Philippines\",\n    \"dial_code\": \"+63\",\n    \"code\": \"PH\"\n  },\n  {\n    \"name\": \"Pitcairn\",\n    \"dial_code\": \"+872\",\n    \"code\": \"PN\"\n  },\n  {\n    \"name\": \"Poland\",\n    \"dial_code\": \"+48\",\n    \"code\": \"PL\"\n  },\n  {\n    \"name\": \"Portugal\",\n    \"dial_code\": \"+351\",\n    \"code\": \"PT\"\n  },\n  {\n    \"name\": \"Puerto Rico\",\n    \"dial_code\": \"+1 939\",\n    \"code\": \"PR\"\n  },\n  {\n    \"name\": \"Qatar\",\n    \"dial_code\": \"+974\",\n    \"code\": \"QA\"\n  },\n  {\n    \"name\": \"Romania\",\n    \"dial_code\": \"+40\",\n    \"code\": \"RO\"\n  },\n  {\n    \"name\": \"Russia\",\n    \"dial_code\": \"+7\",\n    \"code\": \"RU\"\n  },\n  {\n    \"name\": \"Rwanda\",\n    \"dial_code\": \"+250\",\n    \"code\": \"RW\"\n  },\n  {\n    \"name\": \"Reunion\",\n    \"dial_code\": \"+262\",\n    \"code\": \"RE\"\n  },\n  {\n    \"name\": \"Saint Barthelemy\",\n    \"dial_code\": \"+590\",\n    \"code\": \"BL\"\n  },\n  {\n    \"name\": \"Saint Helena, Ascension and Tristan Da Cunha\",\n    \"dial_code\": \"+290\",\n    \"code\": \"SH\"\n  },\n  {\n    \"name\": \"Saint Kitts and Nevis\",\n    \"dial_code\": \"+1 869\",\n    \"code\": \"KN\"\n  },\n  {\n    \"name\": \"Saint Lucia\",\n    \"dial_code\": \"+1 758\",\n    \"code\": \"LC\"\n  },\n  {\n    \"name\": \"Saint Martin\",\n    \"dial_code\": \"+590\",\n    \"code\": \"MF\"\n  },\n  {\n    \"name\": \"Saint Pierre and Miquelon\",\n    \"dial_code\": \"+508\",\n    \"code\": \"PM\"\n  },\n  {\n    \"name\": \"Saint Vincent and the Grenadines\",\n    \"dial_code\": \"+1 784\",\n    \"code\": \"VC\"\n  },\n  {\n    \"name\": \"Samoa\",\n    \"dial_code\": \"+685\",\n    \"code\": \"WS\"\n  },\n  {\n    \"name\": \"San Marino\",\n    \"dial_code\": \"+378\",\n    \"code\": \"SM\"\n  },\n  {\n    \"name\": \"Sao Tome and Principe\",\n    \"dial_code\": \"+239\",\n    \"code\": \"ST\"\n  },\n  {\n    \"name\": \"Saudi Arabia\",\n    \"dial_code\": \"+966\",\n    \"code\": \"SA\"\n  },\n  {\n    \"name\": \"Senegal\",\n    \"dial_code\": \"+221\",\n    \"code\": \"SN\"\n  },\n  {\n    \"name\": \"Serbia\",\n    \"dial_code\": \"+381\",\n    \"code\": \"RS\"\n  },\n  {\n    \"name\": \"Seychelles\",\n    \"dial_code\": \"+248\",\n    \"code\": \"SC\"\n  },\n  {\n    \"name\": \"Sierra Leone\",\n    \"dial_code\": \"+232\",\n    \"code\": \"SL\"\n  },\n  {\n    \"name\": \"Singapore\",\n    \"dial_code\": \"+65\",\n    \"code\": \"SG\"\n  },\n  {\n    \"name\": \"Slovakia\",\n    \"dial_code\": \"+421\",\n    \"code\": \"SK\"\n  },\n  {\n    \"name\": \"Slovenia\",\n    \"dial_code\": \"+386\",\n    \"code\": \"SI\"\n  },\n  {\n    \"name\": \"Solomon Islands\",\n    \"dial_code\": \"+677\",\n    \"code\": \"SB\"\n  },\n  {\n    \"name\": \"Somalia\",\n    \"dial_code\": \"+252\",\n    \"code\": \"SO\"\n  },\n  {\n    \"name\": \"South Africa\",\n    \"dial_code\": \"+27\",\n    \"code\": \"ZA\"\n  },\n  {\n    \"name\": \"South Georgia and the South Sandwich Islands\",\n    \"dial_code\": \"+500\",\n    \"code\": \"GS\"\n  },\n  {\n    \"name\": \"Spain\",\n    \"dial_code\": \"+34\",\n    \"code\": \"ES\"\n  },\n  {\n    \"name\": \"Sri Lanka\",\n    \"dial_code\": \"+94\",\n    \"code\": \"LK\"\n  },\n  {\n    \"name\": \"Sudan\",\n    \"dial_code\": \"+249\",\n    \"code\": \"SD\"\n  },\n  {\n    \"name\": \"Suriname\",\n    \"dial_code\": \"+597\",\n    \"code\": \"SR\"\n  },\n  {\n    \"name\": \"Svalbard and Jan Mayen\",\n    \"dial_code\": \"+47\",\n    \"code\": \"SJ\"\n  },\n  {\n    \"name\": \"Swaziland\",\n    \"dial_code\": \"+268\",\n    \"code\": \"SZ\"\n  },\n  {\n    \"name\": \"Sweden\",\n    \"dial_code\": \"+46\",\n    \"code\": \"SE\"\n  },\n  {\n    \"name\": \"Switzerland\",\n    \"dial_code\": \"+41\",\n    \"code\": \"CH\"\n  },\n  {\n    \"name\": \"Syrian Arab Republic\",\n    \"dial_code\": \"+963\",\n    \"code\": \"SY\"\n  },\n  {\n    \"name\": \"Taiwan\",\n    \"dial_code\": \"+886\",\n    \"code\": \"TW\"\n  },\n  {\n    \"name\": \"Tajikistan\",\n    \"dial_code\": \"+992\",\n    \"code\": \"TJ\"\n  },\n  {\n    \"name\": \"Tanzania, United Republic of Tanzania\",\n    \"dial_code\": \"+255\",\n    \"code\": \"TZ\"\n  },\n  {\n    \"name\": \"Thailand\",\n    \"dial_code\": \"+66\",\n    \"code\": \"TH\"\n  },\n  {\n    \"name\": \"Timor-Leste\",\n    \"dial_code\": \"+670\",\n    \"code\": \"TL\"\n  },\n  {\n    \"name\": \"Togo\",\n    \"dial_code\": \"+228\",\n    \"code\": \"TG\"\n  },\n  {\n    \"name\": \"Tokelau\",\n    \"dial_code\": \"+690\",\n    \"code\": \"TK\"\n  },\n  {\n    \"name\": \"Tonga\",\n    \"dial_code\": \"+676\",\n    \"code\": \"TO\"\n  },\n  {\n    \"name\": \"Trinidad and Tobago\",\n    \"dial_code\": \"+1 868\",\n    \"code\": \"TT\"\n  },\n  {\n    \"name\": \"Tunisia\",\n    \"dial_code\": \"+216\",\n    \"code\": \"TN\"\n  },\n  {\n    \"name\": \"Turkey\",\n    \"dial_code\": \"+90\",\n    \"code\": \"TR\"\n  },\n  {\n    \"name\": \"Turkmenistan\",\n    \"dial_code\": \"+993\",\n    \"code\": \"TM\"\n  },\n  {\n    \"name\": \"Turks and Caicos Islands\",\n    \"dial_code\": \"+1 649\",\n    \"code\": \"TC\"\n  },\n  {\n    \"name\": \"Tuvalu\",\n    \"dial_code\": \"+688\",\n    \"code\": \"TV\"\n  },\n  {\n    \"name\": \"Uganda\",\n    \"dial_code\": \"+256\",\n    \"code\": \"UG\"\n  },\n  {\n    \"name\": \"Ukraine\",\n    \"dial_code\": \"+380\",\n    \"code\": \"UA\"\n  },\n  {\n    \"name\": \"United Arab Emirates\",\n    \"dial_code\": \"+971\",\n    \"code\": \"AE\"\n  },\n  {\n    \"name\": \"United Kingdom\",\n    \"dial_code\": \"+44\",\n    \"code\": \"GB\"\n  },\n  {\n    \"name\": \"United States\",\n    \"dial_code\": \"+1\",\n    \"code\": \"US\"\n  },\n  {\n    \"name\": \"Uruguay\",\n    \"dial_code\": \"+598\",\n    \"code\": \"UY\"\n  },\n  {\n    \"name\": \"Uzbekistan\",\n    \"dial_code\": \"+998\",\n    \"code\": \"UZ\"\n  },\n  {\n    \"name\": \"Vanuatu\",\n    \"dial_code\": \"+678\",\n    \"code\": \"VU\"\n  },\n  {\n    \"name\": \"Venezuela, Bolivarian Republic of Venezuela\",\n    \"dial_code\": \"+58\",\n    \"code\": \"VE\"\n  },\n  {\n    \"name\": \"Vietnam\",\n    \"dial_code\": \"+84\",\n    \"code\": \"VN\"\n  },\n  {\n    \"name\": \"Virgin Islands, British\",\n    \"dial_code\": \"+1 284\",\n    \"code\": \"VG\"\n  },\n  {\n    \"name\": \"Virgin Islands, U.S.\",\n    \"dial_code\": \"+1 340\",\n    \"code\": \"VI\"\n  },\n  {\n    \"name\": \"Wallis and Futuna\",\n    \"dial_code\": \"+681\",\n    \"code\": \"WF\"\n  },\n  {\n    \"name\": \"Yemen\",\n    \"dial_code\": \"+967\",\n    \"code\": \"YE\"\n  },\n  {\n    \"name\": \"Zambia\",\n    \"dial_code\": \"+260\",\n    \"code\": \"ZM\"\n  },\n  {\n    \"name\": \"Zimbabwe\",\n    \"dial_code\": \"+263\",\n    \"code\": \"ZW\"\n  }\n]\n\nmodule.exports = (countryName) => {\n  if (!countryName) {\n    return undefined\n  }\n  const country = countryCodeMappings.find(country => country.name.toLowerCase().trim() === countryName.toLowerCase().trim())\n  return country && country.code\n}\n"
  },
  {
    "path": "gatsby-browser.js",
    "content": "// custom typefaces\nimport 'typeface-lora'\nimport 'typeface-libre-baskerville'\nimport 'typeface-ibm-plex-mono'\n"
  },
  {
    "path": "gatsby-config.js",
    "content": "module.exports = {\n  siteMetadata: {\n    title: `Developer Community Stats`,\n    author: `Developer Community Stats`,\n    description: `Personal blog and pet projects of Developer Community Stats. Learn javascript, React, AWS, Go and much more. Use different open source tools and online apps dedicated for visualization and increasing productivity.`,\n    siteUrl: `https://subeshbhandari.com/`,\n    social: {\n      twitter: `subeshb1`,\n      facebook: `subesh`,\n      instagram: `subeshb1`,\n    },\n  },\n  plugins: [\n    `gatsby-plugin-sass`,\n    {\n      resolve: `gatsby-transformer-remark`,\n      options: {\n        // CommonMark mode (default: true)\n        commonmark: true,\n        // Footnotes mode (default: true)\n        footnotes: true,\n        // Pedantic mode (default: true)\n        pedantic: true,\n        // GitHub Flavored Markdown mode (default: true)\n        gfm: true,\n        // Plugins configs\n        plugins: [\n          {\n            resolve: `gatsby-remark-images`,\n            options: {\n              maxWidth: 900,\n              quality: 75,\n              showCaptions: ['alt', 'title'],\n              markdownCaptions: true,\n            },\n          },\n          {\n            resolve: `gatsby-remark-responsive-iframe`,\n            options: {\n              wrapperStyle: `margin-bottom: 1.0725rem`,\n            },\n          },\n          {\n            resolve: `gatsby-remark-copy-linked-files`,\n          },\n\n          {\n            resolve: `gatsby-remark-smartypants`,\n          },\n          {\n            resolve: `gatsby-remark-reading-time`,\n          },\n          {\n            resolve: 'gatsby-remark-autolink-headers',\n            options: {\n              offsetY: `200`,\n              enableCustomId: true,\n              icon: `<svg aria-hidden=\"true\" height=\"20\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"20\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg>`,\n            },\n          },\n          {\n            resolve: `gatsby-remark-vscode`,\n            options: {\n              theme: {\n                default: 'Light+ (default light)',\n                parentSelector: {\n                  // Any CSS selector will work!\n                  '.code-dark-plus': 'Dark+ (default dark)',\n                  '.code-light-plus': 'Light+ (default light)',\n                  '.code-tomorrow-night-blue': 'Tomorrow Night Blue',\n                  '.code-red': 'Red',\n                  '.code-abyss': 'Abyss',\n                  '.code-dark-visual-studio': 'Dark (Visual Studio)',\n                  '.code-light-visual-studio': 'Light (Visual Studio)',\n                  '.code-high-contrast': 'High Contrast',\n                  '.code-kimbie-dark': 'Kimbie Dark',\n                  '.code-monokai-dimmed': 'Monokai Dimmed',\n                  '.code-monokai': 'Monokai',\n                  '.code-quiet-light': 'Quiet Light',\n                  '.code-solarized-dark': 'Solarized Dark',\n                  '.code-solarized-light': 'Solarized Light',\n                  '.code-synth-wave-84': `SynthWave '84`,\n                },\n              },\n              extensions: ['synthwave-vscode'],\n              inlineCode: {\n                marker: '•',\n                theme: {\n                  default: 'Light+ (default light)',\n                  parentSelector: {\n                    // Any CSS selector will work!\n                    '.theme-dark': 'Dark+ (default dark)',\n                  },\n                },\n              },\n            },\n          },\n        ],\n      },\n    },\n    {\n      resolve: `gatsby-plugin-transition-link`,\n    },\n    {\n      resolve: `gatsby-plugin-nprogress`,\n      options: {\n        // Setting a color is optional.\n        color: `tomato`,\n        // Disable the loading spinner.\n        showSpinner: true,\n      },\n    },\n    `gatsby-plugin-emotion`,\n    {\n      resolve: `gatsby-source-filesystem`,\n      options: {\n        path: `${__dirname}/readme-profiles`,\n        name: `readme`,\n      },\n    },\n    {\n      resolve: `gatsby-source-filesystem`,\n      options: {\n        path: `${__dirname}/src/assets`,\n        name: `assets`,\n      },\n    },\n    `gatsby-transformer-sharp`,\n    `gatsby-plugin-sharp`,\n    {\n      resolve: `gatsby-plugin-google-analytics`,\n      options: {\n        trackingId: process.env.GOOGLE_ANALYTICS_TRACKING_KEY,\n      },\n    },\n    // {\n    //   resolve: `gatsby-plugin-feed`,\n    //   options: {\n    //     query: `\n    //       {\n    //         site {\n    //           siteMetadata {\n    //             title\n    //             description\n    //             siteUrl\n    //           }\n    //         }\n    //       }\n    //     `,\n    //   },\n    // },\n    {\n      resolve: `gatsby-plugin-manifest`,\n      options: {\n        name: `Developer Community Stats`,\n        short_name: `Developer`,\n        start_url: `/`,\n        background_color: `#ffffff`,\n        theme_color: `#663399`,\n        display: `minimal-ui`,\n      },\n    },\n    // `gatsby-plugin-offline`,\n    `gatsby-plugin-react-helmet`,\n    {\n      resolve: `gatsby-plugin-typography`,\n      options: {\n        pathToConfigModule: `src/utils/typography`,\n      },\n    },\n    {\n      resolve: `gatsby-plugin-sitemap`,\n      options: {\n        exclude: [`/app/nepali-date*`],\n      },\n    },\n    {\n      resolve: 'gatsby-plugin-html-attributes',\n      options: {\n        lang: 'en',\n      },\n    },\n  ],\n}\n"
  },
  {
    "path": "gatsby-node.js",
    "content": "const path = require(`path`)\nconst { createFilePath } = require(`gatsby-source-filesystem`)\nconst contributorsList = require('./contributors.json')\nlet stats\nif (process.env.ENV_TYPE === 'mock') {\n  stats = require('./mock-stats-generator')\n} else {\n  stats = require('./stats-generator')\n}\n\nconst findCountryCode = require('./country-codes')\n\n\nexports.createPages = ({ graphql, actions }) => {\n  const { createPage } = actions\n\n  const blogPost = path.resolve(`./src/templates/readme-profile.js`)\n  return graphql(\n    `\n      {\n        allMarkdownRemark(\n          limit: 1000\n        ) {\n          edges {\n            node {\n              id\n              fields {\n                slug\n                githubUserId\n              }\n            }\n          }\n        }\n      }\n    `\n  ).then(result => {\n    if (result.errors) {\n      throw result.errors\n    }\n\n    // Create blog posts pages.\n    const posts = result.data.allMarkdownRemark.edges\n\n    posts.forEach((post, index) => {\n      const previous = index === posts.length - 1 ? null : posts[index + 1].node\n      const next = index === 0 ? null : posts[index - 1].node\n\n      createPage({\n        path: post.node.fields.slug,\n        component: blogPost,\n        context: {\n          slug: post.node.fields.slug,\n          githubUserId: post.node.fields.githubUserId,\n          previous,\n          next,\n        },\n      })\n    })\n  })\n}\n\n\nexports.onCreateNode = ({ node, actions, getNode }) => {\n  const { createNodeField } = actions\n\n  if (node.internal.type === `MarkdownRemark`) {\n    let value\n    if (node.frontmatter.type === 'doc') {\n      value = `${createFilePath({ node, getNode }).replace(/\\/$/, '')}`\n    } else {\n      value = `/profile${createFilePath({ node, getNode }).replace(/\\/$/, '')}`\n    }\n\n    createNodeField({\n      name: `slug`,\n      node,\n      value,\n    })\n    createNodeField({\n      name: `githubUserId`,\n      node,\n      value: value.split('/').splice(-1)[0],\n    })\n  }\n}\n\n\nexports.sourceNodes = async ({\n  actions,\n  createContentDigest,\n  createNodeId,\n  getNodesByType,\n}) => {\n  const { createNode } = actions\n\n  return Promise.all(\n    Object.keys(contributorsList).reduce((batch, item) => {\n      if (batch[batch.length - 1].length === 20) {\n        batch.push([item])\n      } else {\n        batch[batch.length - 1].push(item)\n      }\n      return batch\n    }, [[]])\n      .map(contributors => stats.fetchCountStats(contributors))\n  ).then((allContributors) => allContributors.reduce((obj, nobj) => ({ ...obj, ...nobj }), {}))\n    .then(contributorStats => {\n      // loop through data and create Gatsby nodes\n      Object.entries(contributorStats).forEach(([contributor, information]) => {\n\n        createNode({\n          ...information,\n          ...contributorsList[contributor],\n          githubUserId: contributor,\n          id: createNodeId(`${contributor}`),\n          countryCode: findCountryCode(contributorsList[contributor].country),\n          parent: null,\n          children: [],\n          internal: {\n            type: 'contributor',\n            content: JSON.stringify(information),\n            contentDigest: createContentDigest(contributor),\n          },\n        })\n      })\n    }).catch(console.error)\n}\n"
  },
  {
    "path": "gatsby-ssr.js",
    "content": ""
  },
  {
    "path": "legacy_store.js",
    "content": "module.exports = {\n  \"slash-coders\": {\n    \"name\": \"Slash Coders\",\n    \"country\": \"United States\"\n  },\n  \"subeshb1\": {\n    \"name\": \"Subesh Bhandari\",\n    \"twitter\": \"https://twitter.com/subeshb1\",\n    \"linkedin\": \"https://www.linkedin.com/in/subesh-bhandari-523438112/\",\n    \"country\": \"Nepal\"\n  },\n  \"sketch-tester\": {\n    \"name\": \"Sketch Tester\",\n    \"country\": \"Kenya\"\n  },\n  \"acorson1\": {\n    \"name\": \"Alex Corson\",\n    \"country\": \"United Kingdom\"\n  },\n  \"OmkarGeedh\": {\n    \"name\": \"Omkar Geedh\",\n    \"country\": \"India\"\n  },\n  \"WickedInvi\": {\n    \"name\": \"Deyan Petrov\",\n    \"country\": \"United Kingdom\"\n  },\n  \"PankajGupta\": {\n    \"name\": \"Pankaj Gupta \",\n    \"country\": \"India\"\n  },\n  \"Shubham-Agarwal16\": {\n    \"name\": \"Shubham Agarwal\",\n    \"country\": \"India\",\n    \"linkedin\": \"www.linkedin.com/in/shubham-agarwal16\"\n  },\n  \"abhijeetekad\": {\n    \"country\": 'India',\n    \"name\": 'Abhijeet Rohidas Ekad',\n    \"linkedin\": 'https://www.linkedin.com/in/abhijeet-ekad-767a691aa/',\n  },\n  \"prajnakalpa\": {\n    name: \"Prajnakalpa Mishra\",\n    country: \"India\"\n  },\n  \"J3ffJessie\": {\n    \"name\": \"Jeff Jessie\",\n    \"country\": \"United States\",\n    \"twitter\": \"https://twitter.com/j3ffjessie\",\n    \"linkedin\": \"http://linkedin.com/in/jeff-jessie-4b2323a9\",\n  },\n  \"nisargpawade\": {\n   \"country\": \"India\",\n   \"name\": \"Nisarg Pawade\",\n  }\n}\n"
  },
  {
    "path": "mock-stats-generator.js",
    "content": "module.exports = {\n  fetchCountStats: () => {\n    return Promise.resolve({\n      abhijeetekad: {\n        repositoryCount: 2,\n        repoContributedCount: 6,\n        contributionYears: [2020],\n        followersCount: 1,\n        issuesCount: 0,\n        pullRequestsCount: 6,\n        avatarUrl:\n          'https://avatars1.githubusercontent.com/u/70329145?u=35847772b4aaca38d0b9ffe40f593020c79287a7&v=4',\n        firstContribution: 2020,\n        thisYearContribution: 32,\n      },\n      acorson1: {\n        repositoryCount: 4,\n        repoContributedCount: 4,\n        contributionYears: [2020, 2019, 2018, 2017],\n        followersCount: 0,\n        issuesCount: 0,\n        pullRequestsCount: 4,\n        avatarUrl: 'https://avatars2.githubusercontent.com/u/33963426?v=4',\n        firstContribution: 2017,\n        thisYearContribution: 46,\n      },\n      J3ffJessie: {\n        repositoryCount: 43,\n        repoContributedCount: 5,\n        contributionYears: [2020, 2019, 2018],\n        followersCount: 21,\n        issuesCount: 7,\n        pullRequestsCount: 19,\n        avatarUrl:\n          'https://avatars1.githubusercontent.com/u/39473092?u=6a37a9dfaf21f2412f6881fcf3f1009e26078e8d&v=4',\n        firstContribution: 2018,\n        thisYearContribution: 260,\n      },\n      nisargpawade: {\n        repositoryCount: 0,\n        repoContributedCount: 4,\n        contributionYears: [2020],\n        followersCount: 0,\n        issuesCount: 0,\n        pullRequestsCount: 5,\n        avatarUrl: 'https://avatars3.githubusercontent.com/u/70917826?v=4',\n        firstContribution: 2020,\n        thisYearContribution: 12,\n      },\n      OmkarGeedh: {\n        repositoryCount: 6,\n        repoContributedCount: 6,\n        contributionYears: [2020, 2019, 2018],\n        followersCount: 3,\n        issuesCount: 0,\n        pullRequestsCount: 7,\n        avatarUrl: 'https://avatars0.githubusercontent.com/u/40747153?v=4',\n        firstContribution: 2018,\n        thisYearContribution: 39,\n      },\n      PankajGupta: {\n        repositoryCount: 7,\n        repoContributedCount: 0,\n        contributionYears: [\n          2020,\n          2019,\n          2018,\n          2017,\n          2016,\n          2015,\n          2014,\n          2013,\n          2012,\n          2011,\n          2010,\n          2009,\n        ],\n        followersCount: 47,\n        issuesCount: 40,\n        pullRequestsCount: 22,\n        avatarUrl:\n          'https://avatars3.githubusercontent.com/u/71128?u=a3a9ade8081a829959859c1b77b7a0c3d5e0e04e&v=4',\n        firstContribution: 2009,\n        thisYearContribution: 0,\n      },\n      prajnakalpa: {\n        repositoryCount: 1,\n        repoContributedCount: 14,\n        contributionYears: [2020, 2019],\n        followersCount: 4,\n        issuesCount: 1,\n        pullRequestsCount: 17,\n        avatarUrl: 'https://avatars0.githubusercontent.com/u/56736266?v=4',\n        firstContribution: 2019,\n        thisYearContribution: 51,\n      },\n      'Shubham-Agarwal16': {\n        repositoryCount: 6,\n        repoContributedCount: 3,\n        contributionYears: [2020, 2019],\n        followersCount: 0,\n        issuesCount: 2,\n        pullRequestsCount: 5,\n        avatarUrl:\n          'https://avatars0.githubusercontent.com/u/53824562?u=a69f9cb990a6f33a40f781c1f726954eae86647a&v=4',\n        firstContribution: 2019,\n        thisYearContribution: 51,\n      },\n      'sketch-tester': {\n        repositoryCount: 0,\n        repoContributedCount: 1,\n        contributionYears: [2020, 2019, 2018],\n        followersCount: 0,\n        issuesCount: 0,\n        pullRequestsCount: 8,\n        avatarUrl: 'https://avatars2.githubusercontent.com/u/44187957?v=4',\n        firstContribution: 2018,\n        thisYearContribution: 7,\n      },\n      'slash-coders': {\n        repositoryCount: 0,\n        repoContributedCount: 1,\n        contributionYears: [2020],\n        followersCount: 0,\n        issuesCount: 0,\n        pullRequestsCount: 1,\n        avatarUrl: 'https://avatars3.githubusercontent.com/u/66586240?v=4',\n        firstContribution: 2020,\n        thisYearContribution: 5,\n      },\n      subeshb1: {\n        repositoryCount: 77,\n        repoContributedCount: 54,\n        contributionYears: [2020, 2019, 2018, 2017],\n        followersCount: 43,\n        issuesCount: 113,\n        pullRequestsCount: 261,\n        avatarUrl:\n          'https://avatars0.githubusercontent.com/u/27361350?u=a0ec07685b9692cd9c50ad4b4bb0fdc473064cb5&v=4',\n        firstContribution: 2017,\n        thisYearContribution: 2156,\n      },\n      WickedInvi: {\n        repositoryCount: 0,\n        repoContributedCount: 1,\n        contributionYears: [2020, 2019],\n        followersCount: 0,\n        issuesCount: 0,\n        pullRequestsCount: 1,\n        avatarUrl: 'https://avatars3.githubusercontent.com/u/49752323?v=4',\n        firstContribution: 2019,\n        thisYearContribution: 4,\n      },\n      KaushikiSinha: {\n        repositoryCount: 11,\n        repoContributedCount: 5,\n        contributionYears: [2020, 2019],\n        followersCount: 3,\n        issuesCount: 0,\n        pullRequestsCount: 1,\n        avatarUrl:\n          'https://avatars0.githubusercontent.com/u/57248094?s=460&u=9b0c945cdab8b81508d1191b0383d6dafc56f04b&v=4',\n        firstContribution: 2019,\n        thisYearContribution: 10,\n      },\n      gauravgutholia: {\n        repositoryCount: 0,\n        repoContributedCount: 1,\n        contributionYears: [2020],\n        followersCount: 0,\n        issuesCount: 0,\n        pullRequestsCount: 1,\n        avatarUrl:\n          'https://avatars3.githubusercontent.com/u/49594934?s=400&u=84f6c0242e4b61e6747108f55651f659352c5a1a&v=4',\n        firstContribution: 2020,\n        thisYearContribution: 4,\n      },\n    })\n  },\n}\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"developer-community-stats\",\n  \"private\": false,\n  \"description\": \"A repository to encourage beginners to contribute to open source and for all contributors to view their Github stats.\",\n  \"version\": \"0.1.0\",\n  \"author\": \"Developer Community Stats <subeshb1@gmail.com>\",\n  \"bugs\": {\n    \"url\": \"https://github.com/subeshb1/developer-community-stats/issues\"\n  },\n  \"dependencies\": {\n    \"@ant-design/icons\": \"^4.2.2\",\n    \"@chakra-ui/core\": \"^0.8.0\",\n    \"@emotion/core\": \"^10.0.28\",\n    \"@emotion/styled\": \"^10.0.27\",\n    \"@mdx-js/mdx\": \"^1.1.0\",\n    \"@mdx-js/react\": \"^1.0.27\",\n    \"@mdx-js/tag\": \"^0.20.3\",\n    \"@popperjs/core\": \"^2.4.0\",\n    \"ansi_up\": \"^4.0.4\",\n    \"antd\": \"^4.2.4\",\n    \"change-case\": \"^3.1.0\",\n    \"disqus-react\": \"^1.0.6\",\n    \"dotenv\": \"^8.2.0\",\n    \"emotion-theming\": \"^10.0.27\",\n    \"flag-icon-css\": \"^3.5.0\",\n    \"gatsby\": \"^2.24.83\",\n    \"gatsby-image\": \"^2.0.22\",\n    \"gatsby-mdx\": \"^0.6.3\",\n    \"gatsby-plugin-advanced-sitemap\": \"^1.5.5\",\n    \"gatsby-plugin-emotion\": \"^4.1.2\",\n    \"gatsby-plugin-feed\": \"^2.0.8\",\n    \"gatsby-plugin-google-analytics\": \"^2.0.5\",\n    \"gatsby-plugin-html-attributes\": \"^1.0.5\",\n    \"gatsby-plugin-manifest\": \"^2.0.5\",\n    \"gatsby-plugin-nprogress\": \"^2.1.2\",\n    \"gatsby-plugin-offline\": \"^2.0.5\",\n    \"gatsby-plugin-react-helmet\": \"^3.0.0\",\n    \"gatsby-plugin-sass\": \"^2.1.3\",\n    \"gatsby-plugin-sharp\": \"^2.0.6\",\n    \"gatsby-plugin-sitemap\": \"^2.4.5\",\n    \"gatsby-plugin-transition-link\": \"^1.12.4\",\n    \"gatsby-plugin-typography\": \"^2.2.0\",\n    \"gatsby-remark-autolink-headers\": \"^2.1.3\",\n    \"gatsby-remark-copy-linked-files\": \"^2.3.3\",\n    \"gatsby-remark-images\": \"^3.1.7\",\n    \"gatsby-remark-prismjs\": \"^3.3.3\",\n    \"gatsby-remark-reading-time\": \"^1.0.1\",\n    \"gatsby-remark-responsive-iframe\": \"^2.0.5\",\n    \"gatsby-remark-series\": \"^1.0.1\",\n    \"gatsby-remark-smartypants\": \"^2.0.5\",\n    \"gatsby-remark-vscode\": \"^2.1.2\",\n    \"gatsby-source-filesystem\": \"^2.0.2\",\n    \"gatsby-transformer-remark\": \"^2.6.9\",\n    \"gatsby-transformer-sharp\": \"^2.1.3\",\n    \"gsap\": \"^3.2.6\",\n    \"jest\": \"^26.4.2\",\n    \"mdx-utils\": \"^0.2.0\",\n    \"moment\": \"^2.27.0\",\n    \"nepali-date-converter\": \"^3.3.0\",\n    \"node-sass\": \"^4.12.0\",\n    \"prism-react-renderer\": \"^0.1.5\",\n    \"prism-themes\": \"^1.1.0\",\n    \"prismjs\": \"^1.16.0\",\n    \"react\": \"^16.13.1\",\n    \"react-color\": \"^2.18.1\",\n    \"react-dom\": \"^16.13.1\",\n    \"react-dropzone\": \"^11.0.2\",\n    \"react-helmet\": \"^5.2.0\",\n    \"react-icons\": \"^3.10.0\",\n    \"react-laag\": \"^1.7.3\",\n    \"react-live\": \"^2.1.2\",\n    \"react-popper\": \"^2.2.3\",\n    \"react-redux\": \"^7.2.0\",\n    \"react-sticky\": \"^6.0.3\",\n    \"react-typography\": \"^0.16.13\",\n    \"react-use\": \"^15.1.0\",\n    \"redux\": \"^4.0.5\",\n    \"redux-thunk\": \"^2.3.0\",\n    \"synthwave-vscode\": \"github:robb0wen/synthwave-vscode\",\n    \"typeface-ibm-plex-mono\": \"^0.0.61\",\n    \"typeface-inconsolata\": \"^0.0.72\",\n    \"typeface-libre-baskerville\": \"^0.0.72\",\n    \"typeface-lora\": \"^0.0.72\",\n    \"typeface-merriweather\": \"0.0.72\",\n    \"typeface-montserrat\": \"0.0.75\",\n    \"typography\": \"^0.16.17\",\n    \"typography-theme-wordpress-2016\": \"^0.16.19\"\n  },\n  \"devDependencies\": {\n    \"eslint\": \"^6.1.0\",\n    \"eslint-plugin-react\": \"^7.11.1\",\n    \"prettier\": \"^1.14.2\"\n  },\n  \"homepage\": \"subeshbhandari.com\",\n  \"keywords\": [\n    \"gatsby\"\n  ],\n  \"license\": \"MIT\",\n  \"main\": \"n/a\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/subeshb1/subeshbhandari.com\"\n  },\n  \"scripts\": {\n    \"dev\": \"gatsby develop\",\n    \"lint\": \"eslint --ext .js,.jsx --ignore-pattern public .\",\n    \"test\": \"jest ./specs\",\n    \"format\": \"prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'\",\n    \"develop\": \"gatsby develop\",\n    \"start\": \"npm run develop\",\n    \"build\": \"gatsby build\",\n    \"fix-semi\": \"eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\\\"semi\\\": [2, \\\"never\\\"], \\\"no-extra-semi\\\": [2]}' --fix gatsby-node.js\"\n  }\n}\n"
  },
  {
    "path": "readme-profiles/5h0bh4nk.md",
    "content": "<h1 align=\"center\">Yo ✌️, I'm ShubhanK</h1>\n<h3 align=\"center\">A budding developer keen to learn</h3>\n\n<br/>\n\n***My work is mostly realted to Cyber-Security and Web-Development***\n- 👨‍💻  ***Check out my repos to view some of my work***   👨‍💻\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=5h0bh4nk&show_icons=true&count_private=true&theme=dark\" alt=\"ShubhanK\" /></p>\n"
  },
  {
    "path": "readme-profiles/96RadhikaJadhav.md",
    "content": "<h1 align=\"center\">Hello 👋, I'm Radhika Jadhav</h1>\n<h3 align=\"center\">Working as a system engineer</h3>\n<br/>\n\n\n- 🌱 I’m currently learning **Python**\n\n\n### Connect with me:\n\n[linkedin]: https://www.linkedin.com/in/radhika-jadhav-297672160/\n\n[Twitter]: https://twitter.com/Radhika47579652/\n\n[Github]: https://github.com/96RadhikaJadhav/\n\n[email]: radhikajadhav014@gmail.com"
  },
  {
    "path": "readme-profiles/AAAliBaba.md",
    "content": "<h1 align=\"center\">Hey 👋, I'm Arafat Arman</h1>\n<h3 align=\"center\">Aspiring Software Engineer</h3>\n<br/>\n\n\n- I like to develop websites using React, mobile applications using C#, and I also love fitness!\n- Currently learning full-stack development 🙌\n\n\n### Check me out!\n\n[linkedin]: https://www.linkedin.com/in/arafat-arman-0207a714a/\n\n[Github]: https://github.com/AAAliBaba/"
  },
  {
    "path": "readme-profiles/Abhikumar98.md",
    "content": "<div align=\"center\">\n  <h1> Hey there <img src=\"https://media.giphy.com/media/hvRJCLFzcasrR4ia7z/giphy.gif\" width=\"25px\"></h1>\n</div>\n\n<div align=\"center\">\n<h3> 😄 Abhishek Kumar | 💻 A Frontend developer | 🌏 Bangalore, India </h3>\n</div>\n\n### :octocat: About me\n\n- 🔭 I’m a `React` person.\n- 🌱 I’m currently learning `vercel` and `nextJs`\n- 🤔 I’m looking for help with `Devops`\n- 💬 Ask me about `javascript/design`\n- ⚡ Work hard, play hard\n\n<div align=\"center\">\n\n✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨\n\n[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=AbhiKumar98&layout=compact)](https://github.com/anuraghazra/github-readme-stats)\n![Trinity's github stats](https://github-readme-stats.vercel.app/api/?username=AbhiKumar98&show_icons=true&title_color=1F75C8&icon_color=2AA410&text_color=043667&bg_color=ffffff)\n\n</div>\n"
  },
  {
    "path": "readme-profiles/Ahkam95.md",
    "content": "<div align=\"center\">\n  <h1> Hey there <img src=\"https://media.giphy.com/media/hvRJCLFzcasrR4ia7z/giphy.gif\" width=\"25px\"></h1>\n</div>\n\n<div align=\"center\">\n<h3> 😄 Ahkam Naseek | 💻 Full Stck Developer | AI Enthusiastic | 🌏 Colombo, Sri Lanka </h3>\n</div>\n\n### :octocat: About me\n\n- 🔭 I’m a Computer Science Undergraduate\n- 🌱 I love algorithms and problem solving\n- 🤔 I’m Currently learning `graph neural net`\n- 💬 Ask me about `javascript/design`\n- ⚡ Work hard at the same time smart too.\n\n<div align=\"center\">\n\n✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨\n\n[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=Ahkam95&layout=compact)](https://github.com/anuraghazra/github-readme-stats)\n![Trinity's github stats](https://github-readme-stats.vercel.app/api/?username=Ahkam95&show_icons=true&title_color=1F75C8&icon_color=2AA410&text_color=043667&bg_color=ffffff)\n\n</div>\n"
  },
  {
    "path": "readme-profiles/AhmadShaaban.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Ahmad</h1>\n<h3 align=\"center\">Computer Science fresh Grad from Cairo University</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **C++, Java and React**\n\nThis is my first time participating in Hacktoberfest.\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=AhmadShaaban&theme=dracula&column=3&margin-w=15&margin-h=15%20(https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=AhmadShaaban&show_icons=true&count_private=true&theme=dark\" alt=\"AhmadShaaban\" /></p>"
  },
  {
    "path": "readme-profiles/AnshumanMahato.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Anshuman</h1>\n<h3 align=\"center\">A passionate geek from India...</h3>\n\n<h3 align=\"left\">Github Trophies:</h3>\n<p align=\"left\"> <a href=\"https://github.com/ryo-ma/github-profile-trophy\"><img src=\"https://github-profile-trophy.vercel.app/?username=anshumanmahato\" alt=\"anshumanmahato\" /></a> </p>\n\n<h3 align=\"left\">About me:</h3>\n\n- 📚 Currently pursuing **Bachelors in Computer Application** from **Mrs.K.M.P.M Vocational College.**\n\n- 💬 Ask me about **C,C++ and maybe JavaScript**\n\n- 📫 How to reach me **anshuman.mahato0935@gmail.com**\n\n- 🤗 I like 🎨 **sketching** and 🎮 **video gaming**\n\n- ⚡ Fun fact **I can talk endlessly about Marvel and DC characters, Harry Potter, Assassin's Creed and similar stuff.**\n\n<h3 align=\"left\">Connect with me:</h3>\n<p align=\"left\">\n<a href=\"https://linkedin.com/in/anshuman-mahato-15b74b1a9\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/linkedin.svg\" alt=\"anshuman-mahato-15b74b1a9\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://fb.com/anshuman.mahato.0935\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/facebook.svg\" alt=\"anshuman.mahato.0935\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://instagram.com/anshuman_mahato\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/instagram.svg\" alt=\"anshuman_mahato\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://www.codechef.com/users/anshuman0935\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.1.0/icons/codechef.svg\" alt=\"anshuman0935\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://www.hackerrank.com/anshumanmahato\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/hackerrank.svg\" alt=\"anshumanmahato\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://www.leetcode.com/anshumanmahato\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/leetcode.svg\" alt=\"anshumanmahato\" height=\"30\" width=\"40\" /></a>\n</p>\n\n<h3 align=\"left\">Languages and Tools:</h3>\n<p align=\"left\"> <a href=\"https://www.cprogramming.com/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/c/c-original.svg\" alt=\"c\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.w3schools.com/cpp/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/cplusplus/cplusplus-original.svg\" alt=\"cplusplus\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.w3schools.com/css/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/css3/css3-original-wordmark.svg\" alt=\"css3\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.w3.org/html/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/html5/html5-original-wordmark.svg\" alt=\"html5\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.adobe.com/in/products/illustrator.html\" target=\"_blank\"> <img src=\"https://www.vectorlogo.zone/logos/adobe_illustrator/adobe_illustrator-icon.svg\" alt=\"illustrator\" width=\"40\" height=\"40\"/> </a> <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/javascript/javascript-original.svg\" alt=\"javascript\" width=\"40\" height=\"40\"/> </a> <a href=\"https://nodejs.org\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/nodejs/nodejs-original-wordmark.svg\" alt=\"nodejs\" width=\"40\" height=\"40\"/> </a> </p>\n\n<p><img align=\"left\" src=\"https://github-readme-stats.vercel.app/api/top-langs?username=anshumanmahato&show_icons=true&locale=en&layout=compact\" alt=\"anshumanmahato\" /></p>\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=anshumanmahato&show_icons=true&locale=en\" alt=\"anshumanmahato\" /></p>"
  },
  {
    "path": "readme-profiles/Ashank16.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Ashank </h1>\n\n<br/>\n\n- 🌱 I’m currently a student who wants to try and learn new languages**\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=Ashank16&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=Ashank16&show_icons=true&count_private=true&theme=dark\" alt=\"Ashank16\" /></p>\n"
  },
  {
    "path": "readme-profiles/BasilVictor.md",
    "content": "<h1>Hi 👋, I'm Basil</h1>\n\n<br/>\n\n- 📱 **Android Developer**\n- 🌐 **Avid Web Developer**\n- 🤖 **Compititve Coding Enthusiast**\n\n<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=BasilVictor&show_icons=true&count_private=true&theme=radical\" alt=\"BasilVictor\" /></p>\n"
  },
  {
    "path": "readme-profiles/BhanukaC.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Bhanuka</h1>\n<h3 align=\"center\">An undergraduate student at Sri Lanka</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **PHP, Python C and Dart**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=BhanukaC&theme=flat&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=BhanukaC&show_icons=true&count_private=true&theme=light\" alt=\"BhanukaC\" /></p>\n"
  },
  {
    "path": "readme-profiles/Bharrod321.md",
    "content": "<h1 align=\"center\">Brad's Corner!</h1>\n<h3 align=\"center\">Software Engineer</h3>\n<br/>\n\n- I code here in there what ever language is needed.  Learned a bit of C++ once because the job needed it\n- Still trying to get my PRs in while working and spending time with my family\n- I enjoy learning new things\n- Happy Hacktoberfest 2020 everyone!!!\n"
  },
  {
    "path": "readme-profiles/BillGun.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Billy</h1>\n<h3 align=\"center\">A Software Developer From Indonesia</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **Javascript, Angular, and React**\n\nI hope i can contribute more to Open Source\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=billgun&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=billgun&show_icons=true&count_private=true&theme=dark\" alt=\"billgun\" /></p>\n"
  },
  {
    "path": "readme-profiles/Chobocharles.md",
    "content": "﻿<h1 align=\"center\">Hello! 👋 My name is Charles</h1>\n<h3 align=\"center\">I'm a software engineer currently from the United States of America</h3>\n\n<br/>\n\n- 🌱 I'm currently developing with **C#/.NET Framework, C#/.NET Core, and JavaScript**\n\nI'm really hoping to be able to contribute more to open source projects :)\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=Chobocharles&theme=darkhub&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=Chobocharles&show_icons=true&count_private=true&theme=dark\" alt=\"Chobocharles\" /></p>"
  },
  {
    "path": "readme-profiles/Deveshgsk.md",
    "content": "<h1 align=\"center\">Hi There, I am Devesh</h1>\n<h2 align=\"center\">I am new to Open source contributition</h2>\n<br>\n\n- 🌱 I have done some projects on App development and on Making Chat bot using Rasa\n- 🌱 But they were in no way open source also the repos were private\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=Deveshgsk&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=Deveshgsk&show_icons=true&count_private=true&theme=dark\" alt=\"Deveshgsk\" /></p>"
  },
  {
    "path": "readme-profiles/Elisecroft.md",
    "content": "<h1 align=\"center\">Hello 👋, I'm Elise</h1>\n<h3 align=\"center\">A Front-end Developer From France</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **React, Node.JS and more**\n- 🌱  I also like game development 🎮 \n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=Elisecroft&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=Elisecroft&show_icons=true&count_private=true&theme=dark\" alt=\"Elisecroft\" /></p>\n"
  },
  {
    "path": "readme-profiles/Gaurab4.md",
    "content": "Hi 👋, I'm gaurab\nA Developer From india \ni'm first year student\n"
  },
  {
    "path": "readme-profiles/Guberlo.md",
    "content": "### Hi there, my name is Salvo, but you can call me Guberlo 👋\n\n## I'm a Computer Science student, currently studying at the University of Catania.\n- 🌱 I'm currently learning GO and node.js\n- 🥅 I'm trying to improve my coding skills and I think that open source is a great way to do this.\n\n### Contacs:\n[<img align=\"left\" alt=\"Salvo Asero | Twitter\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/twitter.svg\" />][twitter]\n\n<br />\n\n### Languages and tools:\n[<img align=\"left\" alt=\"Visual Studio Code\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/visual-studio-code/visual-studio-code.png\" />][vscode]\n[<img align=\"left\" alt=\"JavaScript\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/javascript/javascript.png\" />][js]\n[<img align=\"left\" alt=\"Node.js\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/nodejs/nodejs.png\" />][nodejs]\n[<img align=\"left\" alt=\"MySQL\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/mysql/mysql.png\" />][MYSQL]\n[<img align='left' alt=\"python\" width=\"26px\" src=\"https://www.python.org/static/opengraph-icon-200x200.png\" />][python]\n[<img align='left' alt=\"cpp\" width=\"26px\" src=\"https://upload.wikimedia.org/wikipedia/commons/1/18/ISO_C%2B%2B_Logo.svg\" />][cpp]\n\n<br />\n<br />\n\n---\n\n<details>\n  <summary>:zap: GitHub Stats</summary>\n\n  <img align=\"left\" alt=\"codeSTACKr's GitHub Stats\" src=\"https://github-readme-stats.codestackr.vercel.app/api?username=Guberlo&show_icons=true&hide_border=true\" />\n\n</details>\n\n[twitter]: https://www.twitter.com/SalvoAsero\n[vscode]: https://code.visualstudio.com/\n[js]: https://www.javascript.com/\n[nodejs]: https://nodejs.org/\n[MYSQL]: https://www.mysql.com/\n[python]: https://www.python.org/\n[cpp]: https://www.cplusplus.com/\n\n"
  },
  {
    "path": "readme-profiles/Hamza-Slama.md",
    "content": "\n\n<h1 align=\"center\">Hi there 👋</h1>\n<h3 align=\"center\">A passionate Software Engineer</h3>\n\n<p align=\"left\"> <img src=\"https://komarev.com/ghpvc/?username=Hamza-Slama\" alt=\"hamzaslama\" /> </p>\n\n- 🔭 I’m currently working with **Sofrecom Tunisie** as a software engineer.\n\n- 🌱 Lifelong Learning\n\n- 📫 How to reach me **hamzaslama8@gmail.com**\n\n<p align=\"left\">\n<img src=\"https://devicons.github.io/devicon/devicon.git/icons/java/java-original-wordmark.svg\" alt=\"java\" width=\"40\" height=\"40\"/> \n<img src=\"https://devicons.github.io/devicon/devicon.git/icons/android/android-original-wordmark.svg\" alt=\"android\" width=\"40\" height=\"40\"/>\n<img src=\"https://devicons.github.io/devicon/devicon.git/icons/docker/docker-original-wordmark.svg\" alt=\"docker\" width=\"40\" height=\"40\"/> \n<img src=\"https://devicons.github.io/devicon/devicon.git/icons/postgresql/postgresql-original-wordmark.svg\" alt=\"postgresql\" width=\"40\" height=\"40\"/> \n<img src=\"https://devicons.github.io/devicon/devicon.git/icons/git/git-original.svg\" alt=\"git\" width=\"40\" height=\"40\"/> \n<img src=\"https://devicons.github.io/devicon/devicon.git/icons/intellij/intellij-original-wordmark.svg\" alt=\"intellij\" width=\"40\" height=\"40\"/> \n</p>\n\n<p align=\"center\"> \n  <img src=\"https://github-readme-stats.vercel.app/api?username=Hamza-Slama&show_icons=true\" alt=\"hamza-slama\" />\n</p>\n\n<p align=\"center\">\n<a href=\"https://www.linkedin.com/in/hamza-slama-/\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/linkedin.svg\" alt=\"https://www.linkedin.com/in/hamza-slama-/\" height=\"40\" width=\"40\" /></a>\n<a href=\"https://twitter.com/hamzaslama2\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/twitter.svg\" alt=\"hamza.slama\" height=\"40\" width=\"40\" /></a>\n</p>\n"
  },
  {
    "path": "readme-profiles/Janitham97.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Janitha Missaka</h1>\n<h3 align=\"center\">A Software Developer From Nepal</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **RactJs and Springboot**\n\n"
  },
  {
    "path": "readme-profiles/Kritimakaushal.md",
    "content": "# Hello! I am Kritima!\n\n##### I am a 3rd year student persuing **Bachelors of Technology** course from **Banasthali Vidyapith, Rajasthan.**\n##### I love competitive Coding and I regularly participate in challenges on **CODECHEF.**\n##### My preferred programming language is **JAVA**. Also I am interested in Java Backend Development.\n##### I am currently learning Servlets and Spring MVC to build a project based on java backend technology.\n##### I learnt about open source and Hacktober Fest recently and hence I have just started with a very few Pull Requests submissions. Hope to learn a lot from the Github Tech Community.\n\n#\n\n\n[![Anurag's github stats](https://github-readme-stats.vercel.app/api?username=Kritimakaushal&show_icons=true&theme=dracula)](https://github.com/anuraghazra/github-readme-stats)\n\n"
  },
  {
    "path": "readme-profiles/Mogakamo.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Amos Mogaka</h1>\n<h3 align=\"center\">A passionate frontend developer from Kenya</h3>\n\n<p align=\"left\"> <img src=\"https://komarev.com/ghpvc/?username=mogakamo&label=Profile%20views&color=0e75b6&style=flat\" alt=\"mogakamo\" /> </p>\n\n<p align=\"left\"> <a href=\"https://github.com/ryo-ma/github-profile-trophy\"><img src=\"https://github-profile-trophy.vercel.app/?username=mogakamo\" alt=\"mogakamo\" /></a> </p>\n\n<p align=\"left\"> <a href=\"https://twitter.com/m_ogakadev\" target=\"blank\"><img src=\"https://img.shields.io/twitter/follow/m_ogakadev?logo=twitter&style=for-the-badge\" alt=\"m_ogakadev\" /></a> </p>\n\n- 🔭 I’m currently working on **Wasify**\n\n- 🌱 I’m currently learning **React Native**\n\n- 👨‍💻 All of my projects are available at [https://www.github.com/mogakamo](https://www.github.com/mogakamo)\n\n- 💬 Ask me about **java, javascript**\n\n- 📫 How to reach me **mogaka.amo254@gmail.com**\n\n- ⚡ Fun fact **I think i'm friendly**\n\n<h3 align=\"left\">Connect with me:</h3>\n<p align=\"left\">\n<a href=\"https://dev.to/mogaka_dev\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/dev-dot-to.svg\" alt=\"mogaka_dev\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://twitter.com/m_ogakadev\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/twitter.svg\" alt=\"m_ogakadev\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://instagram.com/mogaka_dev\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/instagram.svg\" alt=\"mogaka_dev\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://medium.com/@mogaka.amo254\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/medium.svg\" alt=\"@mogaka.amo254\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://www.codechef.com/users/mogaka_dev\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.1.0/icons/codechef.svg\" alt=\"mogaka_dev\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://www.topcoder.com/members/mogaka_dev\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/topcoder.svg\" alt=\"mogaka_dev\" height=\"30\" width=\"40\" /></a>\n</p>\n\n<h3 align=\"left\">Languages and Tools:</h3>\n<p align=\"left\"> <a href=\"https://azure.microsoft.com/en-in/\" target=\"_blank\"> <img src=\"https://www.vectorlogo.zone/logos/microsoft_azure/microsoft_azure-icon.svg\" alt=\"azure\" width=\"40\" height=\"40\"/> </a> <a href=\"https://getbootstrap.com\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/bootstrap/bootstrap-plain.svg\" alt=\"bootstrap\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.cprogramming.com/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/c/c-original.svg\" alt=\"c\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.w3schools.com/css/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/css3/css3-original-wordmark.svg\" alt=\"css3\" width=\"40\" height=\"40\"/> </a> <a href=\"https://expressjs.com\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/express/express-original-wordmark.svg\" alt=\"express\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.figma.com/\" target=\"_blank\"> <img src=\"https://www.vectorlogo.zone/logos/figma/figma-icon.svg\" alt=\"figma\" width=\"40\" height=\"40\"/> </a> <a href=\"https://firebase.google.com/\" target=\"_blank\"> <img src=\"https://www.vectorlogo.zone/logos/firebase/firebase-icon.svg\" alt=\"firebase\" width=\"40\" height=\"40\"/> </a> <a href=\"https://cloud.google.com\" target=\"_blank\"> <img src=\"https://www.vectorlogo.zone/logos/google_cloud/google_cloud-icon.svg\" alt=\"gcp\" width=\"40\" height=\"40\"/> </a> <a href=\"https://git-scm.com/\" target=\"_blank\"> <img src=\"https://www.vectorlogo.zone/logos/git-scm/git-scm-icon.svg\" alt=\"git\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.w3.org/html/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/html5/html5-original-wordmark.svg\" alt=\"html5\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.java.com\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/java/java-original-wordmark.svg\" alt=\"java\" width=\"40\" height=\"40\"/> </a> <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/javascript/javascript-original.svg\" alt=\"javascript\" width=\"40\" height=\"40\"/> </a> <a href=\"https://jestjs.io\" target=\"_blank\"> <img src=\"https://www.vectorlogo.zone/logos/jestjsio/jestjsio-icon.svg\" alt=\"jest\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.linux.org/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/linux/linux-original.svg\" alt=\"linux\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.mongodb.com/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/mongodb/mongodb-original-wordmark.svg\" alt=\"mongodb\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.mysql.com/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/mysql/mysql-original-wordmark.svg\" alt=\"mysql\" width=\"40\" height=\"40\"/> </a> <a href=\"https://nodejs.org\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/nodejs/nodejs-original-wordmark.svg\" alt=\"nodejs\" width=\"40\" height=\"40\"/> </a> <a href=\"https://postman.com\" target=\"_blank\"> <img src=\"https://www.vectorlogo.zone/logos/getpostman/getpostman-icon.svg\" alt=\"postman\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.python.org\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/python/python-original.svg\" alt=\"python\" width=\"40\" height=\"40\"/> </a> <a href=\"https://reactjs.org/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/react/react-original-wordmark.svg\" alt=\"react\" width=\"40\" height=\"40\"/> </a> <a href=\"https://reactnative.dev/\" target=\"_blank\"> <img src=\"https://reactnative.dev/img/header_logo.svg\" alt=\"reactnative\" width=\"40\" height=\"40\"/> </a> <a href=\"https://redux.js.org\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/redux/redux-original.svg\" alt=\"redux\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.typescriptlang.org/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/typescript/typescript-original.svg\" alt=\"typescript\" width=\"40\" height=\"40\"/> </a> <a href=\"https://webpack.js.org\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/webpack/webpack-original.svg\" alt=\"webpack\" width=\"40\" height=\"40\"/> </a> </p>\n\n<p><img align=\"left\" src=\"https://github-readme-stats.vercel.app/api/top-langs?username=mogakamo&show_icons=true&locale=en&layout=compact\" alt=\"mogakamo\" /></p>\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=mogakamo&show_icons=true&locale=en\" alt=\"mogakamo\" /></p>\n"
  },
  {
    "path": "readme-profiles/Mr-emeka.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Ukpai Chukwuemeka</h1>\n<h3 align=\"center\">A Software Developer From Nigeria</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **AWS, Firebase, Wordpress, React and Node.js(MERN STACK)**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=mr-emeka&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=mr-emeka&show_icons=true&count_private=true&theme=dark\" alt=\"mr-emeka\" /></p>\n"
  },
  {
    "path": "readme-profiles/NathanPickard.md",
    "content": "<h1 align=\"center\">Hi, I'm Nathan Pickard 👋</h1>\n<h3 align=\"center\">Web developer from Portland, Oregon</h3>\n\n<p align=\"center\"> <a href=\"https://twitter.com/nathanpickard\" target=\"blank\"><img src=\"https://img.shields.io/twitter/follow/nathanpickard?logo=twitter&style=for-the-badge\" alt=\"nathanpickard\" /></a> </p>\n\n- 🔭 I’m currently working on becoming an [AWS Certified Developer](https://aws.amazon.com/certification/certified-developer-associate/)\n\n- 🌱 I’m currently learning **RxJs, Scully**\n\n- 💬 Ask me about **JavaScript/TypeScript, Angular, and AWS**\n\n- ⚡ Fun fact: coffee and BBQ enthusiast ☕️ 🍖 \n\n<h3 align=\"left\">Languages and Tools:</h3>\n<p align=\"left\"> <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/javascript/javascript-original.svg\" alt=\"javascript\" width=\"40\" height=\"40\"/> </a> <a href=\"https://www.typescriptlang.org/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/typescript/typescript-original.svg\" alt=\"typescript\" width=\"40\" height=\"40\"/> </a> <a href=\"https://angular.io\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/angularjs/angularjs-original.svg\" alt=\"angularjs\" width=\"40\" height=\"40\"/> </a> <a href=\"https://reactjs.org/\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/react/react-original-wordmark.svg\" alt=\"react\" width=\"40\" height=\"40\"/> </a> <a href=\"https://aws.amazon.com\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/amazonwebservices/amazonwebservices-original-wordmark.svg\" alt=\"aws\" width=\"40\" height=\"40\"/> </a> <a href=\"https://aws.amazon.com/amplify/\" target=\"_blank\"> <img src=\"https://docs.amplify.aws/assets/logo-dark.svg\" alt=\"amplify\" width=\"40\" height=\"40\"/> </a> <a href=\"https://firebase.google.com/\" target=\"_blank\"> <img src=\"https://www.vectorlogo.zone/logos/firebase/firebase-icon.svg\" alt=\"firebase\" width=\"40\" height=\"40\"/> </a>  <a href=\"https://nodejs.org\" target=\"_blank\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/nodejs/nodejs-original-wordmark.svg\" alt=\"nodejs\" width=\"40\" height=\"40\"/> </a>  <a href=\"https://scully.io/\" target=\"_blank\"> <img src=\"https://raw.githubusercontent.com/scullyio/scully/main/assets/logos/SVG/scullyio-icon.svg\" alt=\"scully\" width=\"40\" height=\"40\"/> </a> </p>\n\n### My latest blogs posts:\n<!-- BLOG-POST-LIST:START -->\n- [Quick Release Creator - GitHub Action](https://dev.to/nathanpickard/quick-release-creator-github-action-1c08)\n- [Let’s use Angular Console!](https://dev.to/nathanpickard/let-s-use-angular-console-4nof)\n<!-- BLOG-POST-LIST:END -->\n\n<p align=\"center\">\n<h3 align=\"left\">Connect with me:</h3>\n<a href=\"https://dev.to/https://dev.to/nathanpickard\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/dev-dot-to.svg\" alt=\"https://dev.to/nathanpickard\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://twitter.com/nathanpickard\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/twitter.svg\" alt=\"nathanpickard\" height=\"30\" width=\"40\" /></a>\n<a href=\"https://linkedin.com/in/nathanpickard\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/linkedin.svg\" alt=\"nathanpickard\" height=\"30\" width=\"40\" /></a>\n</p>\n"
  },
  {
    "path": "readme-profiles/Nyd3lig.md",
    "content": "Hello, I am Nyd3lig.\n\nAn aspiring web developer in the making from Norway!\n\nCurrently I am studying HTML, CSS and JS. And was challanged by a friend to join hacktober fest, so far I am having a lot of fun with git, and github, but it's a little confusing. \n\nBut I hope with enough exposure I'll learn the way!"
  },
  {
    "path": "readme-profiles/Pratikzzz.md",
    "content": "# Heyyaa Folks!! Pratik this side <img src=\"https://raw.githubusercontent.com/MartinHeinz/MartinHeinz/master/wave.gif\" width=\"40\">\n\n\n- 🔭 I’m currently working on Web-App Pentesting.\n- 🌱 I’m currently learning Blockchain Pentesting.\n- 👯 I’m looking to collaborate on Github\n- 💬 Ask me about ethical hacking, programming, networking.\n- 📫 How to reach me: pratik.gupta1998@gmail.com\n- Eat 🍽  Sleep 🛌  Hack⚡  Repeat 🔁\n\n<br />\n\n## Languages and Tools I know:\n\n<p align=\"center\">\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/html/html.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/css/css.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/javascript/javascript.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/php/php.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/bash/bash.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/linux/linux.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/mysql/mysql.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/mongodb/mongodb.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/firebase/firebase.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/react/react.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/cpp/cpp.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/c/c.png\"></code>\n<code><img height=\"40\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/docker/docker.png\"></code>\n</p>\n\n</br>\n\n## Github Stats!\n\n<a href=\"https://github.com/Pratikzzz/\">\n  <img align=\"center\" src=\"https://github-profile-trophy.vercel.app/?username=Pratikzzz&theme=gruvbox&row=2&column=3\">\n</a>\n<a href=\"https://github.com/Pratikzzz/github-readme-stats\">\n  <img align=\"center\" align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=Pratikzzz&count_private=true&show_icons=true&theme=gruvbox\" />\n</a>\n\n<br />\n\n## Let's connect on a cup of coffee and chat!\n### Open for collaborations.\n[<img src = \"https://img.shields.io/badge/gmail-D44638.svg?&style=for-the-badge&logo=gmail&logoColor=white\" />](mailto:pratik.gupta1998@gmail.com) [<img src = \"https://img.shields.io/badge/instagram-%23E4405F.svg?&style=for-the-badge&logo=instagram&logoColor=white\">](https://www.instagram.com/pratik__2511/) [<img src = \"https://img.shields.io/badge/facebook-%231877F2.svg?&style=for-the-badge&logo=facebook&logoColor=white\">](https://www.facebook.com/pratik.gupta.77398/) [<img src= \"https://img.shields.io/badge/twitter-1DA1F2.svg?&style=for-the-badge&logo=twitter&logoColor=white\" />]() [<img src=\"https://img.shields.io/badge/linkedin-%230077B5.svg?&style=for-the-badge&logo=linkedin&logoColor=white\" />](https://www.linkedin.com/in/pratik-gupta-4495a282/)\n"
  },
  {
    "path": "readme-profiles/RajeshNathani.md",
    "content": "Hey, I am Rajesh.\r\nI am currently persuing B.Tech in Computer Science in Medi-Caps University , Indore.\r\nI have won 4 hackathons\r\nI was Rank 6 in International Informatics Olympiad 2018.\r\nI am good in Python,C,C++ Django, Flask,javascript,nodejs,express,react and mysql.\r\nI am interested in Machine Learning too.\r\nAlso author of easy-nlp package for python."
  },
  {
    "path": "readme-profiles/RebaiAhmed.md",
    "content": "\n## Hey 👋, This is Rebai Ahmed\n[![Gmail Badge](https://img.shields.io/badge/-rebai.ahmed@outlook.com-c14438?style=flat&logo=Gmail&logoColor=white&link=mailto:rebai.ahmed@outlook.com)](mailto:rebai.ahmed@outlook.com) \n[![Linkedin Badge](https://img.shields.io/badge/-https://www.linkedin.com/in/rebaiahmed/-0072b1?style=flat&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/https://www.linkedin.com/in/rebaiahmed//)](https://www.linkedin.com/in/https://www.linkedin.com/in/rebaiahmed//) [![Github Badge](https://img.shields.io/badge/-RebaiAhmed-grey?style=flat&logo=github&logoColor=white&link=https://github.com/RebaiAhmed/)](https://www.github.com/RebaiAhmed/) [![Twitter Badge](https://img.shields.io/badge/-https://twitter.com/RebaiAhmed_-00acee?style=flat&logo=twitter&logoColor=white&link=https://twitter.com/https://twitter.com/RebaiAhmed_/)](https://www.twitter.com/https://twitter.com/RebaiAhmed_/) [![Portfolio Badge](https://img.shields.io/badge/portfolio-web-blue?style=flat&link=https://rebaiahmed.github.io/)](https://rebaiahmed.github.io/) <p align='left'> My name is Rebai Ahmed and I'm a software developer/engineer. I'm from Tunisia and currently working at beys-software.</p>\n\n\n## &#x270d; Blog & Writing\n\nApart from coding, I also maintain a blog - you can find my articles  on [Medium](https://medium.com/@Ahmedrebai) and [DEV.to](https://dev.to/rebaiahmed).\n\n\n## 🔧 Technologies & Tools\n![](https://img.shields.io/badge/OS-Linux-informational?style=flat&logo=linux&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Code-Python-informational?style=flat&logo=python&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Code-JavaScript-informational?style=flat&logo=javascript&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Code-Make-informational?style=flat&logo=cmake&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Code-Vue-informational?style=flat&logo=react.js&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Tools-PostgreSQL-informational?style=flat&logo=postgresql&logoColor=white&color=2bbc8a)\n\n\n\n\n## Some of my Github Stats\n<p align=left> <img src=https://komarev.com/ghpvc/?username=RebaiAhmed alt=RebaiAhmed /> </p>\n\n[![Github stats](https://github-readme-stats.vercel.app/api?username=RebaiAhmed&show_icons=true&include_all_commits=true)](https://github.com/RebaiAhmed/github-readme-stats)\n[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=RebaiAhmed&layout=compact)](https://github.com/RebaiAhmed/github-readme-stats)\n"
  },
  {
    "path": "readme-profiles/Riyana6.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Jeema Riyana</h1>\n<h3 align=\"center\">A Software Developer from Sri Lanka</h3>\n\n<br/>\n\n- 🌱 I’m currently studying **Springboot**\n- 📫 I'm an undergraduate in Sri Lankan University.\n\nI am interested in followings.\n**Languages**\nC\nJava\n\n**Databases**\nMongoDB\nMySQL\n\nThank you for Joining with You!"
  },
  {
    "path": "readme-profiles/Ronal2do.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Ronaldo</h1>\n<h3 align=\"center\">I'm a mentor, Tech Lead and Senior Mobile Developer in Netherlands</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **JS, TS, Java, Kotlin, ObjC, Swift**\n\n\n<br/>\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=Ronal2do&theme=flat&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n<br/>\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=Ronal2do&show_icons=true&count_private=true&theme=light\" alt=\"Ronal2do\" /></p>\n"
  },
  {
    "path": "readme-profiles/Semvrij.md",
    "content": "# Sem's GitHub Profile\n\n- Currently working on private projects and learning new languages and skills.\n- Right now I'm learning React.\n- I am thinking about learning GoLang.\n\n## GitHub Stats\n\n![Sem's github stats](https://github-readme-stats.vercel.app/api?username=semvrij&count_private=true&show_icons=true&hide_border=true)\n\n## Languages and Frameworks\n\n<img align=\"left\" title=\"HTML5\" alt=\"HTML5\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/html/html.png\" />\n<img align=\"left\" title=\"CSS3\" alt=\"CSS3\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/css/css.png\" />\n<img align=\"left\" title=\"Sass\" alt=\"Sass\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/sass/sass.png\" />\n<img align=\"left\" title=\"JavaScript\" alt=\"JavaScript\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/javascript/javascript.png\" />\n<img align=\"left\" title=\"jQuery\" alt=\"jQuery\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/jquery/jquery.png\" />\n<img align=\"left\" title=\"PHP\" alt=\"PHP\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/ccc16358ac4530c6a69b1b80c7223cd2744dea83/topics/php/php.png\" />\n<img align=\"left\" title=\"SQL\" alt=\"SQL\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/sql/sql.png\" />\n<img align=\"left\" title=\"Node.js\" alt=\"Node.js\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/nodejs/nodejs.png\" />\n<img align=\"left\" title=\"TypeScript\" alt=\"TypeScript\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/typescript/typescript.png\" />\n<img align=\"left\" title=\"Python\" alt=\"Python\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png\" />\n<img align=\"left\" title=\"Git\" alt=\"Git\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/git/git.png\" />\n<img align=\"left\" title=\"Electron\" alt=\"Electron\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/electron/electron.png\" />\n<img align=\"left\" title=\"Dart\" alt=\"Dart\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/dart/dart.png\" />\n<img align=\"left\" title=\"Flutter\" alt=\"Flutter\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/cebd63002168a05a6a642f309227eefeccd92950/topics/flutter/flutter.png\" />\n\n<br />\n\n## Tools\n\n<img align=\"left\" title=\"Visual Studio Code\" alt=\"Visual Studio Code\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/visual-studio-code/visual-studio-code.png\" />\n<img align=\"left\" title=\"GitHub\" alt=\"GitHub\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/78df643247d429f6cc873026c0622819ad797942/topics/github/github.png\" />\n<img align=\"left\" title=\"Terminal\" alt=\"Terminal\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/terminal/terminal.png\" />\n<img align=\"left\" title=\"Node Package Manager\" alt=\"Node Package Manager\" width=\"26px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/npm/npm.png\" />\n"
  },
  {
    "path": "readme-profiles/Shreejana123.md",
    "content": "<h1>Hi!👋 I am Shreejana.</h1>\n<h3>I am a programmer from Nepal.I am currently working on HTML and CSS.Besides programming, I love to listen music ♪ and watch movies 🎥 with delicious food aside😋.</h3>\n<br/>\n<Strong>Current Status</strong>\n<ol>\n  <li>I'm currently working on HTML and CSS.</li>\n  <li>I'm currently Learning HTML.</li>\n  <li>I hope to be a web developement programmer.</li>\n</ol>\n"
  },
  {
    "path": "readme-profiles/Siddhant-K-code.md",
    "content": "### Hello!  <img src=\"https://github.com/TheDudeThatCode/TheDudeThatCode/blob/master/Assets/Hi.gif\" width=\"29px\">\n\n\n[<img src=\"https://img.icons8.com/color/48/000000/twitter.png\" width=\"3.5%\"/>](https://twitter.com/Siddhant_K_code)\n[<img src=\"https://img.icons8.com/color/48/000000/linkedin.png\" width=\"3.5%\"/>](https://www.linkedin.com/in/siddhantkhare24/)\n[<img src=\"https://img.icons8.com/fluent/48/000000/facebook-new.png\" width=\"3.5%\"/>](https://www.facebook.com/SIDDHANTKHARE2407/)\n[<img src=\"https://img.icons8.com/fluent/48/000000/instagram-new.png\" width=\"3.5%\"/>](https://www.instagram.com/siddhant_says/)\n<a href=\"mailto:Siddhantkhare2694@gmail.com\"> <img src=\"https://img.icons8.com/fluent/48/000000/gmail.png\" width=\"3.5%\"/> </a>\n\n\n![Lines of code](https://img.shields.io/badge/From%20Hello%20World%20I've%20written-4124786%20Lines%20of%20code-blue)\n\n#### 🤔 Who Am I!?\n\n- 🏫 I am a Junior pursuing a Bachelor’s degree in Computer Sciences from the Global Engineering College, Jabalpur (M.P.) [2023].\n- ⚡️ My expertise primarily revolves around Web Developemnt, UI/UX Designs.\n- 🔭 I’m currently working on JavaScript, i.e., React.js, Node.js.\n- ♥️ I am an open-source lover and that's why I occasionally build open-source products.\n\n#### 👨🏻‍💻 Mostly Used Languages and Tools :\n\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/c/c.png\"></code>\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/cpp/cpp.png\"></code>\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png\"></code>\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/javascript/javascript.png\"></code>\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/react/react.png\"></code>\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/nodejs/nodejs.png\"></code>\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/css/css.png\"></code>\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/html/html.png\"></code>\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/jupyter-notebook/jupyter-notebook.png\"></code>\n\n\n#### 👨🏻‍💻 Familiar With :\n\n\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/firebase/firebase.png\"></code>\n<img height=\"30\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/mongodb/mongodb.png\"></code>\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/dart/dart.png\"></code>\n<code><img height=\"24\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/angular/angular.png\"></code>\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=Siddhant-K-code&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n\n![Siddhant's github stats](https://github-readme-stats.vercel.app/api?username=Siddhant-K-code&show_icons=true&hide_border=true)\n![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=Siddhant-K-code&layout=compact)\n\n<p align=\"center\">\n<a href=\"https://github.com/Siddhant-K-code?tab=followers\">\n    <img src=\"https://img.shields.io/github/followers/Siddhant-K-code?label=Followers&logo=GitHub&style=for-the-badge\" alt=\"GitHub badge\" />\n  </a>\n  <a href=\"http://twitter.com/Siddhant_K_code\">\n    <img src=\"https://img.shields.io/twitter/follow/Siddhant_K_code?label=Twitter&logo=twitter&style=for-the-badge\" />\n  </a>\n </p>\n\n\n"
  },
  {
    "path": "readme-profiles/SkyC0der.md",
    "content": "<h1 align=\"center\">Kon'nichiwa</h1>\n<h2 align=\"center\">I'm Emmanuel - The SkyCoder</h2>\n<h3 align='center'>I'm a Web developer from Nigeria.</h3>\n\n<br/>\n\nI'm currently interested in:\n\n- JavaScript\n- React\n- NodeJS\n- Blockchain Technology\n- 3D Modelling\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=SkyC0der&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=SkyC0der&show_icons=true&count_private=true&theme=dark\" alt=\"SkyC0der\" /></p>\n"
  },
  {
    "path": "readme-profiles/SrijitaSarkar99.md",
    "content": "<h1 align=\"center\">Hey there, I'm Srijita</h1>\n<h3 align=\"center\">A learner trying to manage between programming and art</h3>\n\n<br/>\n\nI have learnt and trying to get better at:\n- C\n- C++\n- Java\n- Shell Scripting\n- Flask\n- JavaScript \n- NodeJS\n- React\n- React Native\n- MERN stack\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=SrijitaSarkar99&show_icons=true&count_private=true&theme=dark\" alt=\"SrijitaSarkar99\" /></p>\n"
  },
  {
    "path": "readme-profiles/TanishqDsharma.md",
    "content": "<h1 align=\"center\">Hello 👋, I'm Tanishq Sharma</h1>\n<h3 align=\"center\">Working as Software Engineer Intern at Lucideus</h3>\n<br/>\n\n\n- 🌱 I’m currently learning **Python**\n\n\n### Connect with me:\n\n[linkedin]: https://www.linkedin.com/in/tanishq-sharma-b24864190/\n\n[Github]: https://github.com/TanishqDsharma\n\n[email]: tanishqsharma612@gmail.com\n"
  },
  {
    "path": "readme-profiles/Tawishi.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Tawishi</h1>\n<h3 align=\"center\">Sophmore from India</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **Python in ML and AI**\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=tawishi&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=tawishi&show_icons=true&count_private=true&theme=dark\" alt=\"tawishi\" /></p>\n"
  },
  {
    "path": "readme-profiles/Thusal06.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Thusal</h1>\n<h3 align=\"center\">A Student Programmer from Sri Lanka</h3>\n<h3 align=\"center\">Google Code-in 2019 Finalist 😎</h3>\n\n<br/>\n\n- I’m currently learning C++ and HTML and contributing to Open Source**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=Thusal06&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=Thusal06&show_icons=true&count_private=true&theme=dark\" alt=\"Thusal06\" /></p>\n"
  },
  {
    "path": "readme-profiles/Zura79.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Fardeen</h1>\n<h3 align=\"center\">A Front end Developer From Indonesial</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **Java,Javascript & Python**\n\n\n\n"
  },
  {
    "path": "readme-profiles/abhishekpatel946.md",
    "content": "\n# Hello, folks! <img src=\"https://raw.githubusercontent.com/MartinHeinz/MartinHeinz/master/wave.gif\" width=\"30px\">\n\nMy name is Abhishek Patel and basically I'm a Full Stack Developer. I'm from India, and currently I'm a Student.\nYou can find me on [![Twitter][1.2]][1],  or on [![LinkedIn][3.2]][3].\n\n\n## 🔧 Technologies & Tools\n![](https://img.shields.io/badge/OS-Linux-informational?style=flat&logo=linux&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Editor-Visual-Studio-Code-informational?style=flat&logo=intellij-idea&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Code-Python-informational?style=flat&logo=python&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Code-JavaScript-informational?style=flat&logo=javascript&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Code-React-informational?style=flat&logo=react&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Code-NodeJS-informational?style=flat&logo=node.js&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Tools-MySQL-informational?style=flat&logo=mysql&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Tools-MongoDB-informational?style=flat&logo=mongodb&logoColor=white&color=2bbc8a)\n![](https://img.shields.io/badge/Tools-Docker-informational?style=flat&logo=docker&logoColor=white&color=2bbc8a)\n                                                                                                                                                           \n## &#x1f4c8; GitHub Stats\n\n<a href=\"https://github.com/abhishekpatel946/abhishekpatel946\">\n  <img align=\"center\" src=\"https://github-readme-stats.vercel.app/api/top-langs/?username=abhishekpatel946&hide=&title_color=ffffff&text_color=c9cacc&icon_color=2bbc8a&bg_color=1d1f21\" />\n</a>\n\n<a href=\"https://github.com/abhishekpatel946/abhishekpatel946\">\n  <img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=abhishekpatel946&show_icons=true&line_height=27&count_private=true&title_color=ffffff&text_color=c9cacc&icon_color=2bbc8a&bg_color=1d1f21\" alt=\"Martin's GitHub Stats\" />\n</a>\n\n\n<!-- links to social media icons -->\n\n<!-- icons with padding -->\n\n[1.1]: http://i.imgur.com/tXSoThF.png (twitter icon with padding)\n[2.1]: http://i.imgur.com/0o48UoR.png (github icon with padding)\n\n<!-- icons without padding -->\n\n[1.2]: http://i.imgur.com/wWzX9uB.png (twitter icon without padding)\n[2.2]: http://i.imgur.com/9I6NRUm.png (github icon without padding)\n[3.2]: https://raw.githubusercontent.com/MartinHeinz/MartinHeinz/master/linkedin-3-16.png (LinkedIn icon without padding)\n\n\n<!-- links to your social media accounts -->\n\n[1]: https://twitter.com/@abhishekpatel_0\n[2]: https://github.com/abhishekpatel946\n[3]: https://www.linkedin.com/abhishek-patel-700442172/\n\n\n<!-- Resources -->\n<!-- Icons: https://simpleicons.org/ -->\n<!-- GitHub Stats: https://github.com/anuraghazra/github-readme-stats -->\n<!-- Emojis: https://emojipedia.org/emoji/ -->\n<!-- HTML Emojis: https://www.fileformat.info/index.htm -->\n<!-- Shields: https://shields.io/ -->\n<!-- Awesome GitHub Profile README: https://github.com/abhisheknaiidu/awesome-github-profile-readme -->\n<!-- GitHub Profile README: https://github.com/MartinHeinz/MartinHeinz/blob/master/README.md -->\n"
  },
  {
    "path": "readme-profiles/afonsocarlos.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Carlos</h1>\n<h3 align=\"center\">A Software Developer From Brazil</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **PHP, Python and Javascript**.\n- 💻 Working with Laravel (PHP) but still interested in working with Python though.\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=afonsocarlos&theme=flat&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=afonsocarlos&show_icons=true&count_private=true&theme=light\" alt=\"afonsocarlos\" /></p>\n"
  },
  {
    "path": "readme-profiles/alexkimeu0.md",
    "content": "<h1 align=\"center\">Yo, what's up ✌️, I'm Alex Kimeu</h1>\n<h3 align=\"center\">Software Developer | Blogger</h3>\n<h3 align=\"center\">Limitless Learner</h3>\n<h3 align=\"center\">Gamer</h3>\n\n<br/>\n\n**_My job revolves around Web Development & Quality Assurance_**\n\n- 👨‍💻 **_Check out my repos to view some of my work_** 👨‍💻\n\n<p>&nbsp;<img align=\"center\" src=\"https://pbs.twimg.com/profile_banners/799886254468907008/1602266816/1500x500\" alt=\"Alex\" /></p>\n"
  },
  {
    "path": "readme-profiles/alvinuday.md",
    "content": "Well for starters , Hi my name is Alvin \nI'm a first year student at Bits Pilani, Pilani \n\nMy class 12th exams just got over some months ago\nand i'm finally done with the JEE rat race.\n\nI always had an interest in coding and technology (Basically the RANCHO of my house) **3 idiots reference here**\nI know pyhton , c++,c and a bit of java. i mean most of the programming languages are similar except their syntax.\n\n**I dont have many things to brag about# like big projects and all but...**\n*7th AIR in computer science olympiad \n*state level badminton player\n*i do have a knack for music ; i play guitar and keyboard \n\nand i'm hoping to add on further \ni love AI and Machine learning \ni just started with few simple datasets on kaggle \nhoping to get better at it \n\nI started GITHUB so that i could better interact with the tech community \nand most of all LEARN \n\n*PS: I'm still trying to get the hang of GITHUB markdown*\n\n"
  },
  {
    "path": "readme-profiles/ami1708.md",
    "content": "<h1 align=\"center\">Hey Folks! 👋, I'm Amisha Negi</h1>\r\n<h2 align=\"center\">I'm a full stack developer and a content writer.</h2>\r\n\r\n\r\n<br>\r\n✍  Apart from technology , I also love writing\r\nYou can find my articles on my website at on https://medium.com/@amisha17200\r\n\r\n\r\n<p align=\"left\"> <img src=\"https://komarev.com/ghpvc/?username=ami1708\" alt=\"ami1708\" /> </p>\r\n<img align=\"right\"  alt=\"GIF\" src=\"https://media.tenor.com/images/7db4eaa3e47272c8e58ee018fc390b7d/tenor.gif\">\r\n\r\n\r\n\r\n<p align=\"left\">\r\n\r\n- 🔭 I’m currently working on : **Something cool**\r\n\r\n- 🌱 I’m currently learning :**Backend development**\r\n\r\n- 📫 How to reach me :**Please refer to the links given below**\r\n\r\n- ⚡ Fun fact: I ❤️🐶s and new fashion Trends!\r\n\r\n\r\n<img align=\"left\" height = \"200px\" width = \"200px\" alt=\"GIF\" src = \"https://media.giphy.com/media/Y0b2MpUTfnrUa3jIM7/giphy.gif\">\r\n</p>\r\n\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<p align=\"center\"> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/bootstrap/bootstrap-plain.svg\" alt=\"bootstrap\"  width=\"40\" height=\"40\"/>\r\n <img src= \"https://icongr.am/devicon/python-original.svg?size=128&color=currentColor\" alt=\"python\"  width=\"40\" height=\"40\"/>\r\n  <img src=\"https://icongr.am/devicon/c-original.svg?size=128&color=currentColor\" alt=\"C\"  width=\"40\" height=\"40\"/>\r\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/css3/css3-original-wordmark.svg\" alt=\"css3\"  width=\"40\" height=\"40\"/>\r\n <img src=\"https://devicons.github.io/devicon/devicon.git/icons/html5/html5-original-wordmark.svg\" alt=\"html5\"  width=\"40\" height=\"40\"/>  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/javascript/javascript-original.svg\" alt=\"javascript\"  width=\"40\" height=\"40\"/>\r\n <img src = \"https://icongr.am/devicon/nodejs-original-wordmark.svg?size=128&color=currentColor\" alt=\"nodejs\"  width=\"40\" height=\"40\"/>\r\n  \r\n \r\n  <img src=\"https://icongr.am/devicon/mongodb-original.svg?size=128&color=currentColor\" alt=\"mongodb\" width=\"40\" height=\"40\"/>\r\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/sass/sass-original.svg\" alt=\"sass\"  width=\"40\" height=\"40\"/>\r\n<img src=\"https://devicons.github.io/devicon/devicon.git/icons/react/react-original-wordmark.svg\" alt=\"react\" width=\"40\" height=\"40\"/>\r\n\r\n\r\n</p><p align=\"center\"> <img src=\"https://github-readme-stats.vercel.app/api?username=ami1708&show_icons=true\" alt=\"ami1708\" /> </p>\r\n\r\n<p align=\"center\">\r\n<a href=\"https://www.linkedin.com/in/amisha-negi-2bb972199/\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/linkedin.svg\" alt=\"/amisha-negi-2bb972199/\" height=\"20\" width=\"20\" /></a>\r\n<a href=\"https://www.instagram.com/__amisha._negi/\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/instagram.svg\" alt=\"amisha_negi\" height=\"20\" width=\"20\" /></a>\r\n  <a href=\"https://behance.net/amisha\" target=\"blank\"><img align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/behance.svg\" alt=\"amisha_negi\" height=\"20\" width=\"20\" /></a>\r\n<a href=\"https://www.facebook.com/amisha.negi.5220/\" target=\"blank\"><img align=\"center\" src=\"https://icongr.am/fontawesome/facebook.svg?size=128&color=currentColor\" alt=\"amisha_negi\" height=\"20\" width=\"20\" /></a>\r\n</p>\r\n\r\n"
  },
  {
    "path": "readme-profiles/amitsgh.md",
    "content": "<h1 align=\"center\">Hi <img src=\"https://media.giphy.com/media/hvRJCLFzcasrR4ia7z/giphy.gif\" width=\"28px\">, I'm Amit Singh</h2>\n<h3 align=\"center\">A CSE Junior and Tech Lover</h3>\n\n<p align=\"left\"> <img src=\"https://komarev.com/ghpvc/?username=amitsgh&label=Profile%20views&color=0e75b6&style=flat\" alt=\"xtenzq\" /> </p>\n\n\n[![Linkedin Badge](https://img.shields.io/badge/-LinkedIn-0e76a8?style=flat-square&logo=Linkedin&logoColor=white)](https://www.linkedin.com/in/amit-singh-a794131b5/)&nbsp;\n[![Instagram Badge](https://img.shields.io/badge/-Instagram-e4405f?style=flat-square&logo=Instagram&logoColor=white)](https://www.instagram.com/amtsngh/)&nbsp;\n[![Github Badge](https://img.shields.io/badge/-Github-333?style=flat-square&logo=Github&logoColor=white)](https://github.com/amitsgh)\n<br/>\n<br/>\n\n<img align=\"right\" alt=\"donut video\" src=\"https://github.com/amitsgh/donut.py/blob/main/images/donut.gif\" margin:50 width=\"300\" height=\"200\"/>\n\n- 🔭 I’m currently working on Flutter project\n- 🌱 I’m currently learning Flutter and Docker\n- 👯 I’m looking to collaborate more in open source\n- 📫 How to reach me: [Linkedin - Amit Singh](https://www.linkedin.com/in/amit-singh-a794131b5/) \n- 😄 Pronouns: he\n- ⚡ Fun fact: I love to play basketball 🏀 and read/watch mystery genre🕵️‍♂️\n<!-- - 🤔 I’m looking for help with  --> <!-- - 💬 Ask me about ... -->\n<br>\n<br>\n<br>\n<br>\n\n<p>\n  <img src=\"https://github-readme-stats.vercel.app/api?username=amitsgh&&show_icons=true&title_color=000000&icon_color=bb2acf&text_color=#808080&bg_color=#ffffff\" width=\"400\" height=\"auto\">&nbsp;&nbsp;&nbsp;\n  <img src=\"https://github-readme-stats.vercel.app/api/top-langs/?username=amitsgh&show_icons=true&hide_border=true&layout=compact&langs_count=8\"/  width=\"292\" height=\"auto\">\n</p>"
  },
  {
    "path": "readme-profiles/amitverma07.md",
    "content": "### Hi there 👋🏽, I'm [Amit!](https://amitverma.codes)\n\n<br/>\n\n<a href=\"https://www.linkedin.com/in/sd-amitverma/\">\n  <img align=\"left\" alt=\"Amit's LinkdeIN\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/linkedin.svg\" />\n</a>\n<a href=\"https://twitter.com/amit_verma7\">\n  <img align=\"left\" alt=\"Amit's Twitter\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/twitter.svg\" />\n</a>\n<a href=\"https://www.instagram.com/amitverma7/\">\n  <img align=\"left\" alt=\"Amit's Instagram\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/instagram.svg\" />\n</a>\n<a href=\"mailto:amitverma07@yahoo.com\">\n  <img align=\"left\" alt=\"Amit's E-mail\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/gmail.svg\" />\n</a>\n<a href=\"https://amitverma.codes/\">\n<img src=\"https://img.icons8.com/color/96/000000/internet.png\" height=\"20\" />\n</a>\n\n![](https://visitor-badge.glitch.me/badge?page_id=amitverma07.amitverma07)\n<br />\n[![HitCount](http://hits.dwyl.com/amitverma07/amitverma07.svg)](http://hits.dwyl.com/amitverma07/amitverma07)\n\n\nHi, I'm Amit Verma, a Full Stack Developer 🚀 from Canada, currently, I'm a  Internee 👨🏽‍💼[@CityofWinnipeg](https://www.winnipeg.ca/interhom/).\n\n  <img align=\"right\" alt=\"GIF\" src=\"https://media.giphy.com/media/ZVik7pBtu9dNS/giphy.gif\" />\n  \n**Talking about Personal Stuffs:**\n\n- 🔭 I’m currently working on eVoting Application;\n- 🌱 I’m currently learning Python;\n- 👯 I’m looking to collaborate on building afordable Greenhouses;\n- 💬 Ask me about anything, I am happy to help;\n- 📫 How to reach me: amitverma07@yahoo.com;\n- 📝[Resume](https://drive.google.com/file/d/1SDiv1XVl044SnOzR-bwSLcbM-KCsNlXn/view?usp=sharing)\n\n**Languages and Tools:**  \n\n<code><img height=\"20\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/javascript/javascript.png\"></code>\n<code><img height=\"20\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/bootstrap/bootstrap.png\"></code>\n<code><img height=\"20\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/react/react.png\"></code>\n<code><img height=\"20\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/csharp/csharp.png\"></code>\n<code><img height=\"20\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png\"></code>\n<code><img height=\"20\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/mongodb/mongodb.png\"></code>\n<code><img height=\"20\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/mysql/mysql.png\"></code>\n<code><img height=\"20\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/sql/sql.png\"></code>\n<code><img height=\"20\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/git/git.png\"></code>\n<code><img height=\"20\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/terminal/terminal.png\"></code>\n\n📊 **This week I spent my time on**\n<!--START_SECTION:waka-->\n```text\n```\n<!--END_SECTION:waka-->\n\n![Amit's github stats](https://github-readme-stats.vercel.app/api?username=amitverma07&show_icons=true&hide_border=true)\n"
  },
  {
    "path": "readme-profiles/anacarolinaarellano.md",
    "content": "# Hello!! I'm Ana Carolina\n\n***\n\nThis is my first time participating in Hacktoberfest and so far it's been great! \n\n[![Carolina's github stats](https://github-readme-stats.vercel.app/api?username=anacarolinaarellano&show_icons=true&theme=dracula)](https://github.com/anacarolinaarellano)\n"
  },
  {
    "path": "readme-profiles/ankit-rawani.md",
    "content": "![img](https://avatars3.githubusercontent.com/u/58520092?s=400&u=3846a985092f69d83e72ec7d0347918d641278bc&v=4)\n\n### Ankit Rawani\nGraphic Designer and Web Developer\nSophomore at National Institute of Technology, Tiruchirapalli, India.\n\n[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=ankit-rawani&layout=compact)](https://github.com/anuraghazra/github-readme-stats)\n\n![Ankit's github stats](https://github-readme-stats.vercel.app/api?username=ankit-rawani&show_icons=true&hide_border=true)\n"
  },
  {
    "path": "readme-profiles/anu-ragi.md",
    "content": "# Hello, I'm Anu Ragi\n## From Bengaluru, India\n## First time with OpenSource and **Hacktoberfest**!!\n\nI'm having a good time with **Github** so far.. Esp the __*GitLab*__ which is defintely gets a Thumbs-up..!\n\n*Just figuring out previewing markdown and html*\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=anu-ragi&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=anu-ragi&show_icons=true&count_private=true&theme=dark\" alt=\"anu-ragi\" /></p>\n"
  },
  {
    "path": "readme-profiles/armsasmart.md",
    "content": "### Hi there 👋 \n\nI'm Arm. I'm a software engineer who write a program every day 😂.\n\n- 🔭 I’m currently working on [Entercorp](https://entercorp.net/).\n- 🌱 I’m currently learning Javascirpt (Vue.js, Node.js), Livewire and Laravel.\n- 👯 I’m looking to collaborate on Javascript (Vue.js, Node.js) / PHP (Laravel) projects.\n- 🤔 I’m looking for help with becoming a full-stack developer.\n- 💬 Ask me about life, programmimg, game and general.\n- 😄 Pronouns: He / Him.\n- ⚡ Fun fact: I'm a Instigated. 🤣\n\n📫 How to reach me: \n\n[![E-Mail](https://img.shields.io/badge/--email?label=E-mail&logo=Gmail&style=social)](mailto:sirawit.aarm@gmail.comm) \n[![Connect with Facebook](https://img.shields.io/badge/--facebook?label=Facebook&logo=Facebook&style=social)](https://www.facebook.com/arm.sirawit.75)\n[![Chat on Instagram](https://img.shields.io/badge/--instagram?label=Instagram&logo=Instagram&style=social)](https://www.instagram.com/armsirawitt/)\n[![Come on Dev.to](https://img.shields.io/badge/--devto?label=Dev.to&logo=Dev.to&style=social)](https://dev.to/sirawit)\n\n![Anurag's github stats](https://github-readme-stats.vercel.app/api?username=armsasmart&show_icons=true&theme=radical)\n"
  },
  {
    "path": "readme-profiles/ayansiddiqui007.md",
    "content": "I am a web developer <img src = \"https://media.giphy.com/media/B9b53zQSqPaLjXRIiH/giphy.gif\">\n\nCurrently working as a freelancer 👋\n\n- 🔭 I’m currently doing Computer Science Engineering .\n- 🌱 I’m currently learning Js & Python & PHP .\n- 👯 I’m looking to collaborate on Web Development Projects !\n- 🤔 I’m looking for help with IgniteSubs\n- 💬 Ask me about Web Dev Projects & Freelance Projects ?\n- 📫 How to reach me: https://codepen.io/ironman_ or ayaansiddiqui851@gmail.com\n- I'm working on Youtube Subs Project.\n"
  },
  {
    "path": "readme-profiles/ayoolafelix.md",
    "content": "## Hi there, I'm Felix Ayoola👋\n\n### Connect with me:\n\n[<img align=\"left\" alt=\"ayoolafelix | LinkedIn\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/linkedin.svg\" />][linkedin]\n\n[<img align=\"left\" alt=\"ayoolafelix | Instagram\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/instagram.svg\" />][instagram]\n\n[<img align=\"left\" alt=\"ayoolafelix | Facebook\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/facebook.svg\" />][facebook]\n[<img align=\"left\" alt=\"ayoolafelix | Email\" width=\"30px\" height=\"21px\" src=\"https://cdn.onlinewebfonts.com/svg/img_504350.png\" />][email]\n  \n\n<br  />\n\n  \n\n### Languages and Tools:\n\n<img  align=\"left\"  alt=\"Python\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png\"  />\n\n\n<br  />\n<br  />\n\n  \n\n---\n\n  \n[![Lang Stats](https://github-readme-stats.vercel.app/api/top-langs/?username=oli799&layout=compact&%20notebook)](https://github.com/ayoolafelix?tab=repositories)\n[![Github Stats](https://github-readme-stats.vercel.app/api?username=oli799&count_private=true&show_icons=true)](https://github.com/ayoolafelix)\n\n\n[linkedin]: https://www.linkedin.com/in/oliv%C3%A9r-reider-112a70158/\n\n[instagram]: https://www.instagram.com/ayoolafelix/\n\n[facebook]: https://web.facebook.com/theayoolafelix/\n\n[ayoolafelix]: https://github.com/ayoolafelix\n[email]: mailto:flxayoola@mail.com"
  },
  {
    "path": "readme-profiles/b2pacific.md",
    "content": "<h1 align=\"center\">Hi! My name is Prashant Pandey.</h1>\n<h2 align=\"center\">I am Full Stack Web Developer currently pursuing my B.Tech degree in Electronics and Communication Engineering.</h2>\n<h3 align='center'>I have worked at few startups as Frontend, Backend, and Software Engineer Intern.</h3>\n\n<h2>Github: </h2> <a href=\"https://github.com/b2pacific\">https://github.com/b2pacific</a>\n<br />\n<h2>LinkedIn: </h2> <a href=\"https://www.linkedin.com/in/prashant-pandey-3545aa1ab/\">https://www.linkedin.com/in/prashant-pandey-3545aa1ab/</a>\n\n<p>I mainly work with Javascript Technologies like:</p>\n<ul>\n<li>Nodejs</li>\n<li>MERN stack</li>\n<li>MEAN stack</li>\n<li>PERN stack</li>\n<li>Nestjs</li>\n<li>Nextjs</li>\n<li>React Native</li>\n</ul>"
  },
  {
    "path": "readme-profiles/bartomiak.md",
    "content": "<h1 align=\"center\">Hi, bartomiak here</h1>\n<h3 align=\"center\">Vue.js developer but focused on VanillaJs</h3>\n\n<br/>\n\n*** Currently developing a large application written in vue and django and exploring the secrets of js ***"
  },
  {
    "path": "readme-profiles/bensbits91.md",
    "content": "<div align=\"center\">\n  <h1>Ben Brooks</h1>\n</div>\n\n<div align=\"center\">\n<h3> Ben Brooks | Frontend Developer | Portland, OR, USA </h3>\n</div>\n\n### My favorite tools\n\n- `JavaScript`\n- `React`\n- `SPFx`\n\n<hr/>\n\n### I'm learning more about\n\n- `PHP`\n- `SQL`\n\n<hr/>\n\n### A few samples\n\n- [SPFx/React Goal Tracker](http://www.nutandem.com/wp-content/uploads/2020/05/sharepoint-sales-goal-tracker.gif)\n- [SPFx/React Assessment Checklist](http://www.nutandem.com/wp-content/uploads/2020/05/sharepoint-assessment-checklist.gif)\n- [SPFx/React Fancy Forms](http://www.nutandem.com/wp-content/uploads/2020/05/sharepoint-form-slider.gif)\n- [SPFx/React Org Chart](http://www.nutandem.com/wp-content/uploads/2020/03/sharepoint-org-chart_expand.gif)"
  },
  {
    "path": "readme-profiles/bianca-michels-barcelos.md",
    "content": "<h1 align=\"center\">Hi 🙋🏻‍♀️, I'm Bianca</h1>\n<h3 align=\"center\">I'm a Web Development Student, from Brazil and based in London, UK.</h3>\n\n<br/>\n\n- 👩🏻‍💻 I’m currently going with **Javascript, CSS, and HTML**\n\nI'd love to contribute more to OpenSource! :)\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=bianca-michels-barcelos&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=bianca-michels-barcelos&show_icons=true&count_private=true&theme=dark\" alt=\"bianca-michels-barcelos\" /></p>\n\n"
  },
  {
    "path": "readme-profiles/binismail.md",
    "content": "\n<div align=\"center\">\n  <h1> Hello World <img src=\"https://media.giphy.com/media/hvRJCLFzcasrR4ia7z/giphy.gif\" width=\"25px\"></h1>\n</div>\n\n<div align=\"center\">\n<h3> 😄 Khalid Ismail | 😄 | 💻 A design minded front-end engineer | 🌏 Abuja, Nigeria </h3>\n</div>\n\n\n### :octocat: About me \n\n- 🔭 I’m currently working on `opensource project`\n- 🌱 I’m currently learning `python`\n- 🤔 I’m looking for help with `learning algorithm`\n- 💬 Ask me about `javascript/design`\n- 😄 Pronouns: `he/him`\n- ⚡ Fun fact: `love coding at night`\n- 💭 Let's get to know each other 🌟\n\n\n### 📕 Checkout my Blog Posts on [Dev.to](https://dev.to/binismail)\n\n<div align=\"center\">\n\n✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨\n\n[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=binismail&layout=compact)](https://github.com/anuraghazra/github-readme-stats)\n![Trinity's github stats](https://github-readme-stats.vercel.app/api/?username=binismail&show_icons=true&title_color=1F75C8&icon_color=2AA410&text_color=043667&bg_color=ffffff) \n\n\n</div>\n<!--\n**binismail/binismail** is a ✨ _special_ ✨ repository because its `README.md` (this file) appears on your GitHub profile.\n-->\n"
  },
  {
    "path": "readme-profiles/bojandevic.md",
    "content": "# Hello, I'm Bojan\n\nFrontend developer from Bosnia with passion for all things open source.\nFirst time contributing 😀\n"
  },
  {
    "path": "readme-profiles/bolu-tife.md",
    "content": "<h1 align=\"center\">Hi 🙋🏾‍♀️, I'm Boluwatife</h1>\n<h3 align=\"center\">Software Engineer</h3>\n\n<br/>\n\n- 🌱 I like Python!\n"
  },
  {
    "path": "readme-profiles/brianleemcqueen.md",
    "content": "\nMy name is Brian.  I work in Indianapolis, IN, USA.  Since 2018, I have been working as a Scrum Master for a mobile development project.  When *Hacktoberfest 2020* was introduced, I decided to set sometime aside to start getting involved with the open source community.  My past development experience has been in:\n* PHP\n* Java\n* .NET\n* JavaScript\n\nA quick writeup on some of the things I did in the 2010-2014 range is here:\n[https://github.com/brianleemcqueen/brian.lee.mcqueen](https://github.com/brianleemcqueen/brian.lee.mcqueen)"
  },
  {
    "path": "readme-profiles/bruceyboy86.md",
    "content": "#Hi I'm Bruce\n\nI'm a web developer working in Edinburgh\n\n- [GitHub](https://github.com/bruceyboy86) – Here are my repos.\n- [Twitter](https://twitter.com/BruceyBoyD) – Here are my thoughts."
  },
  {
    "path": "readme-profiles/claudemuller.md",
    "content": "<img src=\"https://github.com/claudemuller/terminal-typer/blob/master/assets/matrix.gif?raw=true\"/>\n\n- 🔭 I'm currently working on:\n  - a big data Scala project including Kafka, Spark, Hadoop and Akka\n  - writing small C programs in order to build up to my own OS\n  - a 3D rendering project in C\n- 🌱 I'm currently learning:\n  - Scala, Apache Kafka, Akka, Apache Spark and Hadoop\n  - building a computer from nand gates\n  - C\n- ⚡ Fun fact: Blackbeard had 14 wives.\n"
  },
  {
    "path": "readme-profiles/dao-phuong.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Phuong Dao</h1>\n<h3 align=\"center\">Software Developer From Viet Nam</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **ReactJS**\n\n<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=dao-phuong&show_icons=true&count_private=true&theme=radical\" alt=\"Dao Phuong\" /></p>"
  },
  {
    "path": "readme-profiles/devblin.md",
    "content": "### Hi there 👋, I am Deepanshu Dhruw\n\n- 🔭 I’m currently thinking new ideas.        \n- 🌱 In pandemic.\n- ⚡  Fun fact: Lazy.\n- ⏱️ I spend most of my time in web 🕸️.\n- 🖥️ I enjoy working for 🕸️.\n\n![Deepanshu\"s Status](https://github-readme-stats.vercel.app/api?username=devblin&show_icons=true&hide_border=true)\n![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=devblin&layout=compact&hide=tsql&langs_count=10&hide_border=true)"
  },
  {
    "path": "readme-profiles/devonpmack.md",
    "content": "\n<div align=\"center\">\n  <h1> Devon Mack</h1>\n</div>\n\n<div align=\"center\">\n<h3> 💻 Full Stack Developer | Working at Shopify | 🌏 Ottawa, Canada </h3>\n</div>\n\n### :octocat: About me\n\n- 🔭 I’m a Computer Science Undergraduate in Shopify's Dev Degree program\n- 🌱 I love solving challenging problems\n- 🤔 I’m Currently learning machine learning with Python\n- 💬 Ask me about `React/Ruby on Rails`\n- ⚡ Be lazy with your solutions\n\n<div align=\"center\">\n\n[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=devonpmack&layout=compact)](https://github.com/anuraghazra/github-readme-stats)\n![Trinity's github stats](https://github-readme-stats.vercel.app/api/?username=devonpmack&show_icons=true&title_color=1F75C8&icon_color=2AA410&text_color=043667&bg_color=ffffff)\n\n</div>\n"
  },
  {
    "path": "readme-profiles/edazpotato.md",
    "content": "<h1 align=\"center\">Hey 👋, I'm Edaz</h1>\n<h3 align=\"center\">I'm a front-end developer from New Zealand</h3>\n\n- 🌱 I like working with **Web technologies, React, node.js and python**\n\n- 📫 How to reach me:\n\n  Email: edazpotato@gmail.com\n  \n  Twitter: [@Edazpotato](https://twitter.com/edazpotato)\n  \n  Discord: [Edaz#5671](https://discord.com/users/569414372959584256)\n  \n  [![widget](https://inv.wtf/widget/edaz)](https://inv.wtf/edaz)\n\n![Github stats](https://github-readme-stats.vercel.app/api?username=Edazpotato&theme=blueberry&count_private=true&hide_border=true&line_height=25&show_icons=true)\n"
  },
  {
    "path": "readme-profiles/eitinaa.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Tina</h1>\n<h3 align=\"center\">I'm a Designer From Brazil</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **Photoshop, Illustrator, Indesign, HTML, and CSS**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=eitinaa&theme=flat&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=eitinaa&show_icons=true&count_private=true&theme=light\" alt=\"eitinaa\" /></p>\n"
  },
  {
    "path": "readme-profiles/engrrbilal.md",
    "content": "<h1 align=\"center\">Hi 👋, Muhammad Bilal here from Pakistan</h1>\n<h4 align=\"center\">I'm a Full Stack Software Engineer(Javascript,React,React Native,Node) passionate about my work and solving problems </h4>\n\n<br/>\n\n- 🌱 I’m currently going with **Javascript,React,React Native,Node**\n\n<br/>\n<a href=\"https://www.linkedin.com/in/engineermuhammadbilal/\">Find me on linkedin here</a>\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=engrrbilal&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=engrrbilal&show_icons=true&count_private=true&theme=dark\" alt=\"engrrbilal\" /></p>\n"
  },
  {
    "path": "readme-profiles/faisaljamil25.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Faisal</h1>\n<h3 align=\"center\">A Web Developer from India</h3>\n\n<br/>\n\n🌱 I’m currently going with **JavaScript, React, NodeJs and MongoDB**\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=faisaljamil25&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=faisaljamil25&show_icons=true&count_private=true&theme=dark\" alt=\"faisaljamil25\" /></p>\n"
  },
  {
    "path": "readme-profiles/femakin.md",
    "content": "<h1 align=\"center\">Hello 👋, I'm Femi Akinyemi</h1>\n<h3 align=\"center\">A Front-end Developer From Nigeria</h3>\n<br/>\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=femakin\" alt=\"femakin\" /></p>\n\n- 🌱 I’m currently learning **React**\n\n\n### Connect with me:\n\n[linkedin]: https://www.linkedin.com/in/oluwafemi-tosin-akinyemi-6b028270//\n\n[Twitter]: https://twitter.com/akinyemi_t/\n\n[Github]: https://github.com/femakin/\n\n[email]: mailto:akinfemi46@gmail.com\n\n\n\n\n\n\n\n\n\n\n"
  },
  {
    "path": "readme-profiles/fgiuliani.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Facundo</h1>\n<h3 align=\"center\">Software Engineer, Full Stack Developer From Buenos Aires, Argentina</h3>\n\n<br/>\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=fgiuliani&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=fgiuliani&show_icons=true&count_private=true&theme=dark\" alt=\"fgiuliani\" /></p>\n"
  },
  {
    "path": "readme-profiles/gauravbisht005.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Gaurav Bisht</h1>\n<a href=\"https://twitter.com/Jarvis_Me\">\n  <img align=\"left\" alt=\"Twitter\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/twitter.svg\" />\n</a>\n<a href=\"https://www.linkedin.com/gauravbisht005/\">\n  <img align=\"left\" alt=\"Linkedin\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/linkedin.svg\" />\n</a>\n<a href=\"http://github.com/gauravbisht005\">\n  <img align=\"left\" alt=\"Github\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/github.svg\" />\n</a>\n<a href=\"https://www.instagram.com/gaurav.bisht17/\">\n  <img align=\"left\" alt=\"Instagram\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/instagram.svg\" />\n</a>\n<a href=\"https://www.facebook.com/gaurav.bisht17\">\n  <img align=\"left\" alt=\"Facebook\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/facebook.svg\" />\n</a>\n![Github stats](https://github-readme-stats.vercel.app/api?username=gauravbisht005&show_icons=true&hide_border=true)\n\n<a href=\"https://github.com/chetan177\">\n  <img align=\"center\" src=\"https://github-readme-stats.vercel.app/api/top-langs/?username=gauravbisht005&show_icons=true&hide_border=tru\" />\n</a>\n"
  },
  {
    "path": "readme-profiles/ghanender-chauhan.md",
    "content": "### Hi there 👋\n\n\n**ghanender-chauhan/ghanender-chauhan** is a ✨ _special_ ✨ repository because its `README.md` (this file) appears on your GitHub profile.\n\n**Hii Everyone its Ghanendra Here**\n\nI hail from beautifull city Ajmer,Rajasthan..\n\nI am a first year student of NIT Warangal and currently pursuing Post graduation In Engineering Physics.\n\nI always had a interest in coding and technology thats why i took a short course (crash course) of C++ in 2014 when i m in 9th standard but as time passes i forgot all those things.\n\nNow i again started learning python and contributing to open sources, Meanwhile for now **I dont have a expereince in big things like project handling**\n\nState level Volleyball player\n\nI have a much intrest in **DATA SCIENTIST**\t thats why, I m learning ML and AI.\n\nAlso doing some questions in jupyter notebook to learn it.\n\nI Started GITHUB in OCT to interact with  the tech community.\n\n![Github stats](https://github-readme-stats.vercel.app/api?username=ghanender-chauhan)\n\n**Thank you**\n\n*PS: I'm still trying to get the hang of GITHUB markdown*\n"
  },
  {
    "path": "readme-profiles/guijacobus2.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Guilherme</h1>\n<h3 align=\"center\">A Software and App Developer From Brazil (Living in New Zealand)</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **Flutter, JS, AWS**\n- 🌱 Studying web and software development at Southern Institute Of Technology\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=guijacobus2&theme=dracula&column=3&margin-w=15&margin-h=15(https://github.com/ryo-ma/github-profile-trophy\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=guijacobus2&show_icons=true&count_private=true&theme=dark\" alt=\"subeshb1\" /></p>\n\n"
  },
  {
    "path": "readme-profiles/hardik7e.md",
    "content": "<h1 align=\"center\">Hey ✌️, I'm Hardik</h1>\n<h3 align=\"center\">Tech Enthusiast</h3>\n\n<br/>\n\n### :octocat: About me\n\n- I am a 3rd year student persuing **Bachelors of Technology** course in Civil Engineering from **IIT Guwahati.**\n- My preferred programming language is **C++**. Also I am interested in Machine Learning.\n- I am currently learning ML and Deep Learning to build a project based on Object identification.\n- I learnt about open source and HacktoberFest recently and hence I have just started with a very few Pull Requests submissions. Hope to learn a lot from the Github Tech Community\n\n<br/>\n\n[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=hardik7e)](https://github.com/hardik7e/github-readme-stats)\n<br/>\n![Hardik's github stats](https://github-readme-stats.vercel.app/api?username=hardik7e)\n"
  },
  {
    "path": "readme-profiles/hilbug.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Hilary</h1>\n<h3 align=\"center\">A Full Stack Developer In-Training</h3>\n\n<br/>\n\n- 🌱 I’m enrolled in a web development coding bootcamp and expected completion is in November 2020. \n- 🌱 Currently learning HTML/CSS, JavaScript, Node.js, Express, React, MySQL, MongoDB, Resful APIs.\n- 🌱 We recently completed a team-buidling app. [Check it out](https://the-team-builder.herokuapp.com/)!\n</br>\n</br>\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=hilbug&show_icons=true&count_private=true&theme=dark\" alt=\"hilbug\" /></p>\n</br>\n<img src=\"https://github-profile-trophy.vercel.app/?username=hilbug&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">"
  },
  {
    "path": "readme-profiles/huqi.md",
    "content": "<h1 align=\"center\">Nǐ hǎo 👋, I'm <a href=\"https://github.com/hu-qi\" target=\"_blank\">Huqi</a></h1>\n<h3 align=\"center\">A front-end engineer from China, and a copy engineer.</h3>\n\n<br/>\n\n- 🌱  ***I like front-end the most and currently work with the same***\n- 🌱  ***I like to do copying.***\n\n## Technology Stack\n\n![HTML5](https://img.shields.io/badge/-HTML5-%23E44D27?style=for-the-badge&logo=html5&logoColor=ffffff)\n![CSS3](https://img.shields.io/badge/-CSS3-%231572B6?style=for-the-badge&logo=css3)\n![JavaScript](https://img.shields.io/badge/-JavaScript-%23F7DF1C?style=for-the-badge&logo=javascript&logoColor=000000&labelColor=%23F7DF1C&color=%23FFCE5A)\n![Vue.js](https://img.shields.io/badge/-Vue.js-%232c3e50?style=for-the-badge&logo=Vue.js)\n![React Native](https://img.shields.io/badge/-React%20Native-%23282C34?style=for-the-badge&logo=react)\n![Node](https://img.shields.io/badge/-NodeJS-%23F05032?style=for-the-badge&logo=Node.js&logoColor=%23ffffff)\n![Webpack](https://img.shields.io/badge/-Webpack-%232C3A42?style=for-the-badge&logo=webpack)\n![ESlint](https://img.shields.io/badge/-ESLint-%234B32C3?style=for-the-badge&logo=eslint)\n![Git](https://img.shields.io/badge/-Git-%23F05032?style=for-the-badge&logo=git&logoColor=%23ffffff)\n![VS Code](https://img.shields.io/badge/-VSCode-%23007ACC?style=for-the-badge&logo=visual-studio-code)\n![Docker](https://img.shields.io/badge/-Docker-%232081e8?style=for-the-badge&logo=docker&logoColor=fff)\n![TypeScript](https://img.shields.io/badge/-TypeScript-%23031d30?style=for-the-badge&logo=typescript)\n![Prettier](https://img.shields.io/badge/-Prettier-%23142027?style=for-the-badge&logo=prettier)\n![TaroJs](https://img.shields.io/badge/-TaroJs-%230000b5?style=for-the-badge&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAAA8CAYAAADi8H14AAAAAXNSR0IArs4c6QAABO9JREFUeAHtW8lqFUEU9TlFBRU1Ik4IwRlRiPNCcCAuVHChS0Vw5Q/4Ee4FF/oD4l4MuNZEs3AgRg1RiKhx1jiLGs8Jr5O2X3dVdfere8u0F4rXr+/tuueeVJ+uqn6pTaqIjYyMLESp+9CWoy1Bm4Xm03pqtdr5qT4zhNA3iJ0GHEfRdqFNEcR0j7kmNMEgl4SeQtvAYoVtlODJwkml0x1DQg1yn0Me3rFY5xGM0dCK+ON1wOvxOQdNy86igHOm5MC7CP6dphiPvtHRy/6tBANoC+JO15smqcQb2Z3owPDZAV/N4Pfp6o06NxIMcum/iHY4uiCAT956XSYcwE3p22yK8ej7ib77o/5tGnwBgSGRS9ydkIdfUQEZnytw3vc0LCP1pH7g+xE5MwnGKGhH0IkoMKDPyw5Y+IzQsjH9JYBMguGj7oZmIwB0xQGUJsFj+kucqQRj9M6Gj5Pz0Owmbr9XJlDAPgP+NlOMR98w8D2N959KMAL2oBkfgPFOBI9d5GEN8GTV5RvqX/LAZFlA9vtGUrB/F4KDkQfWmDVKQyT4I/AeggQcsfxxuOdQZgbxCNe/tuTIct9POhoIRgGc4qxKBgbw/TswHLDg4N7DMkuMzf3XQ8oWHPMPQn+HY99HD9MkIsTRS7AfkuBTvs9MOZfn1GcEsxWxBv1lJ/8KwZyeNYyOFBbKEvwipU/XU3aCIQ8knJvSodknALKt3oiZU7QyVpRgrtwG0hInR/AWBM1LC1Q+5yIP04ExWU8e2L8RbJxjGzp7AP3lHkSDJQFVWX/fgB2Xu6SBRJxIlQcG/gsE8/b7SrAW05IHwrITDP3l8niHpQgNt4s8cN+X+9ZlrKj+voU8DGUljo/g3QjiC8LQzIVgjt4ym+vfcL3LLCWNm8zRy+A4wSHqLx88LoVrTs+MC5PQCeb0jCTbTEt/OT9vWB7HwY4SXF8er447Ajl2kQcuj8tIG0kqOj17DP39YuIqGsEdpiBFnwvBZeWB7/jGXvHkrNWov+wr2uwJUX+5ucOHj804d31vCzL4r8LXafCbXDdMTvpq9eUxb5H5tmBh/0vkGxTIeRK3+V1feSgRXB6HRi7rdZEHxpUx7jFbb/MyCUhwiPrLmQOL923dGL1Fl8dO2KjBLOaSU7SfoKXodm2ia2qvy/QscVnur125r8h5QZnVT85U6eF4BpyBZ2+61/vZgxjB1HpvRolQs/oDdqsSgAHf5LIuVYKRfx0aN5k07LpEUm2Ct0sUmZHjP8EZxDTjNBcxt5rRka0PtREM/eUSd6MNoCc//0Gl6PI4FyQ1goGyHS1aqucC3YRgEXkgTk2CJ7z+VpXgZ5CHwSbcBU5dqIxg6G8r0LU5IWx+kJg8ELoKwchbCXmoIsHc2Olh4VKmNYK3SRWYyHMb+lv0x32Jrty+ihMM/V0JaAvc4DU9SlR/iV6cYOSsjP5WjWD+9uwhi5Y00REMeeDrda7gNIxvL/iKXtRECUZlm9BaRCscT3Zt/FDuSJpgLf3lyO2Wo3U8U1UI7oM8lPntxDhjOY/ECIb+zgW25MvNnHALh3t/uZmFTIxgAOC7N62XrCr6S9IlCdbSX67celmshlWBYE7PUv9BRYJwEYKhv8tRzGKJglJyiC+P4xhECEZCLXlgrWoPOCaf6ATzB9JDLFTLpF469qHAJwpFev3lpEs9fwBpxe4J7SMAYgAAAABJRU5ErkJggg==)\n![UNIAPP](https://img.shields.io/badge/-UNIAPP-%23CCC?style=for-the-badge&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAABCElEQVRoge3YMa4BURSH8Y8o7UAp0WgkotBZwluAfhqlZSgUGr23ENUUCpppJnTswAIUSCaTiziZJ8d9/193zdzrfMltABF5plb+oLscDoAV0Pn8OC/lwDhL0k35QT3wstcIuM61Cj0IhXiNuAvOFwr5SgrxRiHeKMSbhnHfAVgU1i1gajhnBpwK6wnQtgxkDTlmSTq/L7rLYQ9byG+WpLvCOT8YQ6K5WgrxRiHeKMQbhXijEG8U4o1CvIkmxPrDquwMrI37KlFJSJake2BUxVlW0VytaEKsV6t5+8Ohak3rRmtIH9hav/QvRHO1FOKNQrwJheQfn+I9wflCIeNHLzuQc51PRP6rC1ZeIm1I8cC5AAAAAElFTkSuQmCC&logoColor=fff)\n\n## My Github\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=hu-qi&theme=onedark&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=hu-qi&show_icons=true&count_private=true&theme=onedark\" alt=\"shubhi\" /></p>\n\n<a href=\"https://github.com/hu-qi/ModelArts-Lab\">\n  <img align=\"center\" src=\"https://github-readme-stats.vercel.app/api/pin/?username=hu-qi&repo=ModelArts-Lab\" />\n</a>\n\n## Contact me\n\n[![huqii](https://img.shields.io/badge/-huqii-%23031d30?style=for-the-badge&logo=twitter)](https://twitter.com/huqii)\n\n[![huqi88](https://img.shields.io/badge/-huqi-%23031d?style=for-the-badge&logo=facebook)](https://facebook.com/huqi88)"
  },
  {
    "path": "readme-profiles/improbably.md",
    "content": "# Hello, friend!\n\n## I'm **Fox** [^1] :fox_face:\n\nI am a theatre worker-turned-student in the United States. My current focus is on network security and database management, but there's a special place in my heart for code. \n\nI'm participating in the 2020 Hackathon in an efort to get over my shyness and start working with others on projects I believe in. \n\n(Oh, and to get comfortable with **git**! That's a big one!)\n\nI have been using **HTML** and **CSS** since I was in middle school, and I recently added **Javascript** into the mix. Other favorite languages to play in are **Python** and **C++**, and I hope to add **Ruby** to that list in the coming months. \n\n\n[^1]:  (Or **David 6**, depending on where you know me from)\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=improbably&theme=nord&column=3&margin-w=20&margin-h=20 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n(Heck, those look pretty scary, don't they? :ghost:)\n"
  },
  {
    "path": "readme-profiles/ishantsingla18.md",
    "content": "<h1 align=\"center\">Hello 👋, I'm Ishant Singla</h1>\n<h3 align=\"center\">My skills include: Graphic Designing, UI/UX Designing and Frontend Development</h3>\n<br/>\n\n- I have complete knowledge of **C, C++, Python, HTML and CSS**\n- I have a little knowledge of **Javascript**, I'am currently learning that only.\n- I also know some of the designing softwares like **Adobe Photoshop, Adobe Illustrator and Adobe XD**\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=ishantsingla18&count_private=true&theme=dark\" alt=\"Ishant\" /></p>"
  },
  {
    "path": "readme-profiles/jackHedaya.md",
    "content": "# Hey, I'm Jack!\n\n- I'm a student at New York University Stern School of Business and am passionate about Computer Science.\n- Favorite programming is JavaScript and I ❤️ React!\n\n- I created <a href=\"https://saloon.org\">saloon.org</a> with a bunch of friends, let me know what you guys think.\n"
  },
  {
    "path": "readme-profiles/jainsarthak216.md",
    "content": "<h1 align=\"center\">Hello everyone, I'm Sarthak</h1>\n<h3 align=\"center\">I am an Electronics Engineering Student in ADGITM, Delhi</h3>\n\n<br/>\n\n-  I’m currently taking the 30 days of Google Cloud Challenge**\n- Link to my LinkedIn profile : https://www.linkedin.com/in/sarthak-jain-181980167/\n- See my badges @ https://google.qwiklabs.com/public_profiles/352c89d9-69e3-4d5a-88b7-3280517be527\n"
  },
  {
    "path": "readme-profiles/jamesmulligan.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm James</h1>\n<h3 align=\"center\">A Software Developer From Ireland 🍀</h3>\n\n<br/>\n\n- 🌱 I like working with **JavaScript and Node** and am eager to learn more!\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=jamesmulligan&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=jamesmulligan&show_icons=true&count_private=true&theme=dark\" alt=\"jamesmulligan\" /></p>\n"
  },
  {
    "path": "readme-profiles/joharikushagra.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Kushagra</h1>\n<h3 align=\"center\">A Web enthusiast and Competitive Programmer</h3>\n\n\n<br/>\n\n- I am currently an undergrad from Indian Institute of Information Technology Una\n- 🌱 I’m currently going with **React,Mongo,Firebase,Node,REST**\n\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=joharikushagra&show_icons=true&count_private=true&theme=dark\" alt=\"joharikushagra\"/></p> "
  },
  {
    "path": "readme-profiles/jonathanvanhaaften.md",
    "content": "<h1 align=\"center\">Hello, I'm Jonathan</h1>\n<h3 align=\"center\">A server from canada working for a heli-ski lodge and trying to learn to code on my time off</h3>\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=Jonathanvanhaaften&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=Jonathanvanhaaften&show_icons=true&count_private=true&theme=dark\" alt=\"subeshb1\" />\n"
  },
  {
    "path": "readme-profiles/kanchanachathuranga.md",
    "content": "<h1 align=\"center\">Hi dear! 👋</h1>\n<h2 align=\"center\">I'm kanchana chathuranga</h2>\n<h3 align=\"center\">IT student in Sri Lanka</h3>\n<hr>\n\n- 🌱I love graphic design.\n- 🌱I'm interested in the following.\nvideo editing\nflyer design\n\n\n"
  },
  {
    "path": "readme-profiles/kikit0106.md",
    "content": "<h1 align=\"center\">Hello <img width=\"10%\" align=\"center\" src=\"https://www.flaticon.com/premium-icon/icons/svg/748/748168.svg\" alt=\"hello\" />️, I'm Kikit</h1>\n<h3 align=\"center\">I'm a Software Engineer from Indonesia</h3>\n\n***Glad to say it's my first time join to Hacktoberfest & by the way Happy Hacktober-Fest 2020 everyone!!!***\n\n* 👨 ‍💻 Currently i'm working mostly with PHP framework like Yii2 & Lumen\n* 👨 ‍💻 Also there is little experience in node js with Express JS framework\n \n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=kikit0106&show_icons=true&count_private=true&theme=dark\" alt=\"kikit0106\" /></p>\n"
  },
  {
    "path": "readme-profiles/kodekin.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Thomas</h1>\n<h3 align=\"center\">A Software Developer From Kenya</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **CSS, Python and Javascript**\n\n<p>&nbsp;<img align=\"center\" src=\"https://www.pexels.com/photo/coding-computer-data-depth-of-field-577585/\" alt=\"Thomas\" /></p>\n"
  },
  {
    "path": "readme-profiles/kontesanjana.md",
    "content": "<h1 align=\"center\">Hello everyone, I'm Sanjana</h1>\n<h3 align=\"center\">I am an Electronics and computer Engineering Student from Hyderabad</h3>\n\n<br/>\n\n## First time with OpenSource and **Hacktoberfest**!!\n\n\n\n*Thank you*\n"
  },
  {
    "path": "readme-profiles/kree666.md",
    "content": "<h1 align=\"center\">Hello, I'm Emily! :wave:</h1>\n<h3 align=\"center\">An MS Accounting student in the United States</h3>\n<br/>\n\n- I know a little bit about **HTML/CSS, Java, JavaScript**\n- This is my second official pull request on GitHub! :smiley_cat:\n- Happy Hacktoberfest 2020 everyone!!!\n- Happy almost Halloween!! :ghost:\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=kree666&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=kree666&show_icons=true&count_private=true&theme=dark\" alt=\"kree666\" /></p>\n"
  },
  {
    "path": "readme-profiles/levi-pires.md",
    "content": "<h1 align=\"center\">Hello 👋, I'm Levi</h1>\n<h3 align=\"center\">A Full-stack Student From Brazil</h3>\n<br/>\n\n- I’m currently studying **React, React Native, Node.JS and more**\n- I also like game development 🎮 \n\n<img src=\"https://github-profile-trophy.vercel.app/?username=levi-pires&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\"> \n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=levi-pires&show_icons=true&count_private=true&theme=dark\" alt=\"levi-pires\" />\n</p>\n"
  },
  {
    "path": "readme-profiles/madhav1928.md",
    "content": "<div align=\"center\">\n<h3> 😄 Madhav | 💻 A Frontend developer | 🌏 Hyderabad, India </h3>\n</div>\n\n### :octocat: About me\n\n- 🔭 Done Intership as web developer at Prabhat.\n- 🌱 I’m currently learning `Flutter` and `TypeScript`\n- ⚡ Work hard, play hard\n\n<p> From last 1 month i was thinking to participate in open source but i was not underestanding any process, but today onwards I started\nlearning it. And thank you so much for making things about contribution in github.</p>"
  },
  {
    "path": "readme-profiles/mctraore.md",
    "content": "# Hello, I'm Marie-Claire! ✨\n\n- I am a Software Developer based in the United States and I am passionate about using technology to create a positive impact in the world.\n- I am currently learning more about Javascript, Java, and AWS.\n- This year I am participating in Hacktoberfest for the first time! It has been a great experience to learn more about contributing to Open Source projects."
  },
  {
    "path": "readme-profiles/mdb1710.md",
    "content": "## Hello I'm Michael aka Mdb1710\n\nI'm a marketer turned software developer from the USA. \n\n## Languages\n \n - Javascript\n - Ruby\n\n ## Frameworks\n\n - React\n - Node.Js \n - Next.Js\n - React Native\n - Angular\n - Vue\n - Rails"
  },
  {
    "path": "readme-profiles/missym2.md",
    "content": "<h1 align=\"center\">Hi 👋, My name is Missy</h1>\n<h3 align=\"center\">A Full Stack Developer</h3>\n\n<br/>\n\n - 🌱 I like HTML/CSS, JavaScript, Node.js, Express, React, MySQL, MongoDB, Resful APIs.\n - 🌱 I also like researching and designing apps with tools like Figma, Mural.\n - 🌱 I am also a pretty good graphic designer and use Photoshop regularly.\n</br>\n</br>\n\n[Take a look at my portfolio site by clicking here](http://www.missymaloney1.com)\n"
  },
  {
    "path": "readme-profiles/mohsin-code.md",
    "content": "<div align=\"center\">\n  <img src=\"https://media.giphy.com/media/wJP2Z0HVBKfEw6nYJI/giphy.gif\" width=\"80px\">\n  <img src=\"https://media.giphy.com/media/3ohhwMDyS6rv3sB8yI/giphy.gif\" width=\"80px\">\n</div>\n\n<div align=\"center\">\n<h3>  Syed Mohsin Shah |  Computer System Engineer |  Peshawar, Pakistan </h3>\n</div>\n\n### :octocat: About me\n\n- :snake: I love Python and Java.\n- :school: I'm a student at UET Peshawar\n- :pencil: I'm a student of Computer System Engineering\n- :thought_balloon: I’m currently learning Artificial Intelligence.\n- :muscle: always ready to learn\n\n\n\n![Trinity's github stats](https://github-readme-stats.vercel.app/api/?username=mohsin-code&show_icons=true&title_color=1F75C8&icon_color=2AA410&text_color=043667&bg_color=ffffff)\n\n</div>\n"
  },
  {
    "path": "readme-profiles/moisesjsalmeida.md",
    "content": "# Hi, I'm Moises!\n\n## Web developer and permanent learner\n\nHi! I'm a developer from Brazil. I'm new to the open source community and decided to focus my efforts on learning more.\nI've studied development through the Harvard's CS50 program and worked on some projects. I'm using **Django** to make my websites, and started to learn Front-end frameworks such as **React** and **Angular**, and some **PHP** as it still is one of the most required languages on market.\n\n-   Currently learning PHP and improving skills with Python and Javascript\n-   Looking foward to contribute to the open-source community\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=moisesjsalmeida&show_icons=true&count_private=true&theme=dark\" alt=\"moisesjsalmeida\" /></p>"
  },
  {
    "path": "readme-profiles/msriaz.md",
    "content": "<h1 align=\"center\">Hey, I'm Muhammad Shoaib Riaz </h1>\n<h3 align=\"center\">Sr. Software Engineer</h3>\n\n<br/>\n\n![Shoaib's github stats](https://github-readme-stats.vercel.app/api?username=msriaz)\n\n- I am a react native professional with more than 4 yrs of experience \n- My preferred programming language is **javaScript**. Also I am interested in Machine Learning and Data Science.\n\n<br/>\n\n[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=msriaz)](https://github.com/msriaz/github-readme-stats)\n<br/>\n"
  },
  {
    "path": "readme-profiles/nikolas-haug.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Nikolas</h1>\n<h3 align=\"center\">A Web Developer From Minneapolis, Minnesota - USA</h3>\n\n<br/>\n\n<div align=\"center\">\n🌱 I’m currently working with: Javascript, CSS/SCSS, React, Wordpress, and Gatsby\n\n<p>&nbsp;</p>\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=nikolas-haug&show_icons=true&count_private=true&theme=dark\" alt=\"subeshb1\" /></p>\n\n</div>"
  },
  {
    "path": "readme-profiles/nitch193.md",
    "content": "### Hi there 👋\n\nI am a Software Developer from India.\n"
  },
  {
    "path": "readme-profiles/oli799.md",
    "content": "## Hi there, I'm Olivér - aka [oli799]👋\n\n### Connect with me:\n\n[<img align=\"left\" alt=\"oli799 | LinkedIn\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/linkedin.svg\" />][linkedin]\n\n[<img align=\"left\" alt=\"oli799 | Instagram\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/instagram.svg\" />][instagram]\n\n[<img align=\"left\" alt=\"oli799 | Facebook\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/facebook.svg\" />][facebook]\n[<img align=\"left\" alt=\"oli799 | Email\" width=\"30px\" height=\"21px\" src=\"https://cdn.onlinewebfonts.com/svg/img_504350.png\" />][email]\n  \n\n<br  />\n\n  \n\n### Languages and Tools:\n\n<img align=\"left\" alt=\"Bootstrap\" width=\"30px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/bootstrap/bootstrap.png\" />\n<img  align=\"left\"  alt=\"PHP\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/php/php.png\"  />\n<img  align=\"left\"  alt=\"HTML5\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/html/html.png\"  />\n<img  align=\"left\"  alt=\"CSS3\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/css/css.png\"  />\n<img  align=\"left\"  alt=\"React\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/react/react.png\"  />\n<img  align=\"left\"  alt=\"SQL\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/sql/sql.png\"  />\n<img  align=\"left\"  alt=\"JavaScript\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/javascript/javascript.png\"  />\n<img  align=\"left\"  alt=\"Python\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png\"  />\n<img  align=\"left\"  alt=\"Node.js\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/nodejs/nodejs.png\"  />\n<img align=\"left\" alt=\"Android\" width=\"30px\" src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/android/android.png\" />\n<img  align=\"left\"  alt=\"Csharp\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/csharp/csharp.png\"  />\n<img  align=\"left\"  alt=\"Unity\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/unity/unity.png\"  />\n<img  align=\"left\"  alt=\"GitHub\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/78df643247d429f6cc873026c0622819ad797942/topics/github/github.png\"  />\n<img  align=\"left\"  alt=\"Terminal\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/terminal/terminal.png\"  />\n<img  align=\"left\"  alt=\"Visual Studio Code\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/visual-studio-code/visual-studio-code.png\"  />\n<img  align=\"left\"  alt=\"Sublime text\"  width=\"26px\"  src=\"https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/sublime-text/sublime-text.png\"  />\n\n \n\n<br  />\n<br  />\n\n  \n\n---\n\n  \n[![Lang Stats](https://github-readme-stats.vercel.app/api/top-langs/?username=oli799&layout=compact&%20notebook)](https://github.com/oli799?tab=repositories)\n[![Github Stats](https://github-readme-stats.vercel.app/api?username=oli799&count_private=true&show_icons=true)](https://github.com/oli799)\n\n\n[linkedin]: https://www.linkedin.com/in/oliv%C3%A9r-reider-112a70158/\n\n[instagram]: https://www.instagram.com/lizkicsije/\n\n[facebook]: https://www.facebook.com/oliver.reider/\n\n[oli799]: https://github.com/oli799\n[email]: mailto:reider340@mail.com"
  },
  {
    "path": "readme-profiles/oshadeegangangana.md",
    "content": "<h1 align=\"center\">Hi dear! 👋</h1>\n<h2 align=\"center\">I'm Oshadee Gangangana</h2>\n<h3 align=\"center\">A full stack web developer from Sri Lanka</h3>\n<hr>\n\n- 🌱I’m following studying IT degree at the University of Moratuwa Sri Lanka.\n- 🌱I’m currently studying **React, React Native, Angular**\n"
  },
  {
    "path": "readme-profiles/oshka.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm oshka</h1>\n<h3 align=\"center\">A Software Developer From Ukraine</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **PHP, MySql, Javascript, YII2 and Codeception**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=oshka&theme=gruvbox&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=oshka&show_icons=true&count_private=true&theme=gruvbox\" alt=\"subeshb1\" /></p>"
  },
  {
    "path": "readme-profiles/ousainu.md",
    "content": "<h1 align=\"center\">Hello, T'm Ousainu!</h1>\n<h3 align=\"center\">Software Engineer</h3>\n<br/>\n\n- I love to code\n- This is my second official pull request for open source on GitHub!\n- Happy Hacktoberfest 2020 everyone!!!\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=ousainu\" alt=\"ousainu\" /></p>\n"
  },
  {
    "path": "readme-profiles/parryk303.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Kyle</h1>\n<h3 align=\"center\">A Software Developer From Colorado 🇺🇸</h3>\n\n<br/>\n\n- 🌱 I like working with **JavaScript** and am eager to learn more!\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=parryk303&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=parryk303&show_icons=true&count_private=true&theme=dark\" alt=\"parryk303\" /></p>\n"
  },
  {
    "path": "readme-profiles/philip-hobobo.md",
    "content": "<h1 align=\"center\">Hello 🌻, I'm Philip Hobobo</h1>\n<h3 align=\"center\">I'm currently a student learning Web Development and looking to become either a front end or full stack engineer.</h3>\n<br/>\n\n\n- 🍵 I’m currently learning **Python**\n\n[![trophy](https://github-profile-trophy.vercel.app/?username=philip-hobobo&theme=onedark)](https://github.com/ryo-ma/github-profile-trophy)\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=philip-hobobo&show_icons=true&count_private=true&theme=light\" alt=\"philip-hobobo\" /></p>\n\n### Connect with me:\n\n[linkedin]: https://www.linkedin.com/in/philip-hobobo-287623a7/\n\n[Twitter]: https://twitter.com/PhilOh_K\n\n[Github]: https://github.com/philip-hobobo\n"
  },
  {
    "path": "readme-profiles/pkspyder007.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Praveen</h1>\n<h3 align=\"center\">A passionate full stack developer from India</h3>\n\n<p align=\"left\"> <img src=\"https://komarev.com/ghpvc/?username=pkspyder007\" alt=\"pkspyder007\" /> </p>\n\n- 🔭 I’m currently working on [A Result Portal](https://iiitu-results.herokuapp.com/)\n\n- 🌱 I’m currently learning **Laravel**\n\n- 👨‍💻 My portfolio website is available at [https://thejsguy.me](https://thejsguy.me)\n\n- 📝 I sometime write articles on [https://thejsguy.me/blog](https://thejsguy.me/blog)\n\n- 💬 Ask me about **react, node.js, express.js, or anything thing intresting.**\n\n- 📫 How to reach me **praveenkr.564@gmail.com**\n\n- ⚡ Fun fact **I can shoot like Stephen Curry**\n\n<p align=\"left\">\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/javascript/javascript-original.svg\" alt=\"javascript\"\n    width=\"40\" height=\"40\" />\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/typescript/typescript-original.svg\" alt=\"typescript\"\n    width=\"40\" height=\"40\" />\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/react/react-original-wordmark.svg\" alt=\"react\"\n    width=\"40\" height=\"40\" />\n  <img src=\"https://cdn.worldvectorlogo.com/logos/nextjs-3.svg\" alt=\"nextjs\" width=\"40\" height=\"40\" />\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/nodejs/nodejs-original-wordmark.svg\" alt=\"nodejs\"\n    width=\"40\" height=\"40\" />\n  <img src=\"https://www.vectorlogo.zone/logos/gatsbyjs/gatsbyjs-icon.svg\" alt=\"gatsby\" width=\"40\" height=\"40\" />\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/express/express-original-wordmark.svg\" alt=\"express\"\n    width=\"40\" height=\"40\" />\n  <img src=\"https://www.vectorlogo.zone/logos/dartlang/dartlang-icon.svg\" alt=\"dart\" width=\"40\" height=\"40\" />\n  <img src=\"https://www.vectorlogo.zone/logos/flutterio/flutterio-icon.svg\" alt=\"flutter\" width=\"40\" height=\"40\" />\n  <img src=\"https://www.vectorlogo.zone/logos/firebase/firebase-icon.svg\" alt=\"firebase\" width=\"40\" height=\"40\" />\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/mongodb/mongodb-original-wordmark.svg\" alt=\"mongodb\"\n    width=\"40\" height=\"40\" />\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/mysql/mysql-original-wordmark.svg\" alt=\"mysql\"\n    width=\"40\" height=\"40\" />\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/php/php-original.svg\" alt=\"php\" width=\"40\"\n    height=\"40\" />\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/python/python-original.svg\" alt=\"python\" width=\"40\"\n    height=\"40\" />\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/django/django-original.svg\" alt=\"django\" width=\"40\"\n    height=\"40\" />\n  <img src=\"https://reactnative.dev/img/header_logo.svg\" alt=\"reactnative\" width=\"40\" height=\"40\" />\n  <img src=\"https://devicons.github.io/devicon/devicon.git/icons/sass/sass-original.svg\" alt=\"sass\" width=\"40\"\n    height=\"40\" />\n</p>\n<p><img align=\"left\"\n    src=\"https://github-readme-stats.vercel.app/api/top-langs/?username=pkspyder007&layout=compact&hide=html\"\n    alt=\"pkspyder007\" /></p>\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=pkspyder007&show_icons=true\"\n    alt=\"pkspyder007\" /></p>\n\n<p align=\"center\">\n  <a href=\"https://twitter.com/pkspyder007\" target=\"blank\"><img align=\"center\"\n      src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/twitter.svg\" alt=\"pkspyder007\" height=\"30\"\n      width=\"30\" /></a>\n  <a href=\"https://linkedin.com/in/praveen-kumar-8512b4189\" target=\"blank\"><img align=\"center\"\n      src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/linkedin.svg\" alt=\"praveen-kumar-8512b4189\" height=\"30\"\n      width=\"30\" /></a>\n  <a href=\"https://fb.com/PKSPYDER\" target=\"blank\"><img align=\"center\"\n      src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/facebook.svg\" alt=\"pkspyder\" height=\"30\"\n      width=\"30\" /></a>\n  <a href=\"https://instagram.com/pkspyder007\" target=\"blank\"><img align=\"center\"\n      src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/instagram.svg\" alt=\"pkspyder007\" height=\"30\"\n      width=\"30\" /></a>\n  <a href=\"https://www.youtube.com/c/https://www.youtube.com/channel/UCApeS8qFr_iegt-FrdIq8mw\" target=\"blank\"><img\n      align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/youtube.svg\" alt=\"the coding concept\"\n      height=\"30\" width=\"30\" /></a>\n</p>\n"
  },
  {
    "path": "readme-profiles/pranshumaheshwari.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Pranshu</h1>\n<h3 align=\"center\">A Software Developer From India</h3>\n\n<br/>\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=pranshumaheshwari&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=pranshumaheshwari&show_icons=true&count_private=true&theme=dark\" alt=\"pranshumaheshwari\" /></p>\n"
  },
  {
    "path": "readme-profiles/raghavg27.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Raghav</h1>\n<h3 align=\"center\">A Computer Science Undergrad from India</h3>\n\n<br/>\n\n- 🌱 I’m currently studying **Electron**\n- 📫 I love to create frontend.\n\nThank you for Joining with You!\n"
  },
  {
    "path": "readme-profiles/raj5036.md",
    "content": "# Hi I am [Raj Karmakar](https://github.com/raj5036)\n\n- 🔭 I’m currently working on a Social Media App based on React/GraphQL.\n- 👯 I’m open to collaborate on Github\n-  My moto: Eat 🍽  Sleep 🛌  Hack⚡  Repeat 🔁\n\n## BIO\n\n   Currently pursuing my B.Tech degree(4th year) in Computer Science.As a coder I have an avid interest in Data Structures,Algorithms and Optimization.I love taking challenges and being able to engineer the solution.\n\n## Technologies\n    React.Js , Node.Js/Express.Js , MongoDB,Laravel,PHP,Modern JavaScript(ES6 and beyond),Git & GitHub,Heroku etc.\n\n    I would be highly interested in getting exposure to domains providing intellectually challenging work in the field of computer science for providing as well as enriching my knowledge and skills at the same time.\n\n    Please contact me at EMAIL to find out how I might contribute and add value to your next project.\n\n### Check Out My Portflio for a detailed overview about me\n[Portfolio](https://raj5036.github.io/portfolio/dist/)\n\n### GitHub Stats:\n\n[![trophy](https://github-profile-trophy.vercel.app/?username=raj5036&theme=onedark)](https://github.com/ryo-ma/github-profile-trophy)\n \n"
  },
  {
    "path": "readme-profiles/rendani.md",
    "content": " \n\n<h1 align=\"center\"> 👋🏾  Rendani Luvhengo</h1>\n<h2 align=\"center\">Front End Developer</h2>\n<hr/>\n\n<p>I am currently learning React.js</p>\n\n\n### GitHub Stats:\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=renda02&theme=gruvbox&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=renda02&show_icons=true&count_private=true&theme=gruvbox\" alt=\"rendani\" /></p>\n"
  },
  {
    "path": "readme-profiles/rexdivakar.md",
    "content": "# Hey! I'm [Divakar](https://www.linkedin.com/in/divakar-r-9b34b86b/) <a href=\"https://www.gautamkrishnar.com/\"><img src=\"https://media.giphy.com/media/hvRJCLFzcasrR4ia7z/giphy.gif\" width=\"25px\"></a>\n\nA Software Engineer - Python enthusiast Techie, Curious Problem Solver 🚀 <br> Currently this is the place where I break & build stuffs :rofl:\nI’m not just a Nerd but a freaky one 😈\n\n<!-- ![alt text](header-animation-short-loop.gif) -->\n\n![Profile Views](https://komarev.com/ghpvc/?username=rexdivakar)\n[![Commits Badge](https://badges.pufler.dev/commits/monthly/rexdivakar)](https://badges.pufler.dev)\n[![Repos Badge](https://badges.pufler.dev/repos/rexdivakar)](https://badges.pufler.dev)\n\n![](https://camo.githubusercontent.com/992babdffd8c74a1502de375fbdf7e4d54773242/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f53576f536b4e36447854737a71494b4571762f67697068792e676966)\n\n\n<b>I love connecting with different people</b> so if you want to say <b>hi, I'll be happy to meet you more!</b> 😊<img src=\"https://media.giphy.com/media/LnQjpWaON8nhr21vNW/giphy.gif\" width=\"60\"></em>\n\n\n<p align=\"left\">\n  <a href=\"https://github.com/rexdivakar\"><img alt=\"GitHub\" title=\"GitHub\" height=\"32\" width=\"32\" src=\"https://raw.githubusercontent.com/rexdivakar/rexdivakar/master/assets/github.svg\"></a> \n<a href=\"https://www.linkedin.com/in/divakar-r-9b34b86b/\"><img alt=\"LinkedIn\" title=\"LinkedIn\" height=\"32\" width=\"32\" src=\"https://raw.githubusercontent.com/rexdivakar/rexdivakar/master/assets/linkedin.svg\"></a>\n<a href=\"https://discord.gg/j4pnYC6\"><img alt=\"Discord\" title=\"Discord\" height=\"32\" width=\"32\" src=\"https://raw.githubusercontent.com/rexdivakar/rexdivakar/master/assets/discord.svg\"></a>\n    <a href=\"https://t.me/rexdivakar\"><img alt=\"Telegram\" title=\"Telegram\" height=\"32\" width=\"32\" src=\"https://raw.githubusercontent.com/rexdivakar/rexdivakar/master/assets/telegram.svg\"></a>\n<a href=\"https://dev.to/rexdivakar\">\n  <img src=\"https://d2fltix0v2e0sb.cloudfront.net/dev-badge.svg\" alt=\"rexdivakar's DEV Profile\" height=\"30\" width=\"30\">\n</a>\n      \n\n\n\n**Talking about Personal Stuffs:**\n\n- 👨🏽‍💻 I’m currently working on something cool :wink:;\n- 🌱 I’m currently learning GraphQL and TensorFlow; \n- 👯 I’m looking to collaborate on any opensource projects or Hackathons.\n- 💬 Ask me about anything, I am happy to help;\n- ⚡ Fun fact: I :heart: breaking stuffs:s\n\n\n\n\n**Languages and Tools:**  \n\n<p align=\"left\"><img src=\"https://www.vectorlogo.zone/logos/gnu_bash/gnu_bash-icon.svg\" alt=\"bash\" width=\"40\" height=\"40\"/> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/csharp/csharp-original.svg\" alt=\"csharp\" width=\"40\" height=\"40\"/> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/docker/docker-original-wordmark.svg\" alt=\"docker\" width=\"40\" height=\"40\"/> <img src=\"https://www.vectorlogo.zone/logos/pocoo_flask/pocoo_flask-icon.svg\" alt=\"flask\" width=\"40\" height=\"40\"/> <img src=\"https://www.vectorlogo.zone/logos/google_cloud/google_cloud-icon.svg\" alt=\"gcp\" width=\"40\" height=\"40\"/> <img src=\"https://www.vectorlogo.zone/logos/git-scm/git-scm-icon.svg\" alt=\"git\" width=\"40\" height=\"40\"/> <img src=\"https://www.vectorlogo.zone/logos/apache_hadoop/apache_hadoop-icon.svg\" alt=\"hadoop\" width=\"40\" height=\"40\"/> <img src=\"https://www.vectorlogo.zone/logos/jenkins/jenkins-icon.svg\" alt=\"jenkins\" width=\"40\" height=\"40\"/> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/linux/linux-original.svg\" alt=\"linux\" width=\"40\" height=\"40\"/> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/mongodb/mongodb-original-wordmark.svg\" alt=\"mongodb\" width=\"40\" height=\"40\"/> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/mysql/mysql-original-wordmark.svg\" alt=\"mysql\" width=\"40\" height=\"40\"/> <img src=\"https://www.vectorlogo.zone/logos/opencv/opencv-icon.svg\" alt=\"opencv\" width=\"40\" height=\"40\"/> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/oracle/oracle-original.svg\" alt=\"oracle\" width=\"40\" height=\"40\"/> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/postgresql/postgresql-original-wordmark.svg\" alt=\"postgresql\" width=\"40\" height=\"40\"/> <img src=\"https://devicons.github.io/devicon/devicon.git/icons/python/python-original.svg\" alt=\"python\" width=\"40\" height=\"40\"/> <img src=\"https://www.vectorlogo.zone/logos/tensorflow/tensorflow-icon.svg\" alt=\"tensorflow\" width=\"40\" height=\"40\"/>\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=rexdivakar&show_icons=true\" alt=\"rexdivakar\" /></p>\n"
  },
  {
    "path": "readme-profiles/riyajain2.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Riya</h1>\n<h3 align=\"center\">A management graduate but i love to code.</h3>\n\n<br/>\n\n- 🌱 I’m currently studying **python**\n- 📫 I love to code and learn about new technologies.\n\nThank you for Joining with You!\n"
  },
  {
    "path": "readme-profiles/rukundo-kevin.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Rukundo Kevin</h1>\n<h3 align=\"center\">A Software Developer From Rwanda</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **AWS, JavaScript, React and NodeJs**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=rukundo-kevin&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=rukundo-kevin&show_icons=true&count_private=true&theme=dark\" alt=\"Rukundo Kevin\" /></p>"
  },
  {
    "path": "readme-profiles/sagarpandyansit.md",
    "content": "<div align=\"center\">\n  <h1> Hey there <img src=\"https://media.giphy.com/media/hvRJCLFzcasrR4ia7z/giphy.gif\" width=\"25px\"></h1>\n</div>\n\n<div align=\"center\">\n<h3> Sagar Pandya | 🏫 NSIT Delhi | 💻 A Full Stack developer</h3>\n</div>\n<br/>\n\n### :octocat: About me\n\n- I’m currently studying Computer Science at NSIT Delhi.\n- I interned at IIT Bombay as a Full Stack developer.\n- I'm currently exploring Machine Learning.\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=sagarpandyansit&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<div align=\"center\">\n\n✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨\n\n[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=sagarpandyansit&layout=compact)](https://github.com/anuraghazra/github-readme-stats)\n![Trinity's GitHub stats](https://github-readme-stats.vercel.app/api/?username=sagarpandyansit&show_icons=true&title_color=1F75C8&icon_color=2AA410&text_color=043667&bg_color=ffffff)\n\n</div>\n"
  },
  {
    "path": "readme-profiles/saileshbro.md",
    "content": "### Hi there 👋\n\n- 🔭 I’m currently working on **nutri.gram**\n- 🌱 I’m currently learning [ASP.NET](https://dotnet.microsoft.com/apps/aspnet)\n- 👯 I’m looking to collaborate on Flutter Projects\n- 🤔 I’m looking for help with Machine Learning\n- 💬 Ask me about [Flutter](https://flutter.dev)\n- 📫 How to reach me: [saileshbro@gmail.com](mailto:saileshbro@gmail.com)\n- 😄 Name: Sailesh Dahal\n- 🇳🇵 From Nepal\n- 📨 [Linkedin](https://www.linkedin.com/in/saileshbro/) [Facebook](https:///facebook.com/saileshbro) [Twitter](https://twitter.com/sail_sail30)\n- ⚡ Fun fact: 2020 sucks!\n\n---\n\n### Highlights ✨\n\n|                                                 My Github Stats                                                 |                                                      Top Languages                                                      |\n| :-------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: |\n| ![My github stats](https://github-readme-stats.vercel.app/api?username=saileshbro&show_icons=true&theme=cobalt) | ![Top Languages](https://github-readme-stats.vercel.app/api/top-langs/?username=saileshbro&layout=compact&theme=cobalt) |\n\n---\n\n### Projects 💻\n\n|                                                                                                                                                                                 |                                                                                                                                                                                |\n| :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |\n| [![nutri.gram](https://github-readme-stats.vercel.app/api/pin/?username=saileshbro&repo=nutri.gram&cache_seconds=86400&theme=cobalt)](https://github.com/saileshbro/nutri.gram) |  [![cognifeed](https://github-readme-stats.vercel.app/api/pin/?username=saileshbro&repo=cognifeed&cache_seconds=86400&theme=cobalt)](https://github.com/saileshbro/cognifeed)  |\n|       [![nirogi](https://github-readme-stats.vercel.app/api/pin/?username=saileshbro&repo=nirogi&cache_seconds=86400&theme=cobalt)](https://github.com/saileshbro/nirogi)       | [![ku-projects](https://github-readme-stats.vercel.app/api/pin/?username=kucc1997&repo=ku-projects&cache_seconds=86400&theme=cobalt)](https://github.com/kucc1997/ku-projects) |\n\n---\n\n### Contact 📞\n\n<p style=\"display:flex;justify-content:space-between;margin:20px 40px;\">\n  <a target= \"_blank\" href=\"https://github.com/saileshbro\" alt=\"GitHub\"><img height='45' src=\"https://sailesh.is-a.dev/icons/github.png\"></a>\n  <a target= \"_blank\" href=\"https://www.facebook.com/saileshbro/\" alt=\"Facebook\"><img height='45' src=\"https://sailesh.is-a.dev/icons/facebook.png\"></a>\n  <a target= \"_blank\" href=\"https://twitter.com/sail_sail30\" alt=\"Twitter\"><img height='45' src=\"https://sailesh.is-a.dev/icons/twitter.png\"></a>\n  <a target= \"_blank\" href=\"https://www.linkedin.com/in/saileshbro/\" alt=\"Linkedin\"><img height='45' src=\"https://sailesh.is-a.dev/icons/linkedin.png\"></a>\n  <a target= \"_blank\" href=\"https://www.instagram.com/sail_sail30\" alt=\"Instagram\"><img height='45' src=\"https://sailesh.is-a.dev/icons/instagram.png\"></a>\n</p>\n"
  },
  {
    "path": "readme-profiles/sanjus-robotic-studio.md",
    "content": "<h1 align=\"center\">Hi 👋, I am Sanjiv Anand </h1>\n<h3 align=\"center\">A Programmer and a Robotics Project Developer From India</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **Web designing, Machine learning, Artificial intelligence**\n\n\n**Feel Free to see my projects on youtube, github and more exciting platforms**\n<br/>\n- **[Youtube](https://bit.ly/sanjusroboticsstudio)**\n- **[Github](https://github.com/sanjus-robotic-studio)**\n- **[Hackster.io](https://www.hackster.io/Sanjus-Robotics-Studio)**\n- **[Instuctables](https://www.instructables.com/member/Sanjus%20Robotic%20Studio/)**\n- **[Portfolio](https://www.sanjusroboticsstudio.me)**\n- **[Blog](https://sanjusroboticsstudio.blogspot.com/)**\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=sanjus-robotic-studio&show_icons=true&count_private=true&theme=dark\" alt=\"subeshb1\" /></p>\n"
  },
  {
    "path": "readme-profiles/saranshkotnala.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Saransh</h1>\n<h3 align=\"center\">A Software Developer From India</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **Python, React and Django**\n"
  },
  {
    "path": "readme-profiles/sathiranipun.md",
    "content": "<h1 align=\"center\">Hi dear! 👋</h1>\n<h2 align=\"center\">I'm Sathira Nipun</h2>\n<h3 align=\"center\">A Software Developer from Sri Lanka</h3>\n<hr>\n\n- 🌱I’m following studying IT degree at the University of Moratuwa Sri Lanka.\n- 🌱I’m currently studying **React, React Native, AdobeXD ,Figma and more**\n- 🌱I love graphic design.\n- 🌱I'm interested in the following.\n#UI and UX developing\n#Full Stack Developing\n#Cyber Security\n\n\n"
  },
  {
    "path": "readme-profiles/setheal.md",
    "content": "### Hi 👋, I'm Maëlann 🤓\n\n- 🌍 I'm from Brussels, Belgium\n- 🔭 I’m a FullStack Developer working mainly with `React`, `Nodejs` and `Docker`\n- 🧐 I’m currently learning `ElasticSearch`\n\n---\n\n![My github stats](https://github-readme-stats.vercel.app/api?username=setheal&show_icons=true&theme=cobalt)\n"
  },
  {
    "path": "readme-profiles/shankar524.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Shankar</h1>\n<h3 align=\"center\">A Software Developer From Nepal 🇳🇵</h3>\n\n<br/>\n\n🌱 I’m currently going with **AWS, Golang, JS, Java and Ruby**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=shankar524&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=shankar524&show_icons=true&count_private=true&theme=dark\" alt=\"shankar524\" /></p>\n"
  },
  {
    "path": "readme-profiles/shinigami2905.md",
    "content": "### Hey there! 👋, Aayush here!\n\n- ⏱️ I am a student, and I **LOVE** java ️.\n- 🙌  I am a bit lazy, but enthusiastic while coding!\n- Just got into App Development, still would be glad to help you out 😇\n\n![Aayush\"s Status](https://github-readme-stats.vercel.app/api?username=shinigami2905&show_icons=true&hide_border=true)\n![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=shinigami2905&layout=compact&hide=tsql&langs_count=10&hide_border=true)"
  },
  {
    "path": "readme-profiles/shreyaraj13.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Shreya Raj</h1>\n\n\n<br/>\n\n🌱 I’m currently going with **html and css**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=shankar524&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=shankar524&show_icons=true&count_private=true&theme=dark\" alt=\"shankar524\" /></p>\n"
  },
  {
    "path": "readme-profiles/shubhik7.md",
    "content": "<h1 align=\"center\">Hola Peeps 👋, I'm Shubhi</h1>\n<h3 align=\"center\">A Final Year GL Bajaj Institute of Technology, India</h3>\n\n<br/>\n\n- 🌱  ***I like python the most and currently work with the same***\n- 🌱  ***I like to do coding.***\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=shubhik7&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=shubhik7&show_icons=true&count_private=true&theme=dark\" alt=\"shubhi\" /></p>\n"
  },
  {
    "path": "readme-profiles/sonylomo.md",
    "content": "<h1 align=\"center\">Ssup Internet Stranger 😎</h1>\n<h3 align=\"center\">I'm a Software Developer from Nairobi, Kenya.</h3>\n\n<br/>\n\n\n- I’m damn awesome at **HTML/CSS, JavaScript, ReactJS, TypeScript and GraphQL**\n- I've also done **Firebase, NodeJS(Express), Python**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=sonylomo&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/sonylomo1/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=sonylomo&show_icons=true&count_private=true&theme=cobalt\" alt=\"sonylomo\" /></p>\n"
  },
  {
    "path": "readme-profiles/sripaad.md",
    "content": "<h1 align=\"center\">Hi <img src=\"https://raw.githubusercontent.com/MartinHeinz/MartinHeinz/master/wave.gif\" width=\"40\"> I'm Sripaad Srinivasan</h1>\n<h3 align=\"center\">Software developer from India</h3>\n\n<br/>\n<h3 align=\"left\"> 🌱 I’m currently going with Machine Learning and Data Science in Python </h3>\n<br/>\n<br/>\n<img src=\"https://github-profile-trophy.vercel.app/?username=sripaad&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n<br/>\n<br/>\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=sripaad&show_icons=true&count_private=true&theme=cobalt\" alt=\"sripaad\" /></p>\n<br/>\n\n\n## Open for collaborations.\n<br/>\n\n## Contact 📞\n\n[<img src = \"https://img.shields.io/badge/gmail-D44638.svg?&style=for-the-badge&logo=gmail&logoColor=white\" />](mailto:sripaad751@gmail.com)\n[<img src = \"https://img.shields.io/badge/instagram-%23E4405F.svg?&style=for-the-badge&logo=instagram&logoColor=white\">](https://www.instagram.com/sripaadsrinivasan/)\n[<img src= \"https://img.shields.io/badge/twitter-1DA1F2.svg?&style=for-the-badge&logo=twitter&logoColor=white\" />](https://www.twitter.com/Sripaad_)\n[<img src=\"https://img.shields.io/badge/linkedin-%230077B5.svg?&style=for-the-badge&logo=linkedin&logoColor=white\" />](https://www.linkedin.com/in/sripaad-srinivasan/)"
  },
  {
    "path": "readme-profiles/studpeps.md",
    "content": "# Hello!! I'm Stuti Prasad\n\n---\n\nThis is my first time participating in Hacktoberfest and so far it's been great!\n\n[![Stuti's github stats](https://github-readme-stats.vercel.app/api?username=studpeps&show_icons=true&theme=dracula)](https://github.com/studpeps)\n"
  },
  {
    "path": "readme-profiles/subeshb1.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Subesh</h1>\n<h3 align=\"center\">A Software Developer From Nepal</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **AWS, Golang, React and Ruby**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=subeshb1&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=subeshb1&show_icons=true&count_private=true&theme=dark\" alt=\"subeshb1\" /></p>\n"
  },
  {
    "path": "readme-profiles/suffisme.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Mohd Sufiyan Ansari</h1>\n<h3 align=\"center\">A Second Year B Tech Undergraduate from National Institute of Technology Warangal, India</h3>\n\n<br/>\n\n- 🌱  ***I'm currently doing competitive coding on Codechef and codeforces***\n- 🌱  ***I like to do Web Development and I use Django as preferred backend framework.***\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=suffisme&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=suffisme&show_icons=true&count_private=true&theme=dark\" alt=\"subeshb1\" /></p>\n"
  },
  {
    "path": "readme-profiles/swojeet.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Swojeet</h1>\n<h3 align=\"center\">A Software Developer From Nepal 🇳🇵</h3>\n\n<hr>\n\n<br/>\n\n- 🌱 I’m currently going with **Ruby on Rails, Go Lang, AWS and React**\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=swojeet&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=swojeet&show_icons=true&count_private=true&theme=dark\" alt=\"swojeet\" /></p>\n"
  },
  {
    "path": "readme-profiles/tae8838.md",
    "content": "<h1 align=\"center\">Hey, I'm Tae</h1>\n<h3 align=\"center\">A Software Developer From Thailand</h3>\n\n<br/>\n\n- 🌱 I’m currently work mostly with **Ruby on Rails and Vue.js**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=tae8838&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=tae8838&show_icons=true&count_private=true&theme=dark\" alt=\"tae8838\" /></p>\n"
  },
  {
    "path": "readme-profiles/taylor009.md",
    "content": "<h1 align=\"center\">Hello, I'm Taylor</h1>\n<h3 align=\"center\">Software Engineer</h3>\n<br/>\n\n- I love to code and solving complicated problems.\n- This is my second official pull request for open source on GitHub!\n- Happy Hacktoberfest 2020 everyone!!!\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=taylor009\" alt=\"taylor\" /></p>\n"
  },
  {
    "path": "readme-profiles/thpadelis.md",
    "content": "## Quick Sight\n\n- :wave: Padelis Theodosiou\n- :briefcase: Software Engineer\n- :pushpin: Thessaloniki, Greece\n\n## :octocat: About me\n\nI'm passionate about learning the latest and greatest technologies whether that's the frontend or backend. I enjoy creating sleek and responsive applications in addition to being user-friendly. A versatile engineer with interests in Web Development. Adaptable and self-motivated learner. Interested in new programming technologies, and continuous self-improvement.\n\n- :computer: I’m currently working at Athens Technology Center\n- :mortar_board: Computer Science and Telecommunication at University of Thessaly​\n- :bulb: ​Fun fact: `obsessed with coffee`\n\n### 📕 Checkout my Blog Posts on [Dev.to](https://dev.to/thpadelis)\n\n![Padelis' github stats](https://github-readme-stats.vercel.app/api?username=thpadelis&count_private=true&show_icons=true&theme=dracula)\n"
  },
  {
    "path": "readme-profiles/tooshar.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Tushar</h1>\n<h3 align=\"center\">I am working as a Software Engineer in India</h3>\n<br/>\n\n- Full Stack Developer, Cyber Security Consultant, Blogger, Sports person, Artist, Speaker, Spiritual, Enthusiast, and much more.**\n"
  },
  {
    "path": "readme-profiles/vatsalgp.md",
    "content": "# Hi, I'm <a href=\"https://github.com/vatsalgp\">Vatsal</a>\n\nI am a Software Engineering student from India. I'm currently into the MERN Stack.\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=vatsalgp&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=vatsalgp&show_icons=true&count_private=true&theme=dark\" alt=\"vatsalgp\" /></p>\n"
  },
  {
    "path": "readme-profiles/veranith.md",
    "content": "<!--\n**Veranith/Veranith** is a ✨ _special_ ✨ repository because its `README.md` (this file) appears on your GitHub profile.\n\nHere are some ideas to get you started:\n\n- 🔭 I’m currently working on ...\n- 🌱 I’m currently learning ...\n- 👯 I’m looking to collaborate on ...\n- 🤔 I’m looking for help with ...\n- 💬 Ask me about ...\n- 📫 How to reach me: ...\n- 😄 Pronouns: ...\n- ⚡ Fun fact: ...\n-->\n\n# Hello, I am RyRob\n\n## **On GitHub I am**:\n- I am learning as a member of the *Microsoft LEAP Internal Program*\n- Learning C, C#, ASP.NET, Python, AI with Python.\n- Contributing to the local charity Meals on Wheels \n\n\n## **I enjoy**:\n- Learning new things\n- Computer Networking\n- Charity Work\n- Amateur Radio\n- Disc Golf\n\n\n## **Professional**:\nLinkedin: https://www.linkedin.com/in/ryrob\n\n&nbsp;\n\n# Microsoft\n- Currently a member of the Microsoft LEAP Internal Program\n- Create PowerShell modules and scripts for local team use.\n\n&nbsp;\n\n# Meals on Wheels\n\n- I designed, deployed and manage our cloud hosted infrastructure.\n- I deployed our current cloud based applications and database servers.\n- Currently learning more about programming so I can update our applications with new features.  \n\n&nbsp;\n\n[![trophy](https://github-profile-trophy.vercel.app/?username=veranith&theme=discord&column=3&margin-w=15&margin-h=15)](https://github.com/ryo-ma/github-profile-trophy)\n\n&nbsp;\n\n[![GitHub Stats](https://github-readme-stats.vercel.app/api?username=veranith&show_icons=true&count_private=true&theme=tokyonight)](https://github.com/anuraghazra/github-readme-stats)"
  },
  {
    "path": "readme-profiles/viraldevpb.md",
    "content": "<h1 align=\"center\">Hello 👋, I'm Prathamesh Borse</h1>\n<h3 align=\"center\">My skills include: UI/UX Designing and Frontend Development</h3>\n<br/>\n\n- I have complete knowledge of **C, C++, Java, HTML, CSS and Javascript**\n- I'am currently learning **Kotlin**.\n- I also know some of the designing softwares like **Adobe Photoshop**\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=viraldevpb&show_icons=true&title_color=ffffff&icon_color=03fc8c&text_color=daf7dc&bg_color=191919\" alt=\"Prathamesh\" /></p>"
  },
  {
    "path": "readme-profiles/vppillai.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Vysakh P Pillai</h1>\n<h3 align=\"center\">A Software Developer From India</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **C & Python**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=vppillai&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=vppillai&show_icons=true&count_private=true&theme=dark\" alt=\"vppillai\" /></p>\n"
  },
  {
    "path": "readme-profiles/vunderkind.md",
    "content": "<h1 align=\"center\">Hello! My name is Justin.</h1>\n<h2 align=\"center\">Friends call me Vundie. or Mogwai.</h2>\n<h3 align='center'>I'm a fullstack web developer from Lagos, Nigeria.</h3>\n\n<br/>\n\nWhat I'm currently interested in:\n\n- JavaScript\n- React\n- NodeJS\n- Augmented Reality (with Facebook's Spark AR)\n- AWS\n- Firebase\n- Bayesian theorem\n- Probability\n- Creative coding\n- 3D\n- Interaction design\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=vunderkind&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=vunderkind&show_icons=true&count_private=true&theme=dark\" alt=\"vunderkind\" /></p>\n"
  },
  {
    "path": "readme-profiles/wsameer.md",
    "content": "# Hello, I'm Sameer Waskar! ✨\n\n- I'm a Full Stack Developer who specializes in building exceptional digital experiences.\n- I have invested over a decade in learning and practicing software development to distil complex technical ideas into user-friendly interfaces.\n- I am currently learning more about TypeScript, Kotlin, and AWS.\n- This year I am participating in my first Hacktoberfest! It has been a great experience to learn more about contributing to Open Source projects."
  },
  {
    "path": "readme-profiles/xdebbie.md",
    "content": "## xdebbie\n\n<br  />\n\n---\n\n<br  />\n\n[![Github Stats](https://github-readme-stats.vercel.app/api?username=xdebbie&count_private=true&show_icons=true)](https://github.com/xdebbie)\n[![Lang Stats](https://github-readme-stats.vercel.app/api/top-langs/?username=xdebbie&layout=compact&%20notebook)](https://github.com/xdebbie?tab=repositories)\n"
  },
  {
    "path": "readme-profiles/xxx32.md",
    "content": "<h1 align=\"center\">Hi 👋, I'm Aarushi</h1>\n<h3 align=\"center\">An engineering student from India</h3>\n\n<br/>\n\n- 🌱 I’m currently going with **Android developement using java and front end developement with HTML, CSS and javascript**\n\n\n\n<img src=\"https://github-profile-trophy.vercel.app/?username=xxx32&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)\">\n\n<p>&nbsp;<img align=\"center\" src=\"https://github-readme-stats.vercel.app/api?username=xxx32&show_icons=true&count_private=true&theme=dark\" alt=\"subeshb1\" /></p>\n"
  },
  {
    "path": "specs/contributor.test.js",
    "content": "const fetch = require('node-fetch');\nconst contributors = require('../contributors.json')\n\n\ndescribe('Check if required attributes is contributors are present and in correct order', () => {\n\n  it('tests if country and name is present in a contributor object', () => {\n\n    const result = Object.entries(contributors)\n      .map(([_, information]) => information)\n      .every(information => information.name && information.country)\n    if (!result) {\n      const missing = Object.entries(contributors)\n        .map(([_, information]) => information)\n        .find(information => !information.name || !information.country)\n      console.log(\"The following object is missing required information `name` or `country`:\", missing)\n    }\n    expect(result).toBe(true)\n  });\n\n  it('tests if the contributor name are in ascending order or not', () => {\n    let sorted = true;\n    Object.entries(contributors)\n      .map(([contributorId, _]) => contributorId)\n      .reduce((previousId, currentId) => {\n        if (!sorted) {\n          return\n        }\n        if (previousId.toLowerCase() > currentId.toLowerCase()) {\n          console.log(`${currentId}'s information should come before ${previousId}. Please fix the order.`)\n          sorted = false;\n        }\n        return currentId\n      })\n    expect(sorted).toBe(true)\n  });\n\n  it('Check if github user id exists', () => {\n    expect.assertions(1);\n    const users = process.env.NEW_USER ? process.env.NEW_USER.split(\",\") : [];\n    return Promise.all(users\n      .map((user) => fetch(`https://api.github.com/users/${user}`).then(res => res.status)))\n      .then(responses => {\n        const result = responses.every(res => res === 200)\n        if (!result) {\n          console.log(`The newly added users don't Exist: [${users}]`)\n        }\n        expect(result).toBe(true)\n      })\n  });\n})\n"
  },
  {
    "path": "src/components/DeveloperCard/index.jsx",
    "content": "import React from 'react'\nimport { GrLinkedin, GrTwitter, GrGithub } from 'react-icons/gr'\nimport { FaLink } from 'react-icons/fa'\nimport { Link } from 'gatsby'\n\nexport default function DeveloperCard({\n  repositoryCount,\n  contributionYears,\n  country,\n  firstContribution,\n  followersCount,\n  githubUserId,\n  issuesCount,\n  linkedin,\n  name,\n  avatarUrl,\n  countryCode,\n  pullRequestsCount,\n  repoContributedCount,\n  thisYearContribution,\n  twitter,\n  website,\n  position,\n  searchKey,\n}) {\n  return (\n    <div className=\"developer-card\">\n      <div className=\"developer-card-user-info\">\n        {countryCode && (\n          <span\n            className={`flag-icon flag-icon-${countryCode.toLowerCase()} `}\n            title={country}\n          ></span>\n        )}\n        <div\n          className=\"developer-card-username\"\n          dangerouslySetInnerHTML={{\n            __html: !!searchKey\n              ? githubUserId.replace(\n                  searchKey,\n                  `<div class=\"highlight\">${searchKey}</div>`\n                )\n              : githubUserId,\n          }}\n        ></div>\n        <div className=\"developer-card-avatar\">\n          <img src={avatarUrl} alt={githubUserId} />\n        </div>\n        <div className=\"developer-card-links\">\n          <a\n            href={`https://github.com/${githubUserId}`}\n            target=\"__blank\"\n            rel=\"noreferrer\"\n          >\n            <GrGithub />\n          </a>\n          {twitter && (\n            <a href={twitter} target=\"__blank\" rel=\"noreferrer\">\n              <GrTwitter />\n            </a>\n          )}\n          {linkedin && (\n            <a href={linkedin} target=\"__blank\" rel=\"noreferrer\">\n              <GrLinkedin />\n            </a>\n          )}\n          {website && (\n            <a href={website} target=\"__blank\" rel=\"noreferrer\">\n              <FaLink />\n            </a>\n          )}\n        </div>\n      </div>\n      <div className=\"developer-card-user-stats\">\n        {position && (\n          <div className=\"developer-card-hover\">\n            <Link\n              className=\"developer-card-link\"\n              to={`/profile/${githubUserId}`}\n            >\n              View Profile\n            </Link>\n          </div>\n        )}\n\n        <div className=\"developer-card-name\">\n          {name}\n          {position && <span># {position} </span>}\n        </div>\n        <div className=\"developer-card-detail\">\n          <div className=\"developer-card-title\">Contribution(This Year)</div>\n          <div className=\"developer-card-value\">{thisYearContribution}</div>\n        </div>\n        <div className=\"developer-card-detail\">\n          <div className=\"developer-card-title\">No. of Repositories</div>\n          <div className=\"developer-card-value\">{repositoryCount}</div>\n        </div>\n        <div className=\"developer-card-detail\">\n          <div className=\"developer-card-title\">No. of Repos Contributed</div>\n          <div className=\"developer-card-value\">{repoContributedCount}</div>\n        </div>\n\n        <div className=\"developer-card-detail\">\n          <div className=\"developer-card-title\">Total Pull Requests</div>\n          <div className=\"developer-card-value\">{pullRequestsCount}</div>\n        </div>\n        <div className=\"developer-card-detail\">\n          <div className=\"developer-card-title\">Total Issues</div>\n          <div className=\"developer-card-value\">{issuesCount}</div>\n        </div>\n        <div className=\"developer-card-detail\">\n          <div className=\"developer-card-title\">Followers</div>\n          <div className=\"developer-card-value\">{followersCount}</div>\n        </div>\n      </div>\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/components/Image.js",
    "content": "import React from 'react'\nimport { graphql, useStaticQuery } from 'gatsby'\nimport Img from 'gatsby-image'\n\nconst prepareQuery = (path, width, height) => graphql`\n  query {\n    file(absolutePath: { regex: ${path} }) {\n      childImageSharp {\n        fixed(width: ${width}, height: ${height}) {\n          ...GatsbyImageSharpFixed\n        }\n      }\n    }\n  }\n`\nexport default ({ path, width, height, ...props }) => {\n  const data = useStaticQuery(prepareQuery())\n  return <Img fixed={data.file.childImageSharp.fixed} {...props} />\n}\n"
  },
  {
    "path": "src/components/Layouts/AppDisplayLayout.jsx",
    "content": "import React from 'react'\nimport { Link } from 'gatsby'\nimport { Head } from '../../app/components'\nimport { images } from '../../assets/images'\nimport '../../css/components/app-container.scss'\n\nconst AppDisplayLayout = React.memo(({ data, category, noHead = false }) => {\n  let homeData\n  if (category === 'all') {\n    const allCategory = new Set(\n      data.nodes.map(x => x.category).filter(x => x !== 'app')\n    )\n    return (\n      <>\n        <Head data={data.nodes.find(x => x.category === 'app')} />\n        {[...allCategory].map(category => {\n          return (\n            <AppDisplayLayout\n              noHead\n              data={{ nodes: data.nodes.filter(x => x.category === category) }}\n            />\n          )\n        })}\n      </>\n    )\n  }\n  homeData = data.nodes.find(x => x.name === 'home')\n  return (\n    <div className=\"app-container\">\n      {homeData && (\n        <>\n          {!noHead && <Head data={homeData} />}\n          <h1>{homeData.title}</h1>\n        </>\n      )}\n      <div className=\"app-container__list\">\n        {data.nodes.map((x, i) => {\n          return x.name !== 'home' ? (\n            <AppDisplay data={x} key={i} homeTitle={homeData.title} />\n          ) : null\n        })}\n      </div>\n    </div>\n  )\n})\n\nconst AppDisplay = ({ data, homeTitle }) => {\n  return (\n    <Link to={data.url} className=\"app-container__item\">\n      <div className=\"app-container__image\">\n        <img src={images[data.image] || images['logo.png']} alt={data.title} />\n      </div>\n      <div className=\"app-container__content\">\n        <h2 className=\"app-container__title\">\n          {data.title.replace(` | ${homeTitle}`, '')}\n        </h2>\n        <div className=\"app-container__description\">\n          {data.description.slice(0, 100) + '...'}\n          <button>Expand</button>\n        </div>\n      </div>\n    </Link>\n  )\n}\n\nexport default AppDisplayLayout\n"
  },
  {
    "path": "src/components/Layouts/BlogLayout.jsx",
    "content": "import React from 'react'\n\nimport Layout from './Layout'\nimport { rhythm } from '../../utils/typography'\n\nclass BlogPostTemplate extends React.Component {\n  render() {\n    return (\n      <Layout>\n        <div\n          style={{\n            background: 'var(--theme-background)',\n            color: 'var(--theme-color)',\n            minHeight: '100vh',\n          }}\n        >\n          <div\n            style={{\n              marginLeft: `auto`,\n              marginRight: `auto`,\n              maxWidth: 900,\n              background: 'var(--theme-background)',\n              color: 'var(--theme-color)',\n              padding: `${rhythm(1.5)} ${rhythm(3 / 4)}`,\n            }}\n          >\n            {this.props.children}\n          </div>\n        </div>\n      </Layout>\n    )\n  }\n}\n\nexport default BlogPostTemplate\n"
  },
  {
    "path": "src/components/Layouts/Layout.jsx",
    "content": "import React, { useState, useEffect } from 'react'\nimport '../../css/index.scss'\nimport NavBar from '../navbar/index'\nimport Footer from '../footer/index'\n\nclass ErrorBoundary extends React.PureComponent {\n  constructor() {\n    super()\n    this.state = { hasError: false }\n  }\n\n  static getDerivedStateFromError(error) {\n    // Update state so the next render will show the fallback UI.\n    return { hasError: true }\n  }\n\n  componentDidCatch(error, errorInfo) {\n    // You can also log the error to an error reporting service\n  }\n\n  render() {\n    if (this.state.hasError) {\n      // You can render any custom fallback UI\n      return <h1>Something went wrong. Please refresh the page!</h1>\n    }\n\n    return this.props.children\n  }\n}\n\nconst Layout = props => {\n  const { children } = props\n\n  return (\n    <div id=\"project-main-container\">\n      <NavBar />\n      <div className=\"nav-breaker\"></div>\n      <ErrorBoundary>\n        <div className=\"dynamic-container\">{children}</div>\n      </ErrorBoundary>\n      <Footer />\n      <div className=\"st-nav-breaker\"></div>\n    </div>\n  )\n}\n\n\nexport default Layout\n"
  },
  {
    "path": "src/components/Popover/index.jsx",
    "content": "import React, { useState, useRef, useEffect } from 'react'\n\nimport { useClickAway } from 'react-use'\nimport { usePopper } from 'react-popper'\nimport { If } from '../utils'\nconst OPEN = 0\nconst CLOSE = 1\nconst OUT_CLOSE = 2\nconst Popover = React.forwardRef(\n  (\n    {\n      debug,\n      show,\n      children,\n      text,\n      closeOnClick = false,\n      className = '',\n      placement = 'bottom',\n      elementAs = 'div',\n      render,\n      strategy = 'absolute',\n      offset = [0, 10],\n      ...otherProps\n    },\n    forwardedRef\n  ) => {\n    const referenceElement = useRef(null)\n    const [popperElement, setPopperElement] = useState(null)\n    const { styles, attributes } = usePopper(\n      referenceElement && referenceElement.current,\n      popperElement,\n      {\n        placement: placement,\n        strategy: strategy,\n        modifiers: [\n          {\n            name: 'offset',\n            options: {\n              offset: offset,\n            },\n          },\n        ],\n      }\n    )\n    const [popoverState, setPopoverState] = useState(CLOSE)\n    const toggle = () =>\n      show == null &&\n      setPopoverState(\n        popoverState === OUT_CLOSE\n          ? CLOSE\n          : popoverState === CLOSE\n          ? OPEN\n          : CLOSE\n      )\n    useClickAway(\n      { current: popperElement },\n      ({ target }) =>\n        show == null &&\n        popoverState === OPEN &&\n        setPopoverState(\n          referenceElement &&\n            referenceElement.current &&\n            (referenceElement.current === target ||\n              referenceElement.current.contains(target))\n            ? OUT_CLOSE\n            : CLOSE\n        )\n    )\n    const As = elementAs\n    useEffect(() => {\n      if (forwardedRef && referenceElement && referenceElement.current) {\n        forwardedRef.current = referenceElement.current\n      }\n    }, [referenceElement])\n    return (\n      <>\n        <As\n          className={className}\n          ref={referenceElement}\n          onClick={toggle}\n          {...otherProps}\n        >\n          {render}\n        </As>\n\n        <If condition={show != null ? show : popoverState === OPEN}>\n          <div\n            ref={setPopperElement}\n            style={{\n              ...styles.popper,\n            }}\n            {...attributes.popper}\n          >\n            {children}\n          </div>\n        </If>\n      </>\n    )\n  }\n)\nexport default Popover\n"
  },
  {
    "path": "src/components/SideBar/index.js",
    "content": "import React, { useState, useEffect } from 'react'\nimport { Link } from 'gatsby'\n\nconst categorizeSeries = series =>\n  series.reduce((acc, x) => {\n    const key = Math.floor(x.position / 100)\n    if (!acc[key]) {\n      acc[key] = {\n        category: x.category,\n        items: [x],\n      }\n    } else {\n      acc[key].items.push(x)\n    }\n    return acc\n  }, [])\n\nexport default function SideBar({ seriesElements }) {\n  useEffect(() => {\n    document.querySelector('.blog-sidebar__item--active') &&\n      document.querySelector('.blog-sidebar__item--active').focus()\n  }, [])\n  if (!(seriesElements && seriesElements.length)) return null\n  const first = seriesElements[0]\n  const categorizedSeries = categorizeSeries(seriesElements.slice(1))\n\n  return (\n    <aside className=\"blog-sidebar\">\n      <Link\n        className=\"blog-sidebar__series-title blog-sidebar__item\"\n        key={first.title}\n        activeClassName=\"blog-sidebar__item--active\"\n        to={first.slug}\n      >\n        {first.title}\n      </Link>\n      {categorizedSeries.map((elements, i) => {\n        return (\n          <React.Fragment key={i}>\n            {elements.category && (\n              <div className=\"blog-sidebar__header\">{elements.category}</div>\n            )}\n            {elements.items.map(element => (\n              <Link\n                className=\"blog-sidebar__item\"\n                key={element.title}\n                activeClassName=\"blog-sidebar__item--active\"\n                to={element.slug}\n              >\n                {element.shortTitle || element.title}\n              </Link>\n            ))}\n          </React.Fragment>\n        )\n      })}\n    </aside>\n  )\n}\n"
  },
  {
    "path": "src/components/Toc/index.js",
    "content": "import React, { useEffect } from 'react'\n\nclass ErrorBoundary extends React.PureComponent {\n  constructor() {\n    super()\n    this.state = { hasError: false }\n  }\n\n  static getDerivedStateFromError(error) {\n    // Update state so the next render will show the fallback UI.\n    return { hasError: true }\n  }\n\n  componentDidCatch(error, errorInfo) {\n    // You can also log the error to an error reporting service\n  }\n\n  render() {\n    if (this.state.hasError) {\n      // You can render any custom fallback UI\n      return null\n    }\n\n    return this.props.children\n  }\n}\n\nconst Listener = () => {\n  useEffect(() => {\n    const motionQuery = window.matchMedia('(prefers-reduced-motion)')\n    const TableOfContents = {\n      container: document.querySelector('.table-of-contents'),\n      links: null,\n      headings: null,\n      intersectionOptions: {\n        rootMargin: '0px',\n        threshold: 1,\n      },\n      previousSection: null,\n      observer: null,\n\n      init() {\n        if (!this.container) return\n        this.findLinksAndHeadings()\n        if (!this.links.length) return\n        this.handleObserver = this.handleObserver.bind(this)\n        this.setUpObserver()\n        this.observeSections()\n\n        this.links.forEach(link => {\n          link.addEventListener('click', this.handleLinkClick.bind(this))\n        })\n      },\n\n      handleLinkClick(evt) {\n        evt.preventDefault()\n        let id = evt.target.getAttribute('href').replace('#', '')\n\n        let section = this.headings.find(heading => {\n          return heading.getAttribute('id') === id\n        })\n\n        section.setAttribute('tabindex', -1)\n        section.focus()\n\n        window.scroll({\n          behavior: 'instant',\n          top: section.offsetTop - 60,\n          block: 'start',\n        })\n\n        if (this.container.classList.contains('active')) {\n          this.container.classList.remove('active')\n        }\n      },\n\n      handleObserver(entries, observer) {\n        entries.forEach(entry => {\n          const id = entry.target.getAttribute('id')\n          let href = `#${id}`,\n            link = this.links.find(l => l.getAttribute('href') === href)\n          if (entry.isIntersecting && entry.intersectionRatio >= 1) {\n            link.classList.add('is-visible')\n            this.previousSection = id\n          } else {\n            link.classList.remove('is-visible')\n          }\n          this.highlightFirstActive()\n        })\n      },\n\n      highlightFirstActive() {\n        let firstVisibleLink = this.container.querySelector('.is-visible')\n        this.links.forEach(link => {\n          link.classList.remove('active')\n        })\n\n        if (firstVisibleLink) {\n          firstVisibleLink.classList.add('active')\n        }\n\n        if (!firstVisibleLink && this.previousSection) {\n          this.container\n            .querySelector(`a[href=\"#${this.previousSection}\"]`)\n            .classList.add('active')\n        }\n      },\n\n      observeSections() {\n        this.headings.forEach(heading => {\n          this.observer.observe(heading)\n        })\n      },\n\n      setUpObserver() {\n        this.observer = new IntersectionObserver(\n          this.handleObserver,\n          this.intersectionOptions\n        )\n      },\n\n      findLinksAndHeadings() {\n        this.links = [...this.container.querySelectorAll('a')]\n        this.headings = this.links\n          .map(link => {\n            let id = link.getAttribute('href')\n            return document.querySelector(id)\n          })\n          .filter(x => x != null)\n      },\n    }\n    TableOfContents.init()\n  }, [])\n  return null\n}\nexport default function Toc({ tableOfContents }) {\n  return (\n    <div className=\"table-of-contents\">\n      <ErrorBoundary>\n        <h2>TABLE OF CONTENTS</h2>\n        <div dangerouslySetInnerHTML={{ __html: tableOfContents }}></div>\n        <Listener />\n      </ErrorBoundary>\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/components/ToolTip/index.jsx",
    "content": "import React, { useState, useRef, useEffect } from 'react'\nimport { usePopper } from 'react-popper'\nconst ToolTip = React.forwardRef(\n  (\n    {\n      children,\n      text,\n      closeOnClick = false,\n      className = '',\n      placement = 'bottom',\n      elementAs = 'div',\n      offset = 5,\n      strategy = 'absolute',\n      ...otherProps\n    },\n    forwardedRef\n  ) => {\n    const referenceElement = useRef(null)\n    const [popperElement, setPopperElement] = useState(null)\n    const [arrowElement, setArrowElement] = useState(null)\n    const { styles, attributes } = usePopper(\n      referenceElement && referenceElement.current,\n      popperElement,\n      {\n        strategy: strategy,\n        modifiers: [\n          { name: 'arrow', options: { element: arrowElement } },\n          {\n            name: 'offset',\n            options: {\n              offset: [0, 5],\n            },\n          },\n        ],\n        placement: placement,\n      }\n    )\n    useEffect(() => {\n      if (forwardedRef && referenceElement && referenceElement.current) {\n        forwardedRef.current = referenceElement.current\n      }\n    }, [referenceElement])\n    const [isOpen, setOpen] = useState(false)\n    const open = () => !isOpen && setOpen(true)\n    const close = () => setOpen(false)\n    const As = elementAs\n\n    return (\n      <>\n        <As\n          className={className}\n          ref={referenceElement}\n          onMouseOver={open}\n          onFocus={open}\n          onMouseDown={() => closeOnClick && close()}\n          onMouseLeave={close}\n          {...otherProps}\n        >\n          {children}\n        </As>\n        {isOpen && (\n          <div\n            ref={setPopperElement}\n            style={{\n              ...styles.popper,\n              borderRadius: 4,\n              padding: '0px 8px',\n              fontSize: 14,\n            }}\n            {...attributes.popper}\n            className=\"popper-tool-tip\"\n          >\n            {text}\n            <div\n              ref={setArrowElement}\n              style={styles.arrow}\n              className=\"popper-tool-tip__arrow\"\n            />\n          </div>\n        )}\n      </>\n    )\n  }\n)\nexport default ToolTip\n"
  },
  {
    "path": "src/components/footer/index.js",
    "content": "import React, { Component } from 'react'\nimport { Link } from 'gatsby'\nimport { GrLinkedin, GrTwitter, GrGithub, GrRss, GrGraphQl, GrGatsbyjs } from 'react-icons/gr'\nimport { FaGithub, FaReact } from 'react-icons/fa';\nexport default class Footer extends Component {\n  render() {\n    return (\n      <div className=\"footer\">\n        <div className=\"links\">\n          <div className=\"group\">\n            Stay In Touch\n            <a\n              href=\"https://twitter.com/subeshb1\"\n              className=\"item\"\n              target=\"_blank\"\n              rel=\"noopener noreferrer\"\n            >\n              <GrTwitter /> Twitter\n            </a>\n            <a\n              href=\"https://www.linkedin.com/in/subesh-bhandari-523438112/\"\n              className=\"item\"\n              target=\"_blank\"\n              rel=\"noopener noreferrer\"\n            >\n              <GrLinkedin />\n              LinkedIn\n            </a>\n            <a\n              href=\"https://github.com/subeshb1\"\n              className=\"item\"\n              target=\"_blank\"\n              rel=\"noopener noreferrer\"\n            >\n              <GrGithub />\n              Github\n            </a>\n          </div>\n        </div>\n        <div className=\"copyright\">\n          {new Date().getFullYear()} - Subesh Bhandari\n        </div>\n        <div className=\"madeWith\">\n          Made with\n          <a href=\"https://reactjs.org/\" className=\"item\"><FaReact /></a>\n          <a href=\"https://github.com\" className=\"item\"><FaGithub /></a>\n          <a href=\"https://graphql.org/\" className=\"item\"><GrGraphQl /></a>\n          <a href=\"https://www.gatsbyjs.com/\" className=\"item\"><GrGatsbyjs /></a>\n        </div>\n      </div>\n    )\n  }\n}\n"
  },
  {
    "path": "src/components/index.js",
    "content": "export { default as NavBar } from './Navbar'\n"
  },
  {
    "path": "src/components/mdx/Header.js",
    "content": "import React from 'react'\n\nexport default function Header({ as = 'h1', children, ...props }) {\n  return React.createElement(\n    as,\n    {\n      id: children\n        .toLowerCase()\n        .split(/\\s+/g)\n        .join('-'),\n      ...props,\n    },\n    children\n  )\n}\n"
  },
  {
    "path": "src/components/mdx/code.js",
    "content": "import React from 'react'\nimport Highlight, { defaultProps } from 'prism-react-renderer'\nimport { css } from '@emotion/core'\nimport theme from './theme/github'\nconst RE = /{([\\d,-]+)}/\nconst wrapperStyles = css`\n  margin-bottom: 1.5em;\n  overflow: auto;\n  border-radius: 4px;\n`\n\nconst preStyles = css`\n  float: left;\n  padding: 10px;\n  margin-bottom: 0em;\n  min-width: 100%;\n  overflow: initial;\n`\n\nfunction calculateLinesToHighlight(meta) {\n  if (RE.test(meta)) {\n    const lineNumbers = RE.exec(meta)[1]\n      .split(',')\n      .map(v => v.split('-').map(y => parseInt(y, 10)))\n    return index => {\n      const lineNumber = index + 1\n      const inRange = lineNumbers.some(([start, end]) =>\n        end ? lineNumber >= start && lineNumber <= end : lineNumber === start\n      )\n      return inRange\n    }\n  } else {\n    return () => false\n  }\n}\nexport const Code = ({ codeString, language, metastring, ...props }) => {\n  const shouldHighlightLine = calculateLinesToHighlight(metastring)\n  return (\n    <Highlight\n      {...defaultProps}\n      code={codeString}\n      language={language}\n      theme={theme}\n    >\n      {({ className, style, tokens, getLineProps, getTokenProps }) => (\n        <div css={wrapperStyles}>\n          <pre className={className} style={style} css={preStyles}>\n            {tokens.map((line, i) => (\n              <div\n                css={css`\n                  line-height: 1.5rem;\n                  letter-spacing: 0.6px;\n                `}\n                key={i}\n                {...getLineProps({\n                  line,\n                  key: i,\n                  className: shouldHighlightLine(i) ? 'highlight-line' : '',\n                })}\n              >\n                <span\n                  css={css`\n                    display: inline-block;\n                    width: 2em;\n                    user-select: none;\n                    font-size: 16px;\n                    opacity: 0.5;\n                    &:after {\n                      content: '.';\n                    }\n                  `}\n                >\n                  {i + 1}\n                </span>\n                {line.map((token, key) => (\n                  <span\n                    css={css`\n                      font-family: consolas, 'Inconsolata', monospace;\n                      font-size: 16px;\n                    `}\n                    key={key}\n                    {...getTokenProps({ token, key })}\n                  />\n                ))}\n              </div>\n            ))}\n          </pre>\n        </div>\n      )}\n    </Highlight>\n  )\n}\n"
  },
  {
    "path": "src/components/mdx/layout.js",
    "content": "import React from 'react'\nimport { MDXProvider } from '@mdx-js/tag'\nimport { Code } from './code'\nimport { preToCodeBlock } from 'mdx-utils'\nimport Layout from '../Layout'\n\n// components is its own object outside of render so that the references to\n// components are stable\nconst components = {\n  pre: preProps => {\n    const props = preToCodeBlock(preProps)\n    // if there's a codeString and some props, we passed the test\n    if (props) {\n      return <Code {...props} />\n    } else {\n      // it's possible to have a pre without a code in it\n      return <pre {...preProps} />\n    }\n  },\n}\nconst MdxLayout = ({ children }) => (\n  <Layout>\n    Jsdasdas\n    <MDXProvider components={components}>{children}</MDXProvider>\n  </Layout>\n)\n\nexport default MdxLayout\n"
  },
  {
    "path": "src/components/mdx/theme/github.css",
    "content": "/**\n * Github-like theme for Prism.js\n * @author Luke Askew http://github.com/lukeaskew\n */\n code,\n code[class*='language-'],\n pre[class*='language-'] {\n   color: #333;\n   text-align: left;\n   white-space: pre;\n   word-spacing: normal;\n   tab-size: 4;\n   hyphens: none;\n   font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;\n   line-height: 1.4;\n   direction: ltr;\n   cursor: text;\n }\n \n pre[class*='language-'] {\n   overflow: auto;\n   margin: 1em 0;\n   padding: 1.2em;\n   border-radius: 3px;\n   font-size: 85%;\n }\n \n p code,\n li code,\n table code {\n   margin: 0;\n   border-radius: 3px;\n   padding: 0.2em 0;\n   font-size: 85%;\n }\n p code:before, p code:after,\n li code:before,\n li code:after,\n table code:before,\n table code:after {\n   letter-spacing: -0.2em;\n   content: '\\00a0';\n }\n \n code,\n :not(pre) > code[class*='language-'],\n pre[class*='language-'] {\n   background: #f7f7f7;\n }\n \n :not(pre) > code[class*='language-'] {\n   padding: 0.1em;\n   border-radius: 0.3em;\n }\n \n .token.comment, .token.prolog, .token.doctype, .token.cdata {\n   color: #969896;\n }\n .token.punctuation, .token.string, .token.atrule, .token.attr-value {\n   color: #183691;\n }\n .token.property, .token.tag {\n   color: #63a35c;\n }\n .token.boolean, .token.number {\n   color: #0086b3;\n }\n .token.selector, .token.attr-name, .token.attr-value .punctuation:first-child, .token.keyword, .token.regex, .token.important {\n   color: #795da3;\n }\n .token.operator, .token.entity, .token.url, .language-css .token.string {\n   color: #a71d5d;\n }\n .token.entity {\n   cursor: help;\n }\n \n .namespace {\n   opacity: 0.7;\n }"
  },
  {
    "path": "src/components/mdx/theme/github.js",
    "content": "// @flow\n// Original: https://raw.githubusercontent.com/PrismJS/prism-themes/master/themes/prism-ghcolors.css\n\n/*:: import type { PrismTheme } from '../src/types' */\n\nvar theme /*: PrismTheme */ = {\n  plain: {\n    color: '#393A34',\n    backgroundColor: '#f6f8fa',\n  },\n  styles: [\n    {\n      types: ['comment', 'prolog', 'doctype', 'cdata'],\n      style: {\n        color: '#999988',\n        fontStyle: 'italic',\n      },\n    },\n    {\n      types: ['namespace'],\n      style: {\n        opacity: 0.7,\n      },\n    },\n    {\n      types: ['string', 'attr-value'],\n      style: {\n        color: '#e3116c',\n      },\n    },\n    {\n      types: ['punctuation', 'operator'],\n      style: {\n        color: '#393A34',\n      },\n    },\n    {\n      types: [\n        'entity',\n        'url',\n        'symbol',\n        'number',\n        'boolean',\n        'variable',\n        'constant',\n        'property',\n        'regex',\n        'inserted',\n      ],\n      style: {\n        color: '#36acaa',\n      },\n    },\n    {\n      types: ['atrule', 'keyword', 'attr-name', 'selector'],\n      style: {\n        color: '#00a4db',\n      },\n    },\n    {\n      types: ['function', 'deleted', 'tag'],\n      style: {\n        color: '#d73a49',\n      },\n    },\n    {\n      types: ['function-variable'],\n      style: {\n        color: '#6f42c1',\n      },\n    },\n    {\n      types: ['tag', 'selector', 'keyword'],\n      style: {\n        color: '#00009f',\n      },\n    },\n  ],\n}\n\nmodule.exports = theme\n"
  },
  {
    "path": "src/components/navbar/ThemePicker.jsx",
    "content": "import React, { useState, useEffect } from 'react'\nimport Popover from '../Popover'\nimport Tooltip from '../ToolTip'\nimport { GiPaintBucket } from 'react-icons/gi'\nimport { ChromePicker } from 'react-color'\nimport { useLocalStorage } from 'react-use'\nimport { If } from '../utils'\n\nconst codeTheme = {\n  // Any CSS selector will work!\n  'code-dark-plus': 'Dark+ (default dark)',\n  'code-light-plus': 'Light+ (default light)',\n  'code-tomorrow-night-blue': 'Tomorrow Night Blue',\n  'code-red': 'Red',\n  'code-abyss': 'Abyss',\n  'code-dark-visual-studio': 'Dark (Visual Studio)',\n  'code-light-visual-studio': 'Light (Visual Studio)',\n  'code-high-contrast': 'High Contrast',\n  'code-kimbie-dark': 'Kimbie Dark',\n  'code-monokai-dimmed': 'Monokai Dimmed',\n  'code-monokai': 'Monokai',\n  'code-quiet-light': 'Quiet Light',\n  'code-solarized-dark': 'Solarized Dark',\n  'code-solarized-light': 'Solarized Light',\n  'code-synth-wave-84': `SynthWave '84`,\n}\nconst excludeVariables = ['--theme-picker-box-shadow']\n\nconst themes = [\n  {\n    name: 'Light',\n    value: 'theme-light code-light-plus',\n    color: '#ffffff',\n  },\n  {\n    name: 'Dark',\n    value: 'theme-dark code-dark-plus',\n    color: '#2a2c35',\n  },\n]\n\nconst variableMap = {\n  '--theme-primary-bg': 'Primary BG',\n  '--theme-primary-color': 'Primary Color',\n  '--theme-secondary-color': 'Secondary Color',\n  '--theme-secondary-bg': 'Secondary BG',\n  '--theme-primary-hover': 'Primary Hover',\n}\n\nconst primaryColors = [\n  {\n    name: 'White',\n    variables: {\n      '--theme-primary-bg': '#ffffff',\n      '--theme-primary-color': '#000000',\n      '--theme-secondary-color': '#000000',\n      '--theme-secondary-bg': '#f4f4f4',\n      '--theme-primary-hover': '#e0e0e096',\n      '--theme-picker-box-shadow':\n        'rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.31) 0px 0px 1px',\n    },\n  },\n  {\n    name: 'Black',\n    variables: {\n      '--theme-primary-bg': '#2a2c35',\n      '--theme-primary-color': '#000000',\n      '--theme-secondary-color': '#ffffff',\n      '--theme-secondary-bg': '#f4f4f4',\n      '--theme-primary-hover': '#424653',\n      '--theme-picker-box-shadow':\n        'rgb(0, 0, 0) 0px 4px 8px -2px,rgba(0, 0, 0, 0.31) 0px 0px 1px',\n    },\n  },\n  {\n    name: 'Blue',\n    variables: {\n      '--theme-primary-bg': '#1d5baf',\n      '--theme-primary-color': '#000000',\n      '--theme-secondary-color': '#ffffff',\n      '--theme-secondary-bg': '#000000',\n      '--theme-primary-hover': '#3068b7',\n      '--theme-picker-box-shadow':\n        'rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.31) 0px 0px 1px',\n    },\n  },\n  {\n    name: 'Red',\n    variables: {\n      '--theme-primary-bg': '#af1d4c',\n      '--theme-primary-color': '#000000',\n      '--theme-secondary-color': '#ffffff',\n      '--theme-secondary-bg': '#f4f4f4',\n      '--theme-primary-hover': '#e4316a96',\n      '--theme-picker-box-shadow':\n        'rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.31) 0px 0px 1px',\n    },\n  },\n  {\n    name: 'DarkBlue',\n    variables: {\n      '--theme-primary-bg': '#083575',\n      '--theme-primary-color': '#000000',\n      '--theme-secondary-color': '#ffffff',\n      '--theme-secondary-bg': '#f4f4f4',\n      '--theme-primary-hover': '#0b479c',\n      '--theme-picker-box-shadow':\n        'rgb(0, 0, 0) 0px 4px 8px -2px,rgba(0, 0, 0, 0.31) 0px 0px 1px',\n    },\n  },\n  {\n    name: 'DarkRed',\n    variables: {\n      '--theme-primary-bg': '#7a1522',\n      '--theme-primary-color': '#000000',\n      '--theme-secondary-color': '#ffffff',\n      '--theme-secondary-bg': '#f4f4f4',\n      '--theme-primary-hover': '#a01a2c',\n      '--theme-picker-box-shadow':\n        'rgb(0, 0, 0) 0px 4px 8px -2px,rgba(0, 0, 0, 0.31) 0px 0px 1px',\n    },\n  },\n]\n\nconst ThemeButton = ({ name, onClick, background }) => (\n  <button className=\"theme-picker__item\" onClick={onClick}>\n    <div className=\"theme-picker__object\" style={{ background }}></div>\n    {name}\n  </button>\n)\nfunction ThemeChanger({\n  setPrimaryColor,\n  primaryColor,\n  setThemeMode,\n  themeMode,\n  mobile = false,\n}) {\n  const [show, setShow] = useState(false)\n  return (\n    <div className=\"theme-picker\">\n      <div className=\"theme-picker__theme\">\n        <div className=\"theme-picker__header\">Primary Colors</div>\n        <div className=\"theme-picker__content\">\n          {primaryColors.map((x, i) => {\n            return (\n              <ThemeButton\n                key={i}\n                onClick={() => setPrimaryColor(x.variables)}\n                background={x.variables['--theme-primary-bg']}\n                name={x.name}\n              />\n            )\n          })}\n        </div>\n        <div className=\"theme-picker__header\">Theme</div>\n        <div className=\"theme-picker__content\">\n          {themes.map((x, i) => {\n            return (\n              <ThemeButton\n                key={i}\n                onClick={() => setThemeMode(x.value)}\n                background={x.color}\n                name={x.name}\n              />\n            )\n          })}\n        </div>\n\n        <div className=\"theme-picker__input-group\">\n          <div className=\"theme-picker__header\">Code Snippet Theme</div>\n          <select\n            value={themeMode.split(' ')[1]}\n            onChange={({ target }) =>\n              setThemeMode(`${themeMode.split(' ')[0]} ${target.value}`)\n            }\n          >\n            {Object.entries(codeTheme).map(([key, value], i) => (\n              <option key={i} value={key}>\n                {value}\n              </option>\n            ))}\n          </select>\n        </div>\n        <If condition={!mobile}>\n          <button className=\"button\" onClick={() => setShow(!show)}>\n            {!show ? 'Show more' : 'Hide'}\n          </button>\n          {show &&\n            Object.entries(primaryColor).map(([key, value], i) => {\n              return (\n                !excludeVariables.includes(key) && (\n                  <div className=\"theme-picker__input-group\" key={i}>\n                    <div className=\"theme-picker__header\">\n                      {variableMap[key]}\n                    </div>\n                    <Popover\n                      key={i}\n                      elementAs=\"input\"\n                      value={value}\n                      readOnly\n                      placement=\"bottom\"\n                    >\n                      <ChromePicker\n                        color={value}\n                        onChange={color => {\n                          setPrimaryColor({\n                            ...primaryColor,\n                            [key]: color.hex,\n                          })\n                        }}\n                      />\n                    </Popover>\n                  </div>\n                )\n              )\n            })}\n        </If>\n      </div>\n    </div>\n  )\n}\nexport default function ThemePicker({ offset = [0, 10], mobile }) {\n  const [primaryColor, setPrimaryColor, remove] = useLocalStorage(\n    'color-theme',\n    {\n      '--theme-primary-bg': '#2a2c35',\n      '--theme-primary-color': '#000000',\n      '--theme-secondary-color': '#ffffff',\n      '--theme-secondary-bg': '#f4f4f4',\n      '--theme-primary-hover': '#424653',\n      '--theme-picker-box-shadow':\n        'rgb(0, 0, 0) 0px 4px 8px -2px,rgba(0, 0, 0, 0.31) 0px 0px 1px',\n    }\n  )\n\n  const [themeMode, setThemeMode, removeTheme] = useLocalStorage(\n    'theme',\n    'theme-light code-light-plus'\n  )\n\n  useEffect(() => {\n    Object.entries(primaryColor).map(([key, value]) => {\n      document.documentElement.style.setProperty(key, value)\n    })\n  }, [primaryColor])\n\n  useEffect(() => {\n    document.body.className = themeMode\n  }, [themeMode])\n\n  return (\n    <Popover\n      offset={offset}\n      elementAs={React.forwardRef((props, ref) => (\n        <Tooltip\n          elementAs=\"button\"\n          aria-label=\"Open Theme picker\"\n          closeOnClick\n          ref={ref}\n          {...props}\n          placement=\"left\"\n          text={'Change website theme'}\n          className=\"lg-navbar__item lg-navbar__item--right lg-navbar__item--circular\"\n        >\n          <GiPaintBucket />\n        </Tooltip>\n      ))}\n    >\n      <ThemeChanger\n        primaryColor={primaryColor}\n        setPrimaryColor={setPrimaryColor}\n        themeMode={themeMode}\n        mobile={mobile}\n        setThemeMode={setThemeMode}\n      />\n    </Popover>\n  )\n}\n"
  },
  {
    "path": "src/components/navbar/common.jsx",
    "content": "import React from 'react'\nimport { FaChevronDown, FaCubes } from 'react-icons/fa'\nimport { MdApps } from 'react-icons/md'\nexport const NavDropDownLink = React.forwardRef(\n  ({ onChevronClick = () => {}, to, linkName, className, ...props }, ref) => {\n    return (\n      <button\n        className={`lg-navbar__item ${className}`}\n        {...props}\n        ref={ref}\n        tabIndex={0}\n      >\n        {linkName}\n        <FaChevronDown\n          size={'0.8em'}\n          onClick={onChevronClick}\n          className=\"lg-navbar__svg\"\n        />\n      </button>\n    )\n  }\n)\n\nexport const navDropDownFactory = (to, linkName) =>\n  React.forwardRef((props, ref) => {\n    return <NavDropDownLink to={to} linkName={linkName} {...props} ref={ref} />\n  })\n\nexport const MobileNavDropDownLink = React.forwardRef(\n  (\n    {\n      onChevronClick = () => {},\n      to,\n      linkName,\n      className,\n      iconsAs: IconAs = MdApps,\n      ...props\n    },\n    ref\n  ) => {\n    return (\n      <button\n        className={`lg-navbar__item ${className}`}\n        {...props}\n        ref={ref}\n        tabIndex={0}\n      >\n        {linkName}\n        <IconAs onClick={onChevronClick} className=\"lg-navbar__svg\" />\n      </button>\n    )\n  }\n)\n\nexport const mobileNavDropDownFactory = (to, linkName, iconsAs) =>\n  React.forwardRef((props, ref) => {\n    return (\n      <MobileNavDropDownLink\n        to={to}\n        linkName={linkName}\n        {...props}\n        ref={ref}\n        iconsAs={iconsAs}\n      />\n    )\n  })\n"
  },
  {
    "path": "src/components/navbar/index.jsx",
    "content": "import React from 'react'\nimport { Link, useStaticQuery, graphql } from 'gatsby'\nimport Image from 'gatsby-image'\nimport Popover from '../Popover'\nimport { GrLinkedin, GrTwitter, GrGithub } from 'react-icons/gr'\n\nimport { navDropDownFactory } from './common'\nimport ThemePicker from './ThemePicker'\nconst NavBar = React.memo(props => {\n  const {\n    navLogo,\n    snakeGrid,\n    toc,\n    searching,\n    sorting,\n    api,\n    imageToAscii,\n    nepaliDate,\n    snakeGame,\n  } = useStaticQuery(\n    graphql`\n      query images {\n        navLogo: file(absolutePath: { regex: \"/logo.png/\" }) {\n          childImageSharp {\n            fixed(width: 50, height: 50) {\n              ...GatsbyImageSharpFixed\n            }\n          }\n        }\n      }\n    `\n  )\n  return (\n    <>\n      <nav className=\"lg-navbar\">\n        <a\n          href=\"https://github.com/subeshb1/developer-community-stats\"\n          target=\"_blank\"\n          id=\"colorless-link\"\n          rel=\"noopener noreferrer\"\n          style={{ fontSize: '1.5rem' }}\n        >\n          <GrGithub />\n        </a>\n        <Link to=\"/\" className=\"lg-navbar__item lg-navbar__header\">\n          Developer Community Stats\n        </Link>\n        <ThemePicker />\n      </nav>\n    </>\n  )\n})\n\nfunction DropDownDisplayItem({ image, title, info, as = 'div', ...props }) {\n  const As = as\n  return (\n    <As\n      className=\"lg-navbar__drop-down__item lg-navbar__drop-down__display-item\"\n      {...props}\n    >\n      <div className=\"lg-navbar__drop-down__image\">\n        <Image fixed={image} alt=\"Website logo\" className={'lg-navbar-img'} />\n      </div>\n      <div className=\"lg-navbar__drop-down__text\">\n        {title}\n        <div className=\"lg-navbar__drop-down__dim\">{info}</div>\n      </div>\n    </As>\n  )\n}\nexport default NavBar\n"
  },
  {
    "path": "src/components/seo.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport Helmet from 'react-helmet'\nimport { StaticQuery, graphql } from 'gatsby'\nconst root = 'https://www.subeshbhandari.com'\nfunction SEO({ description, lang, meta, keywords, title, url }) {\n  return (\n    <StaticQuery\n      query={detailsQuery}\n      render={data => {\n        const metaDescription =\n          description || data.site.siteMetadata.description\n        return (\n          <Helmet\n            htmlAttributes={{\n              lang,\n            }}\n            title={title}\n            titleTemplate={`%s | ${data.site.siteMetadata.title}`}\n            meta={[\n              {\n                name: `description`,\n                content: metaDescription,\n              },\n              {\n                property: `og:title`,\n                content: title,\n              },\n              {\n                property: `og:description`,\n                content: metaDescription,\n              },\n              {\n                property: `og:type`,\n                content: `website`,\n              },\n              {\n                name: `twitter:card`,\n                content: `summary`,\n              },\n              {\n                name: `twitter:creator`,\n                content: data.site.siteMetadata.author,\n              },\n              {\n                name: `twitter:title`,\n                content: title,\n              },\n              {\n                name: `twitter:description`,\n                content: metaDescription,\n              },\n            ]\n              .concat(\n                keywords.length > 0\n                  ? {\n                      name: `keywords`,\n                      content: keywords.join(`, `),\n                    }\n                  : []\n              )\n              .concat(meta)}\n          >\n            <link rel=\"canonical\" href={root + url} />\n          </Helmet>\n        )\n      }}\n    />\n  )\n}\n\nSEO.defaultProps = {\n  lang: `en`,\n  meta: [],\n  keywords: [],\n}\n\nSEO.propTypes = {\n  description: PropTypes.string,\n  lang: PropTypes.string,\n  meta: PropTypes.array,\n  keywords: PropTypes.arrayOf(PropTypes.string),\n  title: PropTypes.string.isRequired,\n}\n\nexport default SEO\n\nconst detailsQuery = graphql`\n  query DefaultSEOQuery {\n    site {\n      siteMetadata {\n        title\n        description\n        author\n      }\n    }\n  }\n`\n"
  },
  {
    "path": "src/components/utils/index.js",
    "content": "import React from 'react'\n\nexport const If = ({ condition, children, fallback = null }) => {\n  return condition ? children : fallback\n}\n"
  },
  {
    "path": "src/css/404.scss",
    "content": ".not-found {\n  display: flex;\n  // flex-wrap: wrap;\n  font-family: 'Open Sans', 'sans-serif';\n  position: relative;\n  min-height: 90vh;\n  justify-content: flex-end;\n  align-items: flex-start;\n  img {\n    max-height: 90vh;\n    left: 0;\n    position: absolute;\n  }\n  .not-found__message {\n    z-index: 1;\n    h1 {\n      font-size: 2rem;\n      font-family: 'Open Sans', 'sans-serif';\n      margin: 10px 0;\n    }\n    background: var(--theme-background);\n    margin: 0 10px;\n    padding: 10px;\n    border-radius: 10px;\n    max-width: 400px;\n    margin-top: 20vh;\n    margin-right: 5vw;\n    .not-found__button {\n      display: block;\n      margin-top: 10px;\n      background: var(--theme-primary-bg);\n      color: var(--theme-secondary-color);\n      border: 2px solid var(--theme-secondary-color);\n      border-radius: 4px;\n      padding: 8px 1rem;\n      width: fit-content;\n    }\n  }\n}\n\n@media (max-width: 700px) {\n  .not-found {\n    .not-found__message {\n      max-width: 100%;\n      margin-top:0\n    }\n    justify-content: flex-start;\n    img {\n      top: 40%;\n    }\n  }\n}\n"
  },
  {
    "path": "src/css/_markdown.scss",
    "content": ".project-main-container {\n  background: var(--theme-background);\n  color: var(--theme-color);\n}\n.blog-post-content {\n  background: var(--theme-background);\n  color: var(--theme-color);\n  overflow: auto;\n  width: 100%;\n  .anchor > svg {\n    opacity: 0;\n  }\n\n  h1 {\n    text-transform: capitalize;\n  }\n  p > img {\n    margin: 1rem 0;\n  }\n\n  h1,\n  h2,\n  h3,\n  h4,\n  h5,\n  h6 {\n    position: relative;\n    letter-spacing: 0.01em;\n  }\n\n  h1:hover,\n  h2:hover,\n  h3:hover,\n  h4:hover,\n  h5:hover,\n  h6:hover {\n    .anchor > svg {\n      opacity: 1;\n    }\n  }\n\n  strong {\n    font-family: Lora;\n  }\n  p,\n  li {\n    letter-spacing: 0.01em;\n    word-spacing: 0.05em;\n    line-height: 1.7;\n  }\n\n  blockquote {\n    border-left: 4px solid black;\n    margin-left: -1.125rem;\n    padding: 1rem;\n    position: relative;\n    font-style: italic;\n    font-size: 1.1rem;\n    margin-right: -1.125em;\n    padding-right: 0;\n    margin-right: -1rem;\n    p {\n      font-size: 0.8em;\n    }\n  }\n\n  blockquote blockquote {\n    margin-left: 1rem;\n  }\n\n  figcaption {\n    text-align: center;\n    color: #757575;\n    font-family: sans-serif;\n    font-size: 0.8rem;\n    margin-top: 0.8rem;\n  }\n\n  strong {\n    font-size: 1.02rem;\n  }\n  img.badge {\n    margin: 0;\n  }\n\n  @media (max-width: 900px) {\n    .anchor {\n      float: initial;\n      padding-right: 0;\n      margin-left: 0;\n    }\n  }\n\n  ul ul {\n    list-style-type: disc;\n  }\n  .estimated-reading-time {\n    opacity: 0.7;\n  }\n  .blog-date {\n    margin-right: 10px;\n  }\n\n  .next-blog-container {\n    display: flex;\n    justify-content: space-between;\n    margin-bottom: 20px;\n    background: var(--theme-background);\n  }\n\n  .next-blog-container__item {\n    font-family: 'Open Sans';\n    padding: 10px;\n    font-size: 0.9rem;\n    a {\n      color: var(--theme-color);\n    }\n    font-weight: bold;\n    svg {\n      margin-left: -25px;\n      margin-right: 10px;\n    }\n    &:hover {\n      opacity: 0.7;\n    }\n  }\n  .next-blog-container__item--right {\n    svg {\n      margin-right: -25px;\n      margin-left: 10px;\n    }\n    text-align: right;\n  }\n  .next-blog-header {\n    font-size: 0.9em;\n    margin: 4px;\n    color: var(--theme-dim-color);\n    display: block;\n  }\n}\n\n.theme-light {\n  a {\n    text-decoration: none;\n    color: #2b69bb;\n  }\n}\n\n.theme-dark,\n.theme-dark-blue,\n.theme-dark-red {\n  a {\n    color: white;\n    text-decoration: none;\n  }\n  p,\n  li {\n    color: white;\n    font-family: 'Lato';\n  }\n\n  .anchor svg path {\n    fill: white;\n  }\n\n  blockquote {\n    border-left: 4px solid white;\n  }\n\n  .blog-post-content figcaption {\n    color: #cecece;\n  }\n}\n\n@media (max-width: 700px) {\n  .blog-post-content {\n    figure {\n      margin: 1rem -0.8rem;\n    }\n  }\n}\n"
  },
  {
    "path": "src/css/components/_code-snippet.scss",
    "content": "code,\npre {\n  font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace;\n}\n\n.code-light-plus,\n.code-light-visual,\n.code-quiet-light,\n.code-light-visual-studio,\n.code-solarized-light {\n  pre.grvsc-container {\n    background: #f9f9f9;\n    &::before {\n      background: black;\n      color: white;\n    }\n    button {\n      color: black;\n    }\n  }\n  .grvsc-container .grvsc-line-highlighted {\n    background-color: #59cdf92e;\n    box-shadow: inset 4px 0 0 0 #146b9e;\n  }\n}\n\npre.grvsc-container {\n  border-radius: 0.3em;\n  margin: 0.5em 0;\n  border-radius: 0.3em;\n  position: relative;\n  overflow: auto;\n  padding: 1em;\n  background: #f8f8f8;\n  padding: 0;\n  padding-top: 2rem;\n  padding-bottom: 0.8rem;\n  margin-bottom: 2rem;\n  &::before {\n    color: #232129;\n    font-size: 0.75rem;\n    font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',\n      'Courier New', monospace;\n    letter-spacing: 0.075em;\n    line-height: 1;\n    position: absolute;\n    left: 1.5rem;\n    text-align: right;\n    top: 0px;\n    border-radius: 0px 0px 4px 4px;\n    padding: 0.25rem 0.5rem;\n    content: attr(data-language);\n    position: absolute;\n    background: white;\n    color: black;\n  }\n  &:hover {\n    button {\n      opacity: 1;\n    }\n  }\n  button {\n    opacity: 0;\n    position: absolute;\n    font-family: 'Open Sans';\n    top: 4px;\n    right: 4px;\n    background: transparent;\n    color: white;\n    border: none;\n    cursor: pointer;\n    &::before {\n      content: 'Copy';\n    }\n    &:focus::before {\n      content: 'Copied!';\n    }\n  }\n\n  .grvsc-code {\n    max-height: 80vh;\n    overflow: auto;\n    width: 100%;\n    .grvsc-line {\n      min-width: 100%;\n    }\n  }\n}\n\n@media (max-width: 900px) {\n  .grvsc-container {\n    margin-left: -1.125em;\n    margin-right: -1.125em;\n    box-shadow: unset;\n  }\n}\n\n:not(pre) > code {\n  padding: 1px 0.5em;\n  font-family: Input, 'SF Mono', Menlo, Monaco, Courier, monospace;\n  font-size: 13px;\n  font-weight: 400;\n  -webkit-font-smoothing: subpixel-antialiased;\n  min-width: 1.2em;\n  line-height: 1.8em;\n  display: inline-block;\n  background-color: rgb(17, 17, 17);\n  color: white;\n  background: var(--theme-background);\n  color: var(--theme-color);\n  border-width: 1px;\n  border-style: solid;\n  border-color: rgba(255, 255, 255, 0.1);\n  border-color: var(--theme-hover);\n  border-image: initial;\n  border-radius: 4px;\n  padding: 2px 8px 0px;\n  margin: -5px 2px;\n}\n\n.grvsc-container .grvsc-line-highlighted {\n  background-color: rgb(19, 43, 64);\n  box-shadow: inset 4px 0 0 0 rgba(245, 243, 255, 0.5);\n}\n\n@media (max-width: 700px) {\n  pre.grvsc-container {\n    margin-right: -0.8rem;\n    margin-left: -0.8rem;\n  }\n}\n"
  },
  {
    "path": "src/css/components/_developer-card.scss",
    "content": "@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');\n.readme-profile {\n  display: flex;\n  justify-content: space-around;\n  flex-wrap: wrap-reverse;\n  align-items: flex-end;\n  .readme-mid-container {\n    flex: 6;\n    flex-grow: 6;\n    max-width: 900px;\n    width: 100%;\n    margin: 0 auto;\n    margin-top: 10px;\n    border-radius: 8px;\n    padding: 0px 56px;\n    min-width: 300px;\n    img {\n      margin-right: 10px;\n    }\n  }\n\n  .blog-main-container {\n    flex: 10;\n  }\n  .developer-card {\n    flex-direction: column;\n    min-width: 300px;\n    .developer-card-user-stats {\n      padding-bottom: 10px;\n    }\n    flex: 1;\n  }\n}\na.developer-card-link,\n#colorless-link {\n  color: unset;\n  cursor: pointer;\n  svg {\n    color: var(--theme-secondary-color);\n  }\n}\n.developer-card-container {\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: space-around;\n}\n.developer-card {\n  display: flex;\n  font-family: 'Open Sans', sans-serif;\n  flex-wrap: wrap;\n  border-radius: 10px;\n  overflow: hidden;\n  box-shadow: 0 0 8px 1px var(--theme-navbar-box-shadow);\n  min-width: 450px;\n  .developer-card-user-info {\n    padding: 10px;\n    position: relative;\n    flex: 1;\n    flex-direction: column;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    background: var(--theme-primary-bg);\n    color: var(--theme-secondary-color);\n    span {\n      position: absolute;\n      top: 12px;\n      right: 10px;\n    }\n    .developer-card-username {\n      background: var(--theme-primary-hover);\n      padding: 4px 0.8em;\n      font-size: 0.8rem;\n      line-height: 1;\n      border-radius: 20px;\n      margin-bottom: 10px;\n      display: flex;\n      white-space: pre;\n      align-items: center;\n      .highlight {\n        background-color: yellow;\n        color: black;\n      }\n    }\n    .developer-card-avatar {\n      width: 150px;\n      margin-bottom: 10px;\n      height: 150px;\n      border-radius: 100%;\n      overflow: hidden;\n      background: var(--theme-primary-bg);\n    }\n    .developer-card-links {\n      display: flex;\n      a {\n        color: inherit;\n        margin: 0 10px;\n      }\n    }\n  }\n  margin: 10px;\n  .developer-card-user-stats {\n    flex: 2;\n    position: relative;\n    .developer-card-name {\n      font-family: 'Bebas Neue', cursive;\n      padding: 10px 20px;\n      font-size: 1.2rem;\n      // font-weight: bold;\n      display: flex;\n      justify-content: space-between;\n    }\n    &:hover,\n    &:active {\n      .developer-card-hover {\n        opacity: 0.8;\n      }\n    }\n    .developer-card-hover {\n      display: flex;\n      position: absolute;\n      width: 100%;\n      height: 100%;\n      justify-content: center;\n      align-items: center;\n      z-index: 10;\n      background: var(--theme-primary-bg);\n      opacity: 0;\n      transition: opacity 0.5s ease;\n      .developer-card-link {\n        color: var(--theme-secondary-color);\n        display: flex;\n        padding: 4px 1em;\n        border: 2px solid var(--theme-secondary-color);\n        border-radius: 4px;\n      }\n    }\n    .developer-card-detail {\n      padding: 1px 20px;\n      font-size: 0.8rem;\n\n      display: flex;\n      justify-content: space-between;\n      .developer-card-title {\n        opacity: 0.7;\n      }\n      .developer-card-value {\n        font-weight: bolder;\n      }\n    }\n  }\n}\n\n@media (max-width: 480px) {\n  .developer-card-container {\n    flex-direction: column;\n    .developer-card {\n      flex-direction: column;\n      min-width: unset;\n      .developer-card-user-stats {\n        padding-bottom: 10px;\n      }\n    }\n  }\n}\n\n@media (max-width: 700px) {\n  .readme-profile {\n    .readme-mid-container {\n      padding: 0px 1.125rem;\n    }\n  }\n}\n"
  },
  {
    "path": "src/css/components/_footer.scss",
    "content": "/* FOOTER */\n.footer {\n  background: var(--theme-primary-bg);\n  color: var(--theme-secondary-color);\n  position: relative;\n  padding: 80px 0 40px;\n  font-family: 'Open Sans', sans-serif;\n  text-transform: capitalize;\n  border-top: 1px solid var(--theme-primary-hover);\n  margin-top: 50px;\n}\n.footer .links {\n  display: flex;\n  flex-wrap: wrap;\n  padding: 20px;\n  justify-content: space-around;\n  text-transform: capitalize;\n}\n.footer .group {\n  margin: 20px;\n  display: flex;\n  flex-direction: column;\n  font-size: 1em;\n  font-weight: bolder;\n  a {\n    color: var(--theme-secondary-color);\n    svg {\n      margin-right: 10px;\n      path {\n        stroke: var(--theme-secondary-color);\n      }\n    }\n  }\n}\n\n.footer .group .item {\n  &:active,\n  &:hover {\n    background: #3068b7;\n    background: var(--theme-primary-hover);\n  }\n  text-decoration: none;\n  padding: 4px 1rem;\n  margin-left: -1rem;\n  border-radius: 4px;\n  font-weight: normal;\n  font-size: 0.8em;\n  color: var(--theme-secondary-color);\n}\n\n.footer .copyright {\n  position: absolute;\n  bottom: 20px;\n  left: 20px;\n  display: flex;\n}\n\n.footer .copyright::before {\n  content: '\\00A9';\n  margin-right: 10px;\n}\n.copyright {\n  font-size: 0.8rem;\n}\n\n.footer::after {\n  content: '';\n  margin: 20px;\n}\n\n.footer .madeWith {\n  position: absolute;\n  bottom: 20px;\n  right: 20px;\n  display: flex;\n}\n\n.madeWith {\n  font-size: 1rem;\n}\n\n.madeWith .item {\n  margin-left: 10px;\n  margin-right: 10px;\n  color: var(--theme-secondary-color);\n  font-size: 1.2rem;\n}\n\n@media (max-width: 700px) {\n  .footer {\n    padding: 0 20px;\n    display: flex;\n    flex-wrap: wrap;\n    flex-direction: column;\n  }\n  .footer .links {\n    flex-direction: column;\n    justify-content: center;\n    align-items: center;\n    order: 1;\n  }\n\n  .footer .copyright {\n    position: relative;\n    order: 3;\n    justify-content: center;\n    left: 0;\n  }\n\n  .footer .madeWith {\n    position: relative;\n    right: 0px;\n    order: 2;\n    justify-content: center;\n  }\n}\n"
  },
  {
    "path": "src/css/components/_navbar.scss",
    "content": ".st-navbar,\n.lg-navbar {\n  font-family: 'Open Sans', sans-serif;\n  display: flex;\n  background: #1d5baf;\n  padding: 10px 20px;\n  transition: 0.3s background;\n  align-items: center;\n  box-shadow: 1px 3px 5px 0px #484848ab;\n  position: fixed;\n  z-index: 900;\n  width: 100vw;\n  background: var(--theme-primary-bg);\n  box-shadow: 1px 3px 5px 0px var(--theme-navbar-box-shadow);\n  > svg {\n    font-size: 2rem;\n    color: var(--theme-secondary-color);\n  }\n  button.lg-navbar__item {\n    padding: 0;\n    transform: translateY(3px);\n  }\n  .lg-navbar__item {\n    font-size: 14px;\n    user-select: none;\n    padding: 2px 0.5em;\n    border: none;\n    white-space: nowrap;\n    background: none;\n    outline: none;\n    margin: 0 8px;\n    border-radius: 4px;\n    display: inline-flex;\n    align-items: center;\n    color: white;\n    color: var(--theme-secondary-color);\n    cursor: pointer;\n\n    &:hover,\n    &:focus {\n      background: #3068b7;\n      background: var(--theme-primary-hover);\n    }\n\n    .lg-navbar__svg {\n      margin-left: 0.5em;\n    }\n    a {\n      color: white;\n      color: var(--theme-secondary-color);\n    }\n  }\n  .lg-navbar__header {\n    font-size: 18px;\n  }\n\n  .lg-navbar-img {\n    .picture {\n      width: 35px;\n    }\n    width: 35px;\n    max-height: 35px;\n    max-width: 35px;\n    height: auto;\n    margin: 0;\n  }\n\n  .lg-navbar__drop-down {\n    display: flex;\n    flex-direction: column;\n    background-color: var(--theme-primary-bg);\n    color: var(--theme-secondary-color);\n    padding: 10px;\n    max-width: 800px;\n    border-radius: 4px;\n    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,\n      rgba(9, 30, 66, 0.31) 0px 0px 1px;\n    box-shadow: var(--theme-picker-box-shadow);\n  }\n  .link-item {\n    text-align: right;\n    align-self: flex-end;\n    font-size: 0.8em;\n    color: inherit;\n  }\n  .lg-navbar__drop-down__item {\n    display: flex;\n    cursor: pointer;\n    padding: 10px 1.2rem;\n    border-radius: 4px;\n    &:hover {\n      background: #3068b7;\n      background: var(--theme-primary-hover);\n    }\n  }\n  .lg-navbar__drop-down__display-item {\n    display: flex;\n\n    .lg-navbar__drop-down__image {\n      display: flex;\n      justify-content: center;\n      align-items: center;\n      margin-right: 10px;\n    }\n    .lg-navbar__drop-down__text {\n      display: flex;\n      flex-direction: column;\n      font-size: 0.8rem;\n      color: var(--theme-secondary-color);\n      .lg-navbar__drop-down__dim {\n        font-size: 0.7rem;\n        font-weight: normal;\n        opacity: 0.8;\n      }\n    }\n  }\n\n  .lg-navbar__item--right {\n    margin: 0 0 0 auto;\n  }\n\n  .lg-navbar__item--circular {\n    border-radius: 100%;\n    width: 2rem;\n    height: 2rem;\n    svg {\n      font-size: 1.5em;\n    }\n  }\n}\n.nav-breaker {\n  height: 56px;\n}\n\n.st-navbar {\n  bottom: 0;\n  padding: 0;\n  box-shadow: 1px -3px 5px 0px var(--theme-navbar-box-shadow);\n  display: none;\n  justify-content: stretch;\n  align-items: stretch;\n  .lg-navbar__drop-down {\n    box-shadow: unset;\n    width: 100vw;\n    max-width: 500px;\n    box-shadow: 1px -3px 5px 0px var(--theme-navbar-box-shadow);\n    .lg-navbar__drop-down__item {\n      width: 100%;\n    }\n  }\n\n  .lg-navbar__item {\n    width: 25%;\n  }\n  .lg-navbar__item--circular {\n    &::before {\n      content: 'Theme';\n    }\n  }\n\n  .lg-navbar__item,\n  .lg-navbar__item--circular {\n    height: unset;\n    margin: 0;\n    display: flex;\n    border-radius: 0;\n    flex-direction: column-reverse;\n    font-size: 0.6em;\n    opacity: 1;\n    svg,\n    .lg-navbar__svg {\n      margin: 0;\n      font-size: 1.2rem;\n      margin-bottom: -3px;\n    }\n  }\n  .theme-picker {\n    box-shadow: 1px -3px 5px 0px var(--theme-navbar-box-shadow);\n  }\n}\n\n@media (min-width: 310px) and (max-width: 352px) {\n  .lg-navbar {\n    padding: 10px 10px;\n    margin: 0;\n  }\n  a.lg-navbar__item {\n    padding: 0 !important;\n  }\n}\n@media (min-width: 700px) {\n  .lg-navbar {\n    button.lg-navbar__item {\n      padding: 2px 0.5em;\n    }\n  }\n}\n@media (max-width: 700px) {\n  .st-navbar {\n    display: flex;\n    min-height: 56px;\n  }\n  .st-nav-breaker {\n    display: none;\n  }\n}\n@media (max-width: 700px) {\n  .lg-navbar {\n    .lg-navbar__item {\n      display: block;\n    }\n    .lg-navbar__header {\n      display: block;\n    }\n    position: fixed;\n  }\n}\n"
  },
  {
    "path": "src/css/components/_sidebar.scss",
    "content": ".blog-sidebar {\n  min-height: 80vh;\n  top: 56px;\n  border-right: 1px solid var(--theme-navbar-box-shadow);\n  display: flex;\n  max-height: 90vh;\n  overflow: auto;\n  position: sticky;\n  font-family: 'Open Sans', sans-serif;\n  flex-direction: column;\n  padding: 20px 0;\n\n  .blog-sidebar__header {\n    margin-top: 20px;\n    font-size: 0.9rem;\n    padding: 4px 15px;\n    text-transform: capitalize;\n    user-select: none;\n    color: var(--theme-dim-color);\n  }\n\n  .blog-sidebar__item {\n    color: var(--theme-color);\n    margin-top: 10px;\n    font-size: 0.8rem;\n    padding: 4px 20px;\n    border-radius: 4px 0px 0 4px;\n    &:hover {\n      background: var(--theme-hover);\n    }\n  }\n  .blog-sidebar__series-title {\n    font-size: 1.1rem;\n    font-weight: bold;\n    margin-bottom: 10px;\n  }\n  .blog-sidebar__item--active {\n    color: var(--theme-color);\n    background: var(--theme-hover);\n    box-shadow: inset -4px 0 var(--theme-primary-hover);\n  }\n}\n\n@media (max-width: 700px) {\n  .blog-sidebar {\n    display: none;\n  }\n}\n"
  },
  {
    "path": "src/css/components/_table-of-contents.scss",
    "content": ".table-of-contents {\n  font-family: 'Open Sans', sans-serif;\n  background: var(--theme-background);\n  color: var(--theme-color);\n  z-index: 800;\n  position: sticky;\n  right: 40px;\n  max-width: 300px;\n  padding: 20px 20px 20px 0;\n  top: 56px;\n  margin-top: 40px;\n\n  h2 {\n    font-family: 'Lato', sans-serif;\n    font-size: 16px;\n    margin: 0;\n    margin-left: 30px;\n    margin-bottom: 15px;\n    word-spacing: 4px;\n  }\n  ul {\n    font-size: 0.8rem;\n    margin-top: 0;\n    max-height: 80vh;\n    overflow: scroll;\n    margin-bottom: 0;\n    li {\n      margin: 0;\n      display: block;\n      p {\n        margin-bottom: 0;\n      }\n    }\n    a {\n      padding: 4px 0.8rem;\n      display: block;\n      color: black;\n      color: var(--theme-dim-color);\n    }\n\n    a.active {\n      box-shadow: inset 4px 0 var(--theme-primary-hover);\n      color: var(--theme-color);\n      background: white;\n      background: var(--theme-hover);\n      border-radius: 4px;\n    }\n  }\n}\n"
  },
  {
    "path": "src/css/components/_theme-picker.scss",
    "content": ".theme-picker {\n  font-size: 14px;\n  width: 100vw;\n  background: var(--theme-primary-bg);\n  max-width: 500px;\n  max-height: 90vh;\n  overflow: scroll;\n  display: flex;\n  padding: 10px;\n  border-radius: 4px;\n  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,\n    rgba(9, 30, 66, 0.31) 0px 0px 1px;\n\n  transition: 0.3s background;\n\n  flex-direction: column;\n  box-shadow: var(--theme-picker-box-shadow);\n  .theme-picker__theme {\n    flex-direction: column;\n    display: flex;\n\n    .theme-picker__input-group {\n      flex-direction: column;\n      display: flex;\n      select {\n        padding: 4px;\n        margin-bottom: 12px;\n      }\n    }\n    .theme-picker__header {\n      font-weight: bold;\n      color: white;\n      color: var(--theme-secondary-color);\n    }\n    .theme-picker__content {\n      color: white;\n      color: var(--theme-secondary-color);\n      display: flex;\n      overflow: auto;\n    }\n    .theme-picker__object {\n      width: 50px;\n      height: 50px;\n      border-radius: 100%;\n      border: 5px solid #d6d6d6;\n      &:hover {\n        opacity: 0.8;\n      }\n    }\n    .theme-picker__item {\n      background: transparent;\n      border: none;\n      margin: 10px;\n      outline: none;\n      display: flex;\n      flex-direction: column;\n      color: white;\n      color: var(--theme-secondary-color);\n      align-items: center;\n      cursor: pointer;\n      &:focus {\n        background: #3068b7;\n        background: var(--theme-primary-hover);\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "src/css/components/_tooltip.scss",
    "content": ".popper-tool-tip .popper-tool-tip__arrow {\n  width: 0;\n  height: 0;\n  border-style: solid;\n  position: absolute;\n}\n.popper-tool-tip[data-popper-placement^='top'] .popper-tool-tip__arrow {\n  border-width: 5px 5px 0 5px;\n  border-color: var(--popper-arrow-color) transparent transparent transparent;\n  bottom: -5px;\n  left: calc(50% - 5px);\n  margin-top: 0;\n  margin-bottom: 0;\n}\n\n.popper-tool-tip[data-popper-placement^='bottom'] .popper-tool-tip__arrow {\n  border-width: 0 5px 5px 5px;\n  border-color: transparent transparent var(--popper-arrow-color) transparent;\n  top: -5px;\n  left: calc(50% - 5px);\n  margin-top: 0;\n  margin-bottom: 0;\n}\n\n.popper-tool-tip[data-popper-placement^='right'] .popper-tool-tip__arrow {\n  border-width: 5px 5px 5px 0;\n  border-color: transparent var(--popper-arrow-color) transparent transparent;\n  left: -5px;\n  top: calc(50% - 5px);\n  margin-left: 0;\n  margin-right: 0;\n}\n\n.popper-tool-tip[data-popper-placement^='left'] .popper-tool-tip__arrow {\n  border-width: 5px 0 5px 5px;\n  border-color: transparent transparent transparent var(--popper-arrow-color);\n  right: -5px;\n  top: calc(50% - 5px);\n  margin-left: 0;\n  margin-right: 0;\n}\n\n.popper-tool-tip[data-x-out-of-boundaries] {\n  display: none;\n}\n"
  },
  {
    "path": "src/css/components/app-container.scss",
    "content": ".app-container {\n  flex-direction: column;\n  display: flex;\n  // min-height: 80vh;\n  background: var(--theme-background);\n  padding: 0 10px;\n  max-width: 1200px;\n  margin: 0 auto;\n  font-family: 'Open Sans', sans-serif;\n  .app-container__list {\n    display: flex;\n    flex-wrap: wrap;\n    justify-content: space-between;\n    align-items: center;\n    .app-container__item {\n      box-shadow: 0 0 8px 1px var(--theme-navbar-box-shadow);\n      padding: 10px;\n      overflow: hidden;\n      cursor: pointer;\n      border-radius: 4px;\n      border-top: 10px solid var(--theme-primary-bg);\n      &:hover {\n        background: var(--theme-hover);\n      }\n      display: flex;\n      color: var(--theme-color);\n      flex-direction: row;\n      margin: 20px 0;\n      max-width: 500px;\n      max-height: 300px;\n      width: 100%;\n      .app-container__image {\n        max-width: 200px;\n        min-width: 200px;\n        max-height: 200px;\n        margin-right: 10px;\n        padding: 4px;\n        border-radius: 4px;\n        width: 100%;\n        display: flex;\n\n        img {\n          width: 100%;\n          object-fit: cover;\n          margin: 0;\n        }\n      }\n      .app-container__content {\n        .app-container__title {\n          margin-top: 0;\n          font-family: 'Open Sans', sans-serif;\n          font-size: 1.2rem;\n          text-overflow: ellipsis;\n        }\n        .app-container__description {\n          font-size: 0.8rem;\n          display: flex;\n          flex-direction: column;\n          button {\n            align-self: flex-end;\n            margin-top: 10px;\n          }\n        }\n      }\n    }\n  }\n}\n\n@media (max-width: 700px) {\n  .app-container {\n    .app-container__list {\n      .app-container__item {\n        flex-wrap: wrap;\n        justify-content: center;\n        max-height: 500px;\n      }\n    }\n  }\n}\n\n@media (max-width: 1024px) {\n  .app-container {\n    .app-container__list {\n      justify-content: center;\n    }\n  }\n}\n"
  },
  {
    "path": "src/css/index.scss",
    "content": "@import 'markdown';\n@import 'components/navbar';\n@import 'components/tooltip';\n@import 'components/theme-picker';\n@import 'components/code-snippet';\n@import 'components/developer-card';\n@import 'components/table-of-contents';\n@import 'layout/blog_layout';\n@import 'components/sidebar';\n@import 'components/footer';\n@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');\n@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap');\n@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');\n@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');\n$background: white;\n$color: black;\n\n// #0e151c\n// #152128\n@mixin theme($background, $color) {\n}\n\n* {\n  box-sizing: border-box;\n}\n\n.tl-edges {\n  max-width: 100%;\n  overflow-x: unset;\n}\n\n:root {\n  --theme-primary-bg: #2a2c35;\n  --theme-primary-color: #000000;\n  --theme-secondary-color: #ffffff;\n  --theme-secondary-bg: #f4f4f4;\n  --theme-primary-hover: #424653;\n  --theme-picker-box-shadow: rgb(0, 0, 0) 0px 4px 8px -2px,\n    rgba(0, 0, 0, 0.31) 0px 0px 1px;\n  --theme-navbar-box-shadow: #484848ab;\n  --theme-navbar-box-shadow: #c9c9c9ab;\n  --theme-background: white;\n  --theme-color: black;\n  --theme-hover: #e0e0e096;\n  --theme-dim-color: #6f6f6f;\n  --popper-arrow-color: black;\n}\n\n@mixin theme($background, $color) {\n  background: $background;\n  color: $color;\n}\n\n.theme-dark {\n  --theme-navbar-box-shadow: #131313ab;\n  $color: white;\n  $background: #292c35;\n  --theme-background: #{$background};\n  --theme-color: #{$color};\n  --theme-hover: #424653;\n  --theme-dim-color: #dadada;\n  background: var(--theme-background);\n  color: var(--theme-color);\n}\n\n.theme-dark-blue {\n  $color: white;\n  $background: #083575;\n  --theme-dim-color: #dadada;\n  --theme-background: #{$background};\n  --theme-color: #{$color};\n  --theme-hover: #0b479c;\n  --theme-navbar-box-shadow: #071d3e;\n  background: var(--theme-background);\n  color: var(--theme-color);\n}\n\n.theme-dark-red {\n  $color: white;\n  $background: #7a1522;\n  --theme-background: #{$background};\n  --theme-color: #{$color};\n  --theme-dim-color: #dadada;\n  --theme-hover: #a01a2c;\n  --theme-navbar-box-shadow: #56111a;\n  background: var(--theme-background);\n  color: var(--theme-color);\n}\n\n.theme-solarized {\n  background: var(--theme-background);\n  color: var(--theme-color);\n}\n\n.theme-light {\n  --theme-navbar-box-shadow: #c9c9c9ab;\n  --theme-background: #{$background};\n  --theme-color: #{$color};\n  --theme-hover: #e0e0e096;\n  --theme-dim-color: #6f6f6f;\n  background: var(--theme-background);\n  color: var(--theme-color);\n  :not(pre) > code {\n    background: #eaeaea;\n  }\n\n  .popper-tool-tip {\n    background: black;\n    color: white;\n    --popper-arrow-color: black;\n  }\n}\n\n#project-main-container {\n  min-height: 100vh;\n}\n\n.theme-dark,\n.theme-dark-blue,\n.theme-dark-red {\n  a {\n    color: #79aeff;\n  }\n  :not(pre) > code {\n    background-color: rgb(17, 17, 17);\n    color: white;\n  }\n  .popper-tool-tip {\n    background: #cecece;\n    --popper-arrow-color: #cecece;\n    color: #000000;\n  }\n}\n\na {\n  text-decoration: none;\n  color: var(--theme-color);\n}\n\n.section-container {\n  background-color: #fff;\n}\n\n.section-container .welcome {\n  position: relative;\n  top: 20px;\n  text-align: center;\n}\n\n.dynamic-container {\n  min-height: 80vh;\n  background: var(--theme-background);\n}\n.app-container button,\n.container button,\n.theme-picker__input-group button,\n.button {\n  position: relative;\n  border: none;\n  padding: 4px 1rem;\n  color: white;\n  cursor: pointer;\n  border-radius: 4px;\n  align-self: start;\n  font-size: 0.8rem;\n  font-family: 'Open Sans', sans-serif;\n  justify-self: start;\n  background: var(--theme-primary-bg);\n  color: var(--theme-secondary-color);\n  border: 1px solid var(--theme-secondary-color);\n}\nbutton:disabled,\ninput:disabled,\nselect:disabled {\n  opacity: 0.5;\n  cursor: not-allowed;\n}\n\n.loader {\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  width: 100%;\n  height: 100%;\n  position: absolute;\n  z-index: 100;\n  .loader-icon {\n    animation: spin 1s ease alternate infinite;\n    width: 10vh;\n    height: 10vh;\n    background: black;\n    border-radius: 10px;\n  }\n}\n\n@keyframes spin {\n  to {\n    transform: rotate(360deg);\n  }\n}\n\n.relative {\n  position: relative;\n}\n\n.filter-bar {\n  min-width: 22rem;\n  max-width: 50%;\n  margin: 2rem auto 1rem auto;\n  .app-input {\n    width: 100%;\n    padding: 4px;\n    padding-left: 10px;\n    font-family: 'Open Sans', sans-serif;\n    border: 2px solid var(--theme-primary-hover);\n    border-radius: 4px;\n    border: 1px solid rgb(203, 203, 203);\n    outline: none;\n    &:focus {\n      z-index: 1;\n      border: 1px solid rgb(70, 70, 70);\n      box-shadow: 0 0 0 3px rgba(48, 48, 48, 0.562);\n    }\n  }\n\n  .app-select {\n    // width: 100%;\n    padding: 4px;\n    font-family: 'Open Sans', sans-serif;\n    border: 2px solid var(--theme-primary-hover);\n    border-radius: 4px;\n    border: 1px solid rgb(203, 203, 203);\n    outline: none;\n    &:focus {\n      z-index: 1;\n      border: 1px solid rgb(70, 70, 70);\n      box-shadow: 0 0 0 3px rgba(48, 48, 48, 0.562);\n    }\n  }\n\n  .type-filter {\n    padding-bottom: 10px;\n    font-family: 'Open Sans', sans-serif;\n    display: flex;\n    flex-direction: row;\n    flex-wrap: wrap;\n    justify-content: center;\n    align-items: center;\n    .type-title {\n      padding-right: 10px;\n    }\n  }\n\n  .add-filter-button {\n    margin: 0.5rem 0;\n  }\n  .filters-list {\n    display: flex;\n    flex-wrap: wrap;\n  }\n  .sort-list {\n    display: flex;\n    flex-wrap: wrap;\n    margin-top: 4px;\n    button.button {\n      margin-right: 10px;\n      margin-top: 10px;\n    }\n    .sort-field {\n      margin: 4px;\n      width: fit-content;\n      padding: 1px 6px;\n      border-radius: 3px;\n      background: #ebebeb;\n      border: 1px solid #d8d8d8;\n      color: black;\n      &:hover {\n        cursor: pointer;\n      }\n    }\n  }\n  .search-bar {\n    display: block !important;\n    justify-content: center;\n    align-items: center;\n    input {\n      color: black;\n      &:focus,\n      &:active {\n        border-color: var(--theme-secondary-color);\n      }\n      &::placeholder {\n        color: black !important;\n      }\n    }\n    button {\n      .ant-btn-primary {\n        &:hover,\n        &:focus,\n        &:active {\n          background: var(--theme-primary-bg);\n          color: var(--theme-secondary-color);\n        }\n      }\n      background: var(--theme-primary-bg);\n      color: var(--theme-secondary-color);\n    }\n  }\n\n  .ant-tag {\n    &.filter {\n      font-size: 14px;\n      padding: 6px 12px;\n      border-radius: 6px;\n      margin: 6px;\n      display: flex;\n      align-items: center;\n      width: fit-content;\n      span {\n        margin-left: 6px;\n        padding-left: 6px;\n        svg {\n          height: 15px;\n          width: 15px;\n        }\n      }\n    }\n  }\n\n  @media only screen and (max-width: 375px) {\n    min-width: 18rem;\n  }\n  @media only screen and (max-width: 320px) {\n    min-width: 16rem;\n  }\n}\n\n.add-filter-overlay {\n  .ant-popover-content {\n    width: 15rem;\n    .ant-popover-inner {\n      .ant-popover-inner-content {\n        .add-filter-container {\n          .ant-select {\n            width: 100% !important;\n            margin-bottom: 0.5rem;\n          }\n          .action-buttons {\n            width: 100%;\n            display: flex;\n            align-items: center;\n            justify-content: space-between;\n            margin: 0.5rem 0;\n          }\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "src/css/layout/_blog_layout.scss",
    "content": ".blog-main-container {\n  display: flex;\n  max-width: 1920px;\n  margin: 0 auto;\n  background: var(--theme-background);\n  color: var(--theme-color);\n\n  .blog-sidebar {\n    width: 250px;\n    min-width: 250px;\n  }\n\n  .blog-mid-container {\n    flex: 6;\n    flex-grow: 6;\n    max-width: 900px;\n    width: 100%;\n    margin: 0 auto;\n    padding: 0px 56px;\n  }\n  .blog-right-container {\n    flex: 1;\n    flex-grow: 1;\n    position: sticky;\n    min-height: 100vh;\n    max-width: 20%;\n    position: relative;\n    min-width: 250px;\n    .test-container {\n      .test {\n        width: 200px;\n        height: 200px;\n        background-color: rebeccapurple;\n        margin: 10px;\n      }\n    }\n  }\n}\n\n@media (max-width: 700px) {\n  .blog-main-container {\n    .blog-mid-container {\n      padding: 0px 1.125rem;\n    }\n  }\n}\n\n@media (max-width: 1023px) {\n  .blog-main-container {\n    .blog-right-container {\n      display: none;\n    }\n  }\n}\n"
  },
  {
    "path": "src/css/page/image-to-ascii.scss",
    "content": ".image-to-ascii {\n  position: relative;\n  min-height: 85vh;\n  .drawboard {\n    min-height: 85vh;\n    background: transparent;\n    pre {\n      transform-origin: 0 0;\n    }\n  }\n  .tool-bar {\n    display: flex;\n    flex-direction: column;\n    > * {\n      margin-top: 20px;\n    }\n    h2 {\n      margin-top: 10px;\n    }\n  }\n  .ascii-background {\n    position: relative;\n    overflow: scroll;\n    justify-content: flex-start;\n    align-items: flex-start;\n    color: white;\n    background: black;\n  }\n  .image-drop-zone {\n    position: relative;\n    align-self: stretch;\n    border: 2px dashed #0087f7;\n    border-radius: 5px;\n    display: flex;\n    font-family: 'Open Sans';\n    flex-direction: column;\n    justify-content: center;\n    align-items: center;\n    background: transparent;\n    text-align: center;\n    p {\n      font-family: 'Open Sans', sans-serif;\n    }\n  }\n}\n"
  },
  {
    "path": "src/css/page/nepali-date.scss",
    "content": ".nepali-date {\n  font-family: 'Lato', sans-serif;\n  font-size: 1rem;\n  .nepali-date-converter {\n    max-width: 900px;\n    margin: 0 auto;\n    display: flex;\n    flex-direction: column;\n    .nepali-date-format {\n      display: flex;\n      flex-wrap: wrap;\n      justify-content: space-between;\n      label {\n        display: flex;\n        flex-direction: column;\n      }\n    }\n    .nepali-date-row {\n      flex-wrap: wrap;\n      margin-top: 10px;\n      display: flex;\n      > * {\n        margin-right: 10px;\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "src/hooks/index.js",
    "content": "export * from './windowHooks'\n"
  },
  {
    "path": "src/hooks/windowHooks.js",
    "content": "import { useState, useEffect } from 'react'\n\nexport function useWindowWidth() {\n  const [width, setWidth] = useState(null)\n\n  useEffect(() => {\n    window &&\n      window.addEventListener('resize', () => {\n        setWidth(window.width)\n      })\n  }, [])\n\n  return width\n}\n\nexport function useWindowHeight() {\n  const [height, setHeight] = useState(null)\n\n  useEffect(() => {\n    window &&\n      window.addEventListener('resize', () => {\n        setHeight(window.height)\n      })\n  }, [])\n\n  return height\n}\n"
  },
  {
    "path": "src/pages/404.js",
    "content": "import React from 'react'\nimport Layout from '../components/Layouts/Layout'\nimport SEO from '../components/seo'\nimport notFound from '../assets/svg/404.svg'\nimport '../css/404.scss'\nimport { Link } from 'gatsby'\nclass NotFoundPage extends React.Component {\n  render() {\n    return (\n      <Layout location={this.props.location}>\n        <SEO title=\"404: Not Found\" />\n        <div className=\"not-found\">\n          <img src={notFound} alt=\"404 not found\" />\n          <div className=\"not-found__message\">\n            <h1>Not Found</h1>\n            Looks like the page you are looking for couldn't be found. If you want to add your profile please create a file <code>readme-profiles/{'<github_username>.md'}</code> in the repo <a href=\"https://github.com/subeshb1/developer-community-stats\">developer-community-stats </a>.\n            Link to the issue: <a href=\"https://github.com/subeshb1/developer-community-stats/issues/74\">Add Profile</a>\n            <Link to=\"/\" className=\"not-found__button\">\n              Return Home\n            </Link>\n          </div>\n        </div>\n      </Layout>\n    )\n  }\n}\n\nexport default NotFoundPage\n"
  },
  {
    "path": "src/pages/index.js",
    "content": "import React from 'react'\nimport { graphql } from 'gatsby'\nimport 'flag-icon-css/css/flag-icon.min.css'\nimport SEO from '../components/seo'\nimport Layout from '../components/Layouts/Layout'\nimport DeveloperCard from '../components/DeveloperCard'\n\nimport { AiOutlineArrowUp, AiOutlineArrowDown } from 'react-icons/ai'\nclass DeveloperCommunityHome extends React.Component {\n  constructor(props) {\n    super(props)\n    this.initialFilter = { type: '', value: '', name: '' }\n    this.state = {\n      searchText: '',\n      searchType: { label: 'username', value: 'githubUserId' },\n      filterableFields: [\n        { name: 'Github user name', type: 'githubUserId' },\n        { name: 'Name', type: 'name' },\n        { name: 'Country', type: 'country' },\n      ],\n      sortableFields: [\n        { name: 'Country', type: 'country' },\n        { name: 'Github user name', type: 'githubUserId' },\n        { name: 'Name', type: 'name' },\n        { name: \"This year's commits\", type: 'thisYearContribution' },\n        { name: 'Followers', type: 'followersCount' },\n      ],\n      selectedFilter: this.initialFilter,\n      filters: [],\n      isAddFilterPopoverOpen: false,\n      sort: { field: '', type: '', order: '' },\n    }\n  }\n\n  handleSearchChange = event => {\n    const value = event.target.value\n    this.setState({\n      searchText: value,\n    })\n  }\n\n  handleTypeChange = event => {\n    let index = event.nativeEvent.target.selectedIndex\n    let label = event.nativeEvent.target[index].title\n    console.log(label)\n\n    this.setState({\n      searchType: {\n        value: event.target.value,\n        label: label,\n      },\n    })\n  }\n\n  deleteFilter = index => {\n    const updatedFilters = this.state.filters.filter((filter, i) => i !== index)\n    this.setState({\n      filters: updatedFilters,\n    })\n  }\n\n  onPopoverVisibilityChange = visibility => {\n    this.setState({\n      isAddFilterPopoverOpen: visibility,\n    })\n  }\n\n  hidePopover = () => {\n    this.setState({\n      isAddFilterPopoverOpen: false,\n    })\n  }\n\n  updateSelectedFilterValue = event => {\n    const value = event.target.value\n    this.setState(prevState => ({\n      ...prevState,\n      selectedFilter: {\n        ...prevState.selectedFilter,\n        value: value,\n      },\n    }))\n  }\n\n  updateSelectedFilterType = value => {\n    this.setState(prevState => ({\n      ...prevState,\n      selectedFilter: {\n        ...prevState.selectedFilter,\n        ...JSON.parse(value),\n      },\n    }))\n  }\n\n  addFilter = () => {\n    this.setState({\n      isAddFilterPopoverOpen: false,\n      filters: this.state.filters.concat(this.state.selectedFilter),\n      selectedFilter: { ...this.initialFilter },\n    })\n  }\n\n  toggleSort = sort => {\n    if (this.state.sort && sort.type === this.state.sort.type) {\n      if (this.state.sort.order === 'asc') {\n        this.setState({\n          sort: {\n            ...this.state.sort,\n            order: 'dsc',\n          },\n        })\n      } else {\n        this.setState({\n          sort: null,\n        })\n      }\n    } else {\n      this.setState({\n        sort: { field: sort.field, type: sort.type, order: 'asc' },\n      })\n    }\n  }\n\n  getFilteredList = contributors => {\n    const list = contributors.reduce((list, current) => {\n      const isFilteredContributor = this.state.filters.every(filter => {\n        console.log('====> ', filter.value)\n        if (\n          current[filter.type]\n            .toLowerCase()\n            .includes(filter.value.toLowerCase())\n        ) {\n          return true\n        }\n      })\n\n      if (isFilteredContributor) {\n        list.push(current)\n      }\n\n      return list\n    }, [])\n    return list\n  }\n\n  getSortedList = contributors => {\n    const list = !!this.state.sort\n      ? contributors.sort((a, b) => {\n        if (this.state.sort.order === 'asc') {\n          if (b[this.state.sort.type]) {\n            if (typeof b[this.state.sort.type] === 'number') {\n              const order = a[this.state.sort.type] - b[this.state.sort.type]\n              return order\n            } else {\n              const order =\n                b[this.state.sort.type] &&\n                b[this.state.sort.type]\n                  .toString()\n                  .localeCompare(\n                    a[this.state.sort.type] &&\n                    a[this.state.sort.type].toString()\n                  )\n              return order\n            }\n          }\n        } else {\n          if (typeof b[this.state.sort.type] === 'number') {\n            const order = b[this.state.sort.type] - a[this.state.sort.type]\n            return order\n          } else {\n            const order =\n              a[this.state.sort.type] &&\n              a[this.state.sort.type]\n                .toString()\n                .localeCompare(\n                  b[this.state.sort.type] &&\n                  b[this.state.sort.type].toString()\n                )\n            return order\n          }\n        }\n      })\n      : contributors\n\n    return list\n  }\n\n  render() {\n    const {\n      data: {\n        allContributor: { nodes: contributors },\n      },\n    } = this.props\n\n    const filteredList = this.getFilteredList(contributors)\n\n    const sortedList = this.getSortedList(filteredList)\n\n    const searchFilterList = sortedList.filter(contributor =>\n      contributor[this.state.searchType['value']]\n        .toLowerCase()\n        .includes(this.state.searchText.toLowerCase())\n    )\n\n    return (\n      <Layout>\n        <SEO\n          url=\"/\"\n          title=\"Developer Community Stats\"\n          description=\"A repository to encourage beginners to contribute to open source and for all contributors to view their Github stats.\"\n          keywords={[\n            `GithubStats`,\n            `github`,\n            `stats`,\n            `developer`,\n            `community`,\n          ]}\n        />\n        <div className=\"filter-bar\">\n          <div className=\"type-filter\">\n            <div className=\"type-title\">Search by: </div>\n            <select id=\"type-select\" className=\"app-select\" onChange={this.handleTypeChange}>\n              <option value=\"githubUserId\" title=\"username\">\n                Username\n              </option>\n              <option value=\"country\" title=\"country\">\n                Country\n              </option>\n              <option value=\"name\" title=\"name\">\n                Name\n              </option>\n            </select>\n          </div>\n\n          <input\n            size=\"large\"\n            className=\"app-input\"\n            placeholder={'Search by ' + this.state.searchType.label}\n            onChange={this.handleSearchChange}\n            value={this.state.searchText}\n          />\n          <div className=\"sort-list\">\n            {this.state.sortableFields.map(sort => (\n              <button\n                key={sort.type}\n                onClick={() => this.toggleSort(sort)}\n                className=\"button\"\n              >\n                {sort.name}\n                {this.state.sort && sort.type === this.state.sort.type ? (\n                  this.state.sort.order === 'asc' ? (\n                    <AiOutlineArrowUp />\n                  ) : (\n                      <AiOutlineArrowDown />\n                    )\n                ) : null}\n              </button>\n            ))}\n          </div>\n        </div>\n        <div className=\"developer-card-container\">\n          {searchFilterList.map((contributorStats, i) => (\n            <DeveloperCard\n              position={i + 1}\n              {...contributorStats}\n              key={contributorStats.id}\n              searchKey={this.state.searchText}\n            />\n          ))}\n        </div>\n      </Layout>\n    )\n  }\n}\n\nexport default DeveloperCommunityHome\n\nexport const pageQuery = graphql`\n  query {\n    site {\n      siteMetadata {\n        title\n      }\n    }\n    allContributor(sort: { order: DESC, fields: thisYearContribution }) {\n      totalCount\n      nodes {\n        id\n        countryCode\n        repositoryCount\n        contributionYears\n        country\n        firstContribution\n        followersCount\n        githubUserId\n        issuesCount\n        linkedin\n        website\n        name\n        pullRequestsCount\n        repoContributedCount\n        thisYearContribution\n        twitter\n        avatarUrl\n      }\n    }\n  }\n`\n"
  },
  {
    "path": "src/templates/readme-profile.js",
    "content": "import React, { useEffect } from 'react'\n\nimport { graphql, Link } from 'gatsby'\nimport Layout from '../components/Layouts/Layout'\nimport { rhythm, scale } from '../utils/typography'\nimport Toc from '../components/Toc'\nimport { If } from '../components/utils'\nimport DeveloperCard from '../components/DeveloperCard'\n\n\nconst BlogContent = React.memo(({ html }) => {\n  return <section key=\"blog-layout\" id=\"blog-section\" dangerouslySetInnerHTML={{ __html: html }} />\n});\n\nfunction BlogPost(props) {\n  const post = props.data.markdownRemark\n  const card = props.data.contributor\n  return (\n    <Layout>\n      <div className=\"readme-profile\">\n        <DeveloperCard {...card} />\n        <div className=\"blog-main-container\">\n          <main className=\"readme-mid-container blog-post-content\">\n            <BlogContent html={post.html} />\n            <hr\n              style={{\n                marginBottom: rhythm(1),\n              }}\n            />\n          </main>\n        </div>\n      </div>\n    </Layout >\n  )\n}\n\nexport default BlogPost\n\nexport const pageQuery = graphql`\n  query($slug: String!, $githubUserId: String!) {\n    site {\n      siteMetadata {\n        title\n        author\n      }\n    }\n    contributor(githubUserId: {eq: $githubUserId}) {\n      id\n      countryCode\n      repositoryCount\n      contributionYears\n      country\n      firstContribution\n      followersCount\n      githubUserId\n      issuesCount\n      linkedin\n      website\n      name\n      pullRequestsCount\n      repoContributedCount\n      thisYearContribution\n      twitter\n      avatarUrl\n    }\n    markdownRemark(fields: { slug: { eq: $slug } }) {\n      id\n      html\n      fields {\n        slug\n      }\n    }\n  }\n`\n"
  },
  {
    "path": "src/utils/typography.js",
    "content": "import Typography from 'typography'\n\nconst typography = new Typography({\n  baseFontSize: '18px',\n  baseLineHeight: '1.5em',\n  headerFontFamily: ['Lora', 'Libre Baskerville', 'serif'],\n  bodyFontFamily: [\n    'Merriweather',\n    'Bree Serif',\n    'Lato',\n    'Libre Baskerville',\n    'serif',\n  ],\n  headerMarginTop: '3.5rem',\n  overrideThemeStyles: ({ rhythm }, options) => ({\n    'h1,h2,h3': {\n      marginTop: rhythm(2),\n    },\n  }),\n})\n\n// Hot reload typography in development.\nif (process.env.NODE_ENV !== `production`) {\n  typography.injectStyles()\n}\n\nexport default typography\nexport const rhythm = typography.rhythm\nexport const scale = typography.scale\n"
  },
  {
    "path": "stats-generator.js",
    "content": "require('dotenv').config()\nconst fetch = require('node-fetch');\nconst token = process.env.GITHUB_TOKEN\nconst apiUrl = process.env.GITHUB_GRAPHQL_URL\n\nconst defaultConfig = {\n  followersCount: true,\n  issuesCount: true,\n  pullRequestCount: true,\n  contributionCount: true,\n  currentYearContributionCount: true,\n  repositoryCount: true,\n  countPrivate: true,\n  repositoryContributedCount: true,\n  languageCount: true,\n  includeContributedRepoLanguage: true,\n  includePrivate: true,\n  excludedLanguages: [].map(str => str.toLocaleLowerCase())\n}\n\nconst config = {\n  ...defaultConfig\n}\n\n/**\n * Github Graphql query helper\n */\nconst githubQuery = async (query) => fetch(apiUrl, {\n  method: 'POST',\n  headers: {\n    Authorization: `bearer ${token}`\n  },\n  body: JSON.stringify({\n    query\n  })\n})\n\n/**\n * Github REST API query helper\n */\nconst githubAPIQuery = async (query) => fetch(query, {\n  method: 'GET',\n  headers: {\n    Authorization: `bearer ${token}`\n  }\n})\n\n\nconst extractGraphqlJson = res => {\n  return res.json().then(res => {\n    if (res.errors && res.errors.length > res.data.length) {\n      throw res\n    }\n    return res\n  })\n}\n\nconst statsQuery = `\n{\n  viewer {\n    repositories(isFork: false,${config.includePrivate ? '' : 'privacy: PUBLIC'}) {\n      totalCount\n    }\n    pullRequests {\n      totalCount\n    }\n    issues {\n      totalCount\n    }\n    followers {\n      totalCount\n    }\n    contributionsCollection {\n      contributionYears\n    }\n    repositoriesContributedTo${config.includePrivate ? '' : '(privacy: PUBLIC)'} {\n      totalCount\n    }\n  }\n}\n`\n\nconst contributionPerYearQuery = year => `\nyear${year}: contributionsCollection(from: \"${year}-01-01T00:00:00Z\", to: \"${year}-12-31T23:59:59Z\") {\n  contributionCalendar {\n    totalContributions\n  }\n}\n`\nconst userCountStatsQuery = user => `\n  ${user.replace(/-/g, \"___kebab___\").replace(/^([0-9])/, (match) => {\n  return \"__NUMBER__\" + match\n})}: user(login: \"${user}\") {\n    repositories(isFork: false,${config.includePrivate ? '' : 'privacy: PUBLIC'}) {\n      totalCount\n    }\n    pullRequests {\n      totalCount\n    }\n    issues {\n      totalCount\n    }\n    followers {\n      totalCount\n    }\n    avatarUrl\n    contributionsCollection {\n      contributionYears\n      contributionCalendar {\n        totalContributions\n      }\n    }\n    repositoriesContributedTo${config.includePrivate ? '' : '(privacy: PUBLIC)'} {\n      totalCount\n    }\n  }\n`\n\nconst fetchCountStats = (users) => {\n  const perUserQuery = users.map(userCountStatsQuery)\n\n  const statsQuery = `\n    {\n      ${perUserQuery.join(\"\\n\")}\n    }\n    `\n\n  return githubQuery(statsQuery).then(extractGraphqlJson).then(res => Object.entries(res.data).reduce((obj, [key, value]) => {\n    if (value === null) {\n\n      return obj\n    }\n    return { ...obj, [key]: value }\n  }, {})).then(res => {\n    return Object.entries(res).reduce((acc, user) => {\n      acc[user[0].replace(/___kebab___/g, \"-\").replace(/__NUMBER__/g, \"\")] = extractCountStats(user[1])\n      return acc\n    }, {})\n  })\n}\n\n\nconst extractCountStats = (res) => {\n  const data = res;\n  return {\n    repositoryCount: data.repositories.totalCount,\n    repoContributedCount: data.repositoriesContributedTo.totalCount,\n    contributionYears: data.contributionsCollection.contributionYears,\n    followersCount: data.followers.totalCount,\n    issuesCount: data.issues.totalCount,\n    pullRequestsCount: data.pullRequests.totalCount,\n    avatarUrl: data.avatarUrl,\n    firstContribution: data.contributionsCollection.contributionYears.slice(-1)[0],\n    thisYearContribution: data.contributionsCollection.contributionCalendar.totalContributions\n  }\n}\n\nconst fetchContributionPerYear = async (yearArray) => {\n  let queryArray = []\n  queryArray = queryArray.concat(yearArray.map(contributionPerYearQuery))\n  const query = `\n  {\n    viewer {\n      ${queryArray.join('\\n')}\n    }\n  }\n  `\n  const res = await githubQuery(query);\n  const res_1 = await extractGraphqlJson(res);\n  return res_1.data.viewer;\n}\n\n\nconst fetchRepoLanguageAndStars = (externalRepo = false) => {\n  if (externalRepo && !config.includeContributedRepoLanguage) {\n    return { repoLanguages: [], stargazerCount: 0 }\n  }\n  const schemaKey = externalRepo ? 'repositoriesContributedTo' : 'repositories';\n  const forkKey = externalRepo ? '' : 'isFork: false,';\n  let repoLanguages = [];\n  let hasNext = null\n  let cursor\n  let stargazerCount = 0\n  function fetchPerPage() {\n    if (hasNext === false) {\n      return true\n    }\n    const query = `\n    {\n      viewer {\n        ${schemaKey}(${forkKey} ${config.includePrivate ? '' : 'privacy: PUBLIC'}, first: 100 ${hasNext ? `,after: \"${cursor}\"` : ''}) {\n          pageInfo{\n            endCursor\n            hasNextPage\n          }\n          nodes {\n            stargazerCount\n            languages(first: 100) {\n              nodes {\n                name\n              }\n            }\n          }\n        }\n      }\n    }\n    `\n    return githubQuery(query)\n      .then(extractGraphqlJson)\n      .then(res => res.data.viewer)\n      .then(data => {\n        cursor = data[schemaKey].pageInfo.endCursor\n        hasNext = data[schemaKey].pageInfo.hasNextPage\n        repoLanguages = repoLanguages.concat(data[schemaKey].nodes.flatMap(node => node.languages.nodes.map(language => language.name)))\n        stargazerCount += data[schemaKey].nodes.reduce((acc, item) => acc + item.stargazerCount, 0)\n        return fetchPerPage()\n      });\n  }\n\n  return fetchPerPage().then(() => ({ repoLanguages, stargazerCount }))\n\n}\nconst fetchCompoundStats = async (countStats) => {\n  const responses = await Promise.all([\n    fetchContributionPerYear(countStats.contributionYears),\n    fetchRepoLanguageAndStars(),\n    fetchRepoLanguageAndStars(true)\n  ]);\n  const contributionPerYear = Object.entries(responses[0]).reduce((acc, item) => {\n    acc[item[0].replace('year', '')] = item[1].contributionCalendar.totalContributions;\n    return acc;\n  }, {});\n  const languages = responses[1].repoLanguages.concat(responses[2].repoLanguages).reduce((acc, language) => {\n    if (config.excludedLanguages.includes(language.toLocaleLowerCase())) {\n      return acc\n    }\n    if (acc[language]) {\n      acc[language]++;\n    } else {\n      acc[language] = 1;\n    }\n    return acc;\n  }, {});\n  return {\n    ...countStats,\n    contributionPerYear,\n    languages,\n    languageCount: Object.keys(languages).length,\n    stargazerCount: responses[1].stargazerCount\n  };\n}\n\n\n\nmodule.exports = {\n  fetchCountStats\n}\n"
  }
]