Skip to content

Instantly share code, notes, and snippets.

@iwootten
Created December 29, 2022 12:41
Show Gist options
  • Save iwootten/23f941173c2ef1570d1e53eb6e389968 to your computer and use it in GitHub Desktop.
Save iwootten/23f941173c2ef1570d1e53eb6e389968 to your computer and use it in GitHub Desktop.
Find your Best 10 Tweets with jq
# Download your twitter archive
# Edit tweets.js into a json array
# Run this to find best tweets
cat tweets.json | jq '[.[].tweet | {
retweets: .retweet_count | tonumber,
favourites: .favorite_count | tonumber,
text: .full_text,
url: "https://twitter.com/<your_twitter_handle>/status/\(.id)"
}] | sort_by(.retweets)[-10:]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment