Skip to content

Instantly share code, notes, and snippets.

@cheeaun
Last active November 18, 2018 15: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 cheeaun/8cdbfe60149b145a3adbd3a3afc45133 to your computer and use it in GitHub Desktop.
Save cheeaun/8cdbfe60149b145a3adbd3a3afc45133 to your computer and use it in GitHub Desktop.
One-liner command to grab rain radar snapshot in ASCII format from https://checkweather.sg
node -e "require('https').get('https://api.checkweather.sg/now?ascii=1', res => res.on('data', d => process.stdout.write(d + '\n\n')))"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment