Skip to content

Instantly share code, notes, and snippets.

@jfarmer
Last active December 5, 2020 21:12
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 jfarmer/6ddb1a9d629a4bd78a4f856efa362ef6 to your computer and use it in GitHub Desktop.
Save jfarmer/6ddb1a9d629a4bd78a4f856efa362ef6 to your computer and use it in GitHub Desktop.
Create PNG of yesterday's NYTimes homepage
# The -1d in the date command means yesterday, so, e.g., -2d would be two days ago
# Change the output file extension if you want another image type
# "-resize 1440x" resizes to 1440px wide while preserving aspect ratio
curl "https://static01.nyt.com/images/$(date -v -1d +"%Y/%m/%d")/nytfrontpage/scan.pdf" | convert -density 600x600 -antialias - -resize 1440x -quality 100 "output_file_name.png" nyt_homepage_yesterday.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment