Skip to content

Instantly share code, notes, and snippets.

@rogeriopvl
Created January 10, 2011 22:38
Show Gist options
  • Save rogeriopvl/773611 to your computer and use it in GitHub Desktop.
Save rogeriopvl/773611 to your computer and use it in GitHub Desktop.
Reads tweets containing given keyword using the OSX text to speech
<?php
/**
* Reads tweets containing given keyword using the OSX text to speech
*/
if (!isset($argv[1])) { exit ("Search keyword needed.\n"); }
$username = TWITTER_USERNAME;
$password = TWITTER_PASSWORD;
$keyword = $argv[1];
$fp = fopen("http://$username:[email protected]/1/statuses/filter.json?track=$keyword", 'r');
while($data = fgets($fp))
{
$tw = json_decode($data, true);
$user = $tw['user']['screen_name'];
$tweet = $tw['text'];
echo (escapeshellcmd("$user says: $tweet\n"));
exec (escapeshellcmd("say $user says: $tweet"));
}
fclose($fp);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment