#!/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");
?>
