{"id":13587913,"url":"https://github.com/freedomofkeima/github-profile-visualizer","last_synced_at":"2025-08-10T08:50:08.771Z","repository":{"id":37752850,"uuid":"151131542","full_name":"freedomofkeima/github-profile-visualizer","owner":"freedomofkeima","description":"Visualize Github profile growth (followers, num repo, etc) with daily cron and Github Pages","archived":false,"fork":false,"pushed_at":"2025-08-04T10:00:07.000Z","size":4041,"stargazers_count":19,"open_issues_count":2,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-04T14:08:43.899Z","etag":null,"topics":["github","github-statistics","github-stats"],"latest_commit_sha":null,"homepage":"https://freedomofkeima.github.io/github-profile-visualizer/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/freedomofkeima.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-10-01T17:45:37.000Z","updated_at":"2025-08-04T10:00:10.000Z","dependencies_parsed_at":"2024-02-08T11:22:39.719Z","dependency_job_id":"68d5568e-cc43-4b5c-bacc-21619fb3c043","html_url":"https://github.com/freedomofkeima/github-profile-visualizer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/freedomofkeima/github-profile-visualizer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freedomofkeima%2Fgithub-profile-visualizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freedomofkeima%2Fgithub-profile-visualizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freedomofkeima%2Fgithub-profile-visualizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freedomofkeima%2Fgithub-profile-visualizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/freedomofkeima","download_url":"https://codeload.github.com/freedomofkeima/github-profile-visualizer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freedomofkeima%2Fgithub-profile-visualizer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269699526,"owners_count":24461213,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["github","github-statistics","github-stats"],"created_at":"2024-08-01T15:06:25.326Z","updated_at":"2025-08-10T08:50:08.727Z","avatar_url":"https://github.com/freedomofkeima.png","language":"Shell","readme":"# Github Profile Visualizer\n\nVisualize Github profile growth (followers, num repo, rank based on followers or num repo) with daily cron and Github Pages.\n\nAvailable via Github Pages - [https://freedomofkeima.github.io/github-profile-visualizer/](https://freedomofkeima.github.io/github-profile-visualizer/).\n\n![](img/screenshot.png)\n\n## Make Your Own Github Pages\n\nGithub provides a free, static page websites via [Github Pages](https://pages.github.com/). In order to start using it, you need to:\n\n* Fork this repo.\n* Open your repo setting and scroll down to Github Pages. Change your `source` and save. Your setup should look like below.\n\n![Enable github pages for this project](img/pages.png)\n\n* Clone your repo to your computer and run `sh init.sh GITHUB_USERNAME GITHUB_TOKEN`. Read the guide below on how to generate your token.\n* Install `jq`. You can either use `sudo yum install jq` or `sudo apt-get install jq`, depending on your distro.\n* Run `sh script.sh` (or `./script.sh`) to update and upload your data. Add cron job integration (explained below) to automatically update your repository everyday.\n* Check if it works, visit `https://[GITHUB_USERNAME].github.io/github-profile-visualizer/`.\n\n\n## Github Personal Access Token\n\nTo access Github, we need to create a personal access token.\n\nAccess [https://github.com/settings/tokens/new](https://github.com/settings/tokens/new) to generate a new personal token.\n\n\nWe need to set the following 3 scopes:\n\n```\n\"scopes\": [\n\t\"public_repo\",\n\t\"repo:status\",\n\t\"read:user\"\n]\n```\n\n![Scope](img/scope.png)\n\n`public_repo` is used to allow us committing daily cron changes back to the repository, while `repo:status` is used to get number of repositories, and `read:user` is used to get number of followers \u0026 followings.\n\n## ok.sh\n\n`ok.sh` is adapted from [whiteinge/ok.sh](https://github.com/whiteinge/ok.sh), which has BSD 3-Clause.\n\nAs of October 3, 2018, `ok.sh` doesn't support `list_followers` and `list_following`. Therefore, `ok.sh` in this repository is a freezed version with modifications.\n\nWe will store \"Personal Access Token\" that you have retrieved above in `$HOME/.netrc`. See `init.sh` for details implementation.\n\nFor other optional configurations, consult to [whiteinge/ok.sh#configuration](https://github.com/whiteinge/ok.sh#configuration).\n\n## script.sh\n\nAssuming your repository clone is located at `$HOME`, you can try running `script.sh` manually via:\n\n```\n$ GITHUB_USER=[YOUR_USERNAME] GITHUB_TOKEN=[YOUR_TOKEN] $HOME/github-profile-visualizer/script.sh\n```\n\n## Adding cron job\n\nAt this point, you should be able to see a new commit in your repository, congrats!\n\nThe next step is, we want to automate the job. You can add the following line to your crontab (`crontab -e`):\n\n```\n0 10 * * * GITHUB_USER=[YOUR_USERNAME] GITHUB_TOKEN=[YOUR_GENERATED_TOKEN] $HOME/github-profile-visualizer/script.sh \u0026\u003e/dev/null\n```\n\nFeel free to adjust the parameter above (schedule, source path, etc) based on your configuration.\n\n## Contributors\n\n- [Iskandar Setiadi](https://github.com/freedomofkeima)\n- [Tegar Imansyah](https://github.com/tegarimansyah)\n\n## License\n\nThis project is licensed under BSD 3-Clause.\n","funding_links":[],"categories":["Shell"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreedomofkeima%2Fgithub-profile-visualizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffreedomofkeima%2Fgithub-profile-visualizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreedomofkeima%2Fgithub-profile-visualizer/lists"}