Skip to content

Instantly share code, notes, and snippets.

@korfuri
Created April 10, 2016 06:44
Show Gist options
  • Save korfuri/45ca7fe32dc941f3e2e9f50500b57cf9 to your computer and use it in GitHub Desktop.
Save korfuri/45ca7fe32dc941f3e2e9f50500b57cf9 to your computer and use it in GitHub Desktop.
Track on Keybase.io the people you follow on Github!
# Track everyone you follow on Github!
Requirements: jq (`apt-get install jq`), keybase (see https://keybase.io).
$ ME_ON_GITHUB=korfuri; for l in $(curl "https://api.github.com/users/$ME_ON_GITHUB/following?per_page=100&page=1" | jq -r '.[] | .login'); do keybase track $l@github; done
@korfuri
Copy link
Author

korfuri commented Apr 10, 2016

If you follow more than 100 users, run it as many times as necessary incrementing the page parameter in the URL.
If you want to track your followers (the people who follow you), s/following/followers/ in the URL.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment