 Several times already on Habré wrote karmatrekery - showing the change of karma on the chart. The most famous and lively so far - Habrometer . However, for my purposes, it was not quite suitable - the survey was too rare, once a day (however, in accordance with the old rules for using the Habr API, a mass survey with a higher frequency is difficult).
 Several times already on Habré wrote karmatrekery - showing the change of karma on the chart. The most famous and lively so far - Habrometer . However, for my purposes, it was not quite suitable - the survey was too rare, once a day (however, in accordance with the old rules for using the Habr API, a mass survey with a higher frequency is difficult).
#!/usr/bin/php <?php error_reporting(0); $username = "BarsMonster";//Change this to your username! if ((count($argv) > 1) && ($argv[1] == 'config')) { print("graph_title KarmaGraph $username graph_category web graph_vlabel # karma.label Karma rating.label Rating "); exit(); } $xml = new SimpleXMLElement(file_get_contents("http://habrahabr.ru/api/profile/$username/")); print('karma.value ' . $xml->karma . "\n"); print('rating.value ' . $xml->rating . "\n"); ?> Source: https://habr.com/ru/post/218681/
All Articles