Skip to content

Instantly share code, notes, and snippets.

@hwine
Created July 18, 2018 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hwine/8e8f7b9b8dc96a16a8f13c4b38a06f37 to your computer and use it in GitHub Desktop.
Save hwine/8e8f7b9b8dc96a16a8f13c4b38a06f37 to your computer and use it in GitHub Desktop.
Script to 'decode' GitHub v4 node ids
#!/usr/bin/env bash
# for informational purposes only -- there are no guarantees this format
# will remain as is.
for node_id ; do
echo "${node_id}" | openssl enc -d -base64
echo
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment