Skip to content

Instantly share code, notes, and snippets.

@mheadd
Created September 11, 2014 17:25
Show Gist options
  • Save mheadd/d8a906f11dd1826755e6 to your computer and use it in GitHub Desktop.
Save mheadd/d8a906f11dd1826755e6 to your computer and use it in GitHub Desktop.
A phone application to get the current Rivercast status on the Schuylkill River
<?php
answer();
$rivercast = json_decode(file_get_contents("http://apify.heroku.com/api/rivercast.json"));
say("Hello.");
say("The current river cast on the Skew kill river is, " . $rivercast[0]->status . ".");
say("Happy recreating!");
say("Goodbye.");
hangup();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment