This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Plots a user's daily tweet count using Google Chart Tools | |
// Limited to about 3200 tweets by the Twitter API | |
// Hacked together by @tmdpw on 2012-05-30 | |
if (count($argv) != 3) { | |
die("Usage: php $argv[0] USERNAME FILENAME"); | |
} |
NewerOlder