<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Night Dreaming (by Sudar) &#187; API&#8217;s/Mashup</title>
	<atom:link href="http://sudarmuthu.com/blog/category/api/feed" rel="self" type="application/rss+xml" />
	<link>http://sudarmuthu.com</link>
	<description>WordPress, JavaScript, Android and some random stuff</description>
	<lastBuildDate>Sun, 11 Jul 2010 13:22:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Associating urls created with bit.ly API to your account</title>
		<link>http://sudarmuthu.com/blog/2009/08/21/associating-urls-created-with-bit-ly-api-to-your-account.html</link>
		<comments>http://sudarmuthu.com/blog/2009/08/21/associating-urls-created-with-bit-ly-api-to-your-account.html#comments</comments>
		<pubDate>Fri, 21 Aug 2009 00:51:27 +0000</pubDate>
		<dc:creator>Sudar</dc:creator>
				<category><![CDATA[API's/Mashup]]></category>
		<category><![CDATA[Javascript/jQuery]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[API's/Webservices]]></category>
		<category><![CDATA[Bit.ly]]></category>
		<category><![CDATA[ozh]]></category>

		<guid isPermaLink="false">http://sudarmuthu.com/blog/2009/08/21/associating-urls-created-with-bit-ly-api-to-your-account.html</guid>
		<description><![CDATA[Code samples to associating urls created with bit.ly API to your account. By default shorturls created using API is not associated with your account.]]></description>
			<content:encoded><![CDATA[<a href='http://sudarmuthu.com/blog/2009/08/21/associating-urls-created-with-bit-ly-api-to-your-account.html' class='retweet vert' startCount = '0' target = '_blank' >Associating urls created with bit.ly API to your account</a><p>Recently while working on adding the <a href="http://sudarmuthu.com/blog/2009/08/05/easy-retweet-now-supports-creating-shorturls-using-your-own-bit-ly-api-key.html">feature to enter your own bit.ly API key</a> to my <a href="http://sudarmuthu.com/wordpress/easy-retweet">Easy Retweet WordPress Plugin</a>, I found out that by default all short urls created using bit.ly API (both REST and JavaScript API’s) are not associated with your account.</p>
<p>Upon further researching I found that there is an undocumented way of associating the urls created with your account. The undocumented way is to add an additional parameter called <code>history</code> with value 1 to the API URL.</p>
<h3>Using the history parameter in bit.ly’s REST API</h3>
<p>So for <a href="http://code.google.com/p/bitly-api/wiki/ApiDocumentation">REST API</a>, you have to use the following url.</p>

<div class="wp_syntax"><div class="code"><pre class="mxl" style="font-family:monospace;">http://api.bit.ly/shorten?version=2.0.1&amp;longUrl=http://sudarmuthu.com&amp;login=bitlyapidemo&amp;apiKey=R_0da49e0a9118ff35f52f629d2d71bf07&amp;format=json&amp;history=1</pre></div></div>

<p>If you are using PHP, then code would be </p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> get_bitly_shorturl<span style="color: #009900;">&#40;</span><span style="color: #000088;">$longurl</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://api.bit.ly/shorten?version=2.0.1&amp;login=bitlyapidemo&amp;apiKey=R_0da49e0a9118ff35f52f629d2d71bf07&amp;format=json&amp;history=1&quot;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&amp;longurl=<span style="color: #006699; font-weight: bold;">$longurl</span>&quot;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">//using curl</span>
	<span style="color: #000088;">$curlObject</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curlObject</span><span style="color: #339933;">,</span>CURLOPT_URL<span style="color: #339933;">,</span><span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curlObject</span><span style="color: #339933;">,</span>CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curlObject</span><span style="color: #339933;">,</span>CURLOPT_HEADER<span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000088;">$result_json</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_exec</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curlObject</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">curl_close</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curlObject</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">//decode JSON. Assumes that it is PHP5</span>
	<span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #990000;">json_decode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result_json</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$result</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'results'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span>shortUrl<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>If you are going to use it in WordPress, then you can use the inbuilt WP_Http class instead of curl as <a href="http://planetozh.com/blog/2009/08/how-to-make-http-requests-with-wordpress/">suggested by Ozh</a>. The following code shows you how it can be done in WordPress </p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> get_bitly_shorturl<span style="color: #009900;">&#40;</span><span style="color: #000088;">$longurl</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://api.bit.ly/shorten?version=2.0.1&amp;login=bitlyapidemo&amp;apiKey=R_0da49e0a9118ff35f52f629d2d71bf07&amp;format=json&amp;history=1&quot;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&amp;longurl=<span style="color: #006699; font-weight: bold;">$longurl</span>&quot;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">//using WP_Http present in WordPress</span>
	<span style="color: #000088;">$request</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WP_Http<span style="color: #339933;">;</span>
	<span style="color: #000088;">$result_json</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$request</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">request</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #990000;">json_decode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result_json</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$result</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'results'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span>shortUrl<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<h3>Using the history parameter in bit.ly’s JavaScript API</h3>
<p>If you are using <a href="http://code.google.com/p/bitly-api/wiki/JavascriptClientApiDocumentation">bit.ly’s JavaScript API</a>, then it is not as straight forward as the REST API. Instead of using the provided <a href="http://code.google.com/p/bitly-api/wiki/JavascriptClientApiDocumentation#shorten">shorten method</a>, you have to use the low level <a href="http://code.google.com/p/bitly-api/wiki/JavascriptClientApiDocumentation#call">call method</a>.</p>
<p>The following code shows you how you can do it in JavaScript API.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">BitlyClient.<span style="color: #660066;">call</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'shorten'</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">'longUrl'</span><span style="color: #339933;">:</span><span style="color: #3366CC;">'http://sudarmuthu.com'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'history'</span><span style="color: #339933;">:</span><span style="color: #3366CC;">'1'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'BitlyCB.shortenResponse'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>I am not sure why bit.ly is not associating the created shorturls automatically with your account, when you provide the API Key, it is the expected default behavior. Or at least they could have documented about this history variable in their API. I guess only someone from bit.ly can answer this. <img src='http://sudarmuthu.com/wpfiles/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

	Tags: <a href="http://sudarmuthu.com/blog/tag/apiswebservices" title="API&#039;s/Webservices" rel="tag">API&#039;s/Webservices</a> | <a href="http://sudarmuthu.com/blog/tag/bit-ly" title="Bit.ly" rel="tag">Bit.ly</a> | <a href="http://sudarmuthu.com/blog/tag/ozh" title="ozh" rel="tag">ozh</a> | <a href="http://sudarmuthu.com/blog/tag/wordpress" title="WordPress" rel="tag">WordPress</a><br />

	<h3>Possibly Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://sudarmuthu.com/blog/2009/05/28/using-friendfeed-api-in-your-wordpress-plugin.html" title="Using FriendFeed API in your WordPress Plugin (May 28, 2009)">Using FriendFeed API in your WordPress Plugin</a> (May 28, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2009/10/07/lessons-from-wordpress-plugin-competition.html" title="Lessons from WordPress Plugin competition (Oct 7, 2009)">Lessons from WordPress Plugin competition</a> (Oct 7, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2009/07/13/adding-retweet-buttons-for-wordpress-posts.html" title="Adding retweet buttons for WordPress posts (Jul 13, 2009)">Adding retweet buttons for WordPress posts</a> (Jul 13, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2009/02/26/year-end-stats-for-2008.html" title="Year End Stats for 2008 (Feb 26, 2009)">Year End Stats for 2008</a> (Feb 26, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/01/02/year-end-stats-for-2007-graphs.html" title="Year End Stats for 2007 (Graphs) (Jan 2, 2008)">Year End Stats for 2007 (Graphs)</a> (Jan 2, 2008)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sudarmuthu.com/blog/2009/08/21/associating-urls-created-with-bit-ly-api-to-your-account.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Updated FeedBurner stats Google Gadget</title>
		<link>http://sudarmuthu.com/blog/2009/06/11/updated-feedburner-stats-google-gadget.html</link>
		<comments>http://sudarmuthu.com/blog/2009/06/11/updated-feedburner-stats-google-gadget.html#comments</comments>
		<pubDate>Thu, 11 Jun 2009 17:40:47 +0000</pubDate>
		<dc:creator>Sudar</dc:creator>
				<category><![CDATA[API's/Mashup]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[Google Gadgets]]></category>
		<category><![CDATA[stats]]></category>

		<guid isPermaLink="false">http://sudarmuthu.com/?p=592</guid>
		<description><![CDATA[Updated FeedBurner stats Google GadgetI have updated my FeedBurner stats Google Gadget, to change the API endpoint to feedburner.google.com. If you have already added the gadget to iGoogle or have embedded it in your web pages, the changes will apply automatically and you don’t need to change anything.
The Gadget ceased to work after Google changed [...]]]></description>
			<content:encoded><![CDATA[<a href='http://sudarmuthu.com/blog/2009/06/11/updated-feedburner-stats-google-gadget.html' class='retweet vert' startCount = '0' target = '_blank' >Updated FeedBurner stats Google Gadget</a><p>I have updated my <a title="FeedBurner stats Google Gadget" href="http://sudarmuthu.com/blog/2008/02/17/google-gadget-to-keep-track-of-your-feedburner-stats.html">FeedBurner stats Google Gadget</a>, to change the API endpoint to feedburner.google.com. If you have already added the gadget to iGoogle or have embedded it in your web pages, the changes will apply automatically and you don’t need to change anything.</p>
<p>The Gadget ceased to work after Google changed the API endpoint and it should continue to work after this change. </p>
<p>The full source code of this gadget is <a href="http://sudarmuthu.com/projects/google-gadgets/feedburner-stats.xml">available here</a> and if you are interested you can add it to your Google personalised page by clicking this button. <a href="http://fusion.google.com/add?moduleurl=http%3A//sudarmuthu.com/projects/google-gadgets/feedburner-stats.xml"><img border="0" alt="Add to Google" src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" /></a></p>
<p>Let me know if you still face any issues with the Gadget.</p>

	Tags: <a href="http://sudarmuthu.com/blog/tag/feedburner" title="FeedBurner" rel="tag">FeedBurner</a> | <a href="http://sudarmuthu.com/blog/tag/google-gadgets" title="Google Gadgets" rel="tag">Google Gadgets</a> | <a href="http://sudarmuthu.com/blog/tag/stats" title="stats" rel="tag">stats</a><br />

	<h3>Possibly Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://sudarmuthu.com/blog/2008/02/17/google-gadget-to-keep-track-of-your-feedburner-stats.html" title="Google Gadget to keep track of your FeedBurner stats (Feb 17, 2008)">Google Gadget to keep track of your FeedBurner stats</a> (Feb 17, 2008)</li>
	<li><a href="http://sudarmuthu.com/blog/2009/02/26/year-end-stats-for-2008.html" title="Year End Stats for 2008 (Feb 26, 2009)">Year End Stats for 2008</a> (Feb 26, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/01/02/year-end-stats-for-2007-graphs.html" title="Year End Stats for 2007 (Graphs) (Jan 2, 2008)">Year End Stats for 2007 (Graphs)</a> (Jan 2, 2008)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/01/01/year-end-stats-for-2007.html" title="Year End Stats for 2007 (Jan 1, 2008)">Year End Stats for 2007</a> (Jan 1, 2008)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/03/09/rotating-apache-log-files-using-cronolog.html" title="Rotating Apache log files using Cronolog (Mar 9, 2008)">Rotating Apache log files using Cronolog</a> (Mar 9, 2008)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sudarmuthu.com/blog/2009/06/11/updated-feedburner-stats-google-gadget.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>oAuth support in Twitter and WordPress 2.8</title>
		<link>http://sudarmuthu.com/blog/2009/03/29/oauth-support-in-twitter-and-wordpress-28.html</link>
		<comments>http://sudarmuthu.com/blog/2009/03/29/oauth-support-in-twitter-and-wordpress-28.html#comments</comments>
		<pubDate>Sun, 29 Mar 2009 14:34:49 +0000</pubDate>
		<dc:creator>Sudar</dc:creator>
				<category><![CDATA[API's/Mashup]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[oAuth]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://sudarmuthu.com/?p=479</guid>
		<description><![CDATA[oAuth support in Twitter and WordPress 2.8After waiting for more than two years, Twitter has finally enabled support for oAuth to all developers using its API. It’s a great move and it’s a win-win situation both for the developers and also for Twitter users. Going forward, the Twitter third-party developers need not ask Twitter users [...]]]></description>
			<content:encoded><![CDATA[<a href='http://sudarmuthu.com/blog/2009/03/29/oauth-support-in-twitter-and-wordpress-28.html' class='retweet vert' startCount = '0' target = '_blank' >oAuth support in Twitter and WordPress 2.8</a><p>After <a href="http://twitter.com/sudarmuthu/status/1289502821">waiting for more than two years</a>, Twitter has finally enabled support for <a href="http://www.techcrunch.com/2009/03/16/twitters-oauth-support-now-in-public-beta/">oAuth to all developers using its API</a>. It’s a great move and it’s a win-win situation both for the developers and also for Twitter users. Going forward, the Twitter third-party developers need not ask Twitter users for their username and password.</p>
<p>For the uninitiated, <a href="http://oauth.net/">oAuth is an open protocol</a> for online authentication. It enables a user who stores information such as a password on a particular Web site to then authorize yet another site to access that data, all the while not sharing the user&#8217;s identity with that site.</p>
<p>To give you a real-world non-technical example, it is like a car valet key, given to a parking assistant. Valet key unlike the original key, will have lot of restrictions like you cannot drive beyond few kilometers or cannot go beyond a particular speed etc.</p>
<p>In a similar move, WordPress 2.8 will also enable support for oAuth. Will Norris, has published an article explaining how <a href="http://willnorris.com/2009/03/authentication-in-wordpress-28">oAuth is planned to be implemented in WordPress 2.8</a>. There are yet some limitations (oAuth libraries need PHP5) but it’s a great start.</p>
<p>If you are a WordPress Plugin author of any Plugin that hooks into authentication then you may have to change your Plugin code to support oAuth.</p>
<p>I am really excited about the support for oAuth in Twitter and WordPress. I need to play with them a little once I get some free time. <img src='http://sudarmuthu.com/wpfiles/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

	Tags: <a href="http://sudarmuthu.com/blog/tag/oauth" title="oAuth" rel="tag">oAuth</a> | <a href="http://sudarmuthu.com/blog/tag/twitter" title="Twitter" rel="tag">Twitter</a> | <a href="http://sudarmuthu.com/blog/tag/wordpress" title="WordPress" rel="tag">WordPress</a><br />

	<h3>Possibly Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://sudarmuthu.com/blog/2008/07/01/list-of-friendfeed-users-who-talk-about-wordpress.html" title="List of FriendFeed users who talk about WordPress (Jul 1, 2008)">List of FriendFeed users who talk about WordPress</a> (Jul 1, 2008)</li>
	<li><a href="http://sudarmuthu.com/blog/2010/03/16/display-twitter-profile-image-instead-of-gravatar-in-wordpress-comments.html" title="Display Twitter profile image instead of Gravatar in WordPress comments (Mar 16, 2010)">Display Twitter profile image instead of Gravatar in WordPress comments</a> (Mar 16, 2010)</li>
	<li><a href="http://sudarmuthu.com/blog/2009/02/26/year-end-stats-for-2008.html" title="Year End Stats for 2008 (Feb 26, 2009)">Year End Stats for 2008</a> (Feb 26, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/01/02/year-end-stats-for-2007-graphs.html" title="Year End Stats for 2007 (Graphs) (Jan 2, 2008)">Year End Stats for 2007 (Graphs)</a> (Jan 2, 2008)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/01/01/year-end-stats-for-2007.html" title="Year End Stats for 2007 (Jan 1, 2008)">Year End Stats for 2007</a> (Jan 1, 2008)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sudarmuthu.com/blog/2009/03/29/oauth-support-in-twitter-and-wordpress-28.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Gadget to keep track of your FeedBurner stats</title>
		<link>http://sudarmuthu.com/blog/2008/02/17/google-gadget-to-keep-track-of-your-feedburner-stats.html</link>
		<comments>http://sudarmuthu.com/blog/2008/02/17/google-gadget-to-keep-track-of-your-feedburner-stats.html#comments</comments>
		<pubDate>Sun, 17 Feb 2008 11:52:56 +0000</pubDate>
		<dc:creator>Sudar</dc:creator>
				<category><![CDATA[API's/Mashup]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[Google Charts]]></category>
		<category><![CDATA[Google Gadgets]]></category>
		<category><![CDATA[stats]]></category>

		<guid isPermaLink="false">http://sudarmuthu.com/blog/2008/02/17/google-gadget-to-keep-track-of-your-feedburner-stats.html</guid>
		<description><![CDATA[A Google Gadget which display the number of subscribers of your FeedBurner feed in the past one week]]></description>
			<content:encoded><![CDATA[<a href='http://sudarmuthu.com/blog/2008/02/17/google-gadget-to-keep-track-of-your-feedburner-stats.html' class='retweet vert' startCount = '0' target = '_blank' >Google Gadget to keep track of your FeedBurner stats</a><p><img src="http://sudarmuthu.com/projects/google-gadgets/feedburner-stats.jpg" alt="FeedBurner Stats Google Gadget" title="FeedBurner Stats Google Gadget" align="right" />I had some free time this weekend and I used it to create my second Google Gadget called called <a href="http://sudarmuthu.com/projects/google-gadgets/feedburner-stats.xml">FeedBurner stats</a>. (By the way my <a href="http://sudarmuthu.com/blog/2006/11/04/bloglines-notifier-my-first-google-gadget.html" title="Bloglines Notifier - Google Gadget">first gadget was Bloglines Notifier</a>, which notifies the count of unread items in your Bloglines account). It uses FeedBurner Awareness API to fetch the subscriber count of your FeedBurner feed and displays it using Google Charts API.</p>
<p>The full source code of this gadget is <a href="http://sudarmuthu.com/projects/google-gadgets/feedburner-stats.xml">available here</a> and if you are interested you can add it to your Google personalised page by clicking this button. <a href="http://fusion.google.com/add?moduleurl=http%3A//sudarmuthu.com/projects/google-gadgets/feedburner-stats.xml"><img src="http://buttons.googlesyndication.com/fusion/add.gif" alt="Add to Google" border="0" height="17" width="104" /></a></p>
<p>After you add the gadget, you just need to enter your FeedBurner feed URL. The gadget will fetch the subscriber count for the past one week and will display it in a nice bar graph using Google Charts API.</p>
<h3>API&#8217;s used</h3>
<p>The following are the API&#8217;s used for creating this gadget</p>
<ul>
<li><a href="http://code.google.com/apis/gadgets/docs/dev_guide.html">Google Gadget API</a></li>
<li><a href="http://code.google.com/apis/feedburner/awareness_api.html">FeedBurner Awareness API</a></li>
<li><a href="http://code.google.com/apis/chart/">Google Charts API</a></li>
</ul>

	Tags: <a href="http://sudarmuthu.com/blog/tag/feedburner" title="FeedBurner" rel="tag">FeedBurner</a> | <a href="http://sudarmuthu.com/blog/tag/google-charts" title="Google Charts" rel="tag">Google Charts</a> | <a href="http://sudarmuthu.com/blog/tag/google-gadgets" title="Google Gadgets" rel="tag">Google Gadgets</a> | <a href="http://sudarmuthu.com/blog/tag/stats" title="stats" rel="tag">stats</a><br />

	<h3>Possibly Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://sudarmuthu.com/blog/2009/06/11/updated-feedburner-stats-google-gadget.html" title="Updated FeedBurner stats Google Gadget (Jun 11, 2009)">Updated FeedBurner stats Google Gadget</a> (Jun 11, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/01/02/year-end-stats-for-2007-graphs.html" title="Year End Stats for 2007 (Graphs) (Jan 2, 2008)">Year End Stats for 2007 (Graphs)</a> (Jan 2, 2008)</li>
	<li><a href="http://sudarmuthu.com/blog/2009/02/26/year-end-stats-for-2008.html" title="Year End Stats for 2008 (Feb 26, 2009)">Year End Stats for 2008</a> (Feb 26, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/01/01/year-end-stats-for-2007.html" title="Year End Stats for 2007 (Jan 1, 2008)">Year End Stats for 2007</a> (Jan 1, 2008)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/03/09/rotating-apache-log-files-using-cronolog.html" title="Rotating Apache log files using Cronolog (Mar 9, 2008)">Rotating Apache log files using Cronolog</a> (Mar 9, 2008)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sudarmuthu.com/blog/2008/02/17/google-gadget-to-keep-track-of-your-feedburner-stats.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Year End Stats for 2007 (Graphs)</title>
		<link>http://sudarmuthu.com/blog/2008/01/02/year-end-stats-for-2007-graphs.html</link>
		<comments>http://sudarmuthu.com/blog/2008/01/02/year-end-stats-for-2007-graphs.html#comments</comments>
		<pubDate>Wed, 02 Jan 2008 18:20:55 +0000</pubDate>
		<dc:creator>Sudar</dc:creator>
				<category><![CDATA[API's/Mashup]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Google Charts]]></category>
		<category><![CDATA[stats]]></category>

		<guid isPermaLink="false">http://sudarmuthu.com/blog/2008/01/02/year-end-stats-for-2007-graphs.html</guid>
		<description><![CDATA[Year End Stats for 2007 (Graphs)When I published my year end stats, little did I know that numbers alone doesn&#8217;t matter much, unless they are presented in an easily-to understand manner.
So here I am representing the same numbers but in a much more understandable manner, with some support from the excellent Google Chart API, which [...]]]></description>
			<content:encoded><![CDATA[<a href='http://sudarmuthu.com/blog/2008/01/02/year-end-stats-for-2007-graphs.html' class='retweet vert' startCount = '0' target = '_blank' >Year End Stats for 2007 (Graphs)</a><p>When I <a href="http://sudarmuthu.com/blog/2008/01/01/year-end-stats-for-2007.html">published my year end stats</a>, little did I know that numbers alone doesn&#8217;t matter much, unless they are presented in an easily-to understand manner.</p>
<p>So here I am representing the same numbers but in a much more understandable manner, with some support from the excellent<a href="http://code.google.com/apis/chart/"> Google Chart API</a>, which I learned during <a href="http://sudarmuthu.com/blog/2007/12/24/back-from-pipescamp.html">pipesCamp</a>.</p>
<h3>Number of posts</h3>
<p align="center"><img src="http://chart.apis.google.com/chart?cht=bvg&amp;chs=300x200&amp;%20&amp;chxt=x,y&amp;chd=s:Q54h&amp;chxl=0:|2004|2005|2006|2007|1:|0|70" align="middle" /></p>
<p>You could see that the number of posts has almost dropped by 40% in 2007. There were 64 posts in 2006 where as only 38 in 2007. One reason for this is that lot of unexpected things happened in my personal life which took me away from the computer and the other reason is that I got busy and free time became a rare commodity for me. So this is an area where I should improve.</p>
<h3>Number of comments</h3>
<p align="center"><img src="http://chart.apis.google.com/chart?cht=bvg&amp;chs=300x200&amp;%20&amp;chxt=x,y&amp;chd=s:AY8i&amp;chxl=0:|2004|2005|2006|2007|1:|0|400" align="middle" /></p>
<p>Again, as with the number of posts, the number of comments was also less by around 40%. There were 394 comments in 2006 but only 220 in 2007. This also includes my own comments; maybe I should represent my comments separately.</p>
<h3>Average number of characters in posts</h3>
<p align="center"><img src="http://chart.apis.google.com/chart?cht=bvg&amp;chs=300x200&amp;%20&amp;chxt=x,y&amp;chd=s:Gbk8&amp;chxl=0:|2004|2005|2006|2007|1:|0|3100" align="middle" /></p>
<p>This graph clearly shows that average number of characters in my posts. Even though I have written fewer posts in 2007, the average number of characters has increased, which is good (which also means that I have become very talkative <img src='http://sudarmuthu.com/wpfiles/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ). This is very good and is also motivating. In 2008 I should keep up the length of the posts and at the same time should also try to increase their number.</p>
<h3>Total number of characters in posts</h3>
<p align="center"><img src="http://chart.apis.google.com/chart?cht=bvg&amp;chs=300x200&amp;%20&amp;chxt=x,y&amp;chd=s:Ct77&amp;chxl=0:|2004|2005|2006|2007|1:|0|120000" align="middle" /></p>
<p>This graph clearly shows that even though I have written fewer posts, I have almost written the same amount of characters in 2007 when compared with 2006, which is again motivating.</p>
<p>I have really become addicted to stats now and will try to dig more deep into my blog to unearth other valuable information when I get some time. This explains why everybody was soo fascinated by <a href="http://blog.yuvisense.net/2007/10/11/statbot-techcrunch-data-analysis/">Yuvi&#8217;s cool graphs</a>.</p>
<p>Meanwhile you can also publish your yearend stats by using my <a href="http://sudarmuthu.com/wordpress/wp-year-end-stats">Year End Stats WordPress Plugin</a>. So what does your yearend stats speak about your blogging habit? Please leave a link to your yearend stats in the comments so that I can have a look at it.</p>
<p><em><strong>PS</strong>: I would really love to see how Yuvi has scaled up this year. May be Yuvi, do it when you find time in <a href="http://blog.yuvisense.net/2007/12/14/hibernation/">between your exams</a>.</em></p>

	Tags: <a href="http://sudarmuthu.com/blog/tag/google-charts" title="Google Charts" rel="tag">Google Charts</a> | <a href="http://sudarmuthu.com/blog/tag/stats" title="stats" rel="tag">stats</a> | <a href="http://sudarmuthu.com/blog/tag/wordpress" title="WordPress" rel="tag">WordPress</a><br />

	<h3>Possibly Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://sudarmuthu.com/blog/2009/02/26/year-end-stats-for-2008.html" title="Year End Stats for 2008 (Feb 26, 2009)">Year End Stats for 2008</a> (Feb 26, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/01/01/year-end-stats-for-2007.html" title="Year End Stats for 2007 (Jan 1, 2008)">Year End Stats for 2007</a> (Jan 1, 2008)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/12/28/integrate-open-flash-chart-libraries-with-your-wordpress-plugin.html" title="Integrate Open Flash Chart libraries with your WordPress Plugin (Dec 28, 2008)">Integrate Open Flash Chart libraries with your WordPress Plugin</a> (Dec 28, 2008)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/02/17/google-gadget-to-keep-track-of-your-feedburner-stats.html" title="Google Gadget to keep track of your FeedBurner stats (Feb 17, 2008)">Google Gadget to keep track of your FeedBurner stats</a> (Feb 17, 2008)</li>
	<li><a href="http://sudarmuthu.com/blog/2008/12/30/year-end-stats-03.html" title="Year End Stats 0.3 (Dec 30, 2008)">Year End Stats 0.3</a> (Dec 30, 2008)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sudarmuthu.com/blog/2008/01/02/year-end-stats-for-2007-graphs.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Back from pipesCamp</title>
		<link>http://sudarmuthu.com/blog/2007/12/24/back-from-pipescamp.html</link>
		<comments>http://sudarmuthu.com/blog/2007/12/24/back-from-pipescamp.html#comments</comments>
		<pubDate>Mon, 24 Dec 2007 08:21:54 +0000</pubDate>
		<dc:creator>Sudar</dc:creator>
				<category><![CDATA[API's/Mashup]]></category>
		<category><![CDATA[Events/Camps]]></category>
		<category><![CDATA[Pipes]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://sudarmuthu.com/blog/2007/12/24/back-from-pipescamp.html</guid>
		<description><![CDATA[Back from pipesCampAs planned, I attended pipesCamp yesterday and it was really worth the time spent. As planned, I took Yuvi with me and he started to click his camera on the way itself, and he got some 35 &#8211; 40 snaps before we could reach there. (Yuvi, I know that your computer has crashed, [...]]]></description>
			<content:encoded><![CDATA[<a href='http://sudarmuthu.com/blog/2007/12/24/back-from-pipescamp.html' class='retweet vert' startCount = '0' target = '_blank' >Back from pipesCamp</a><p>As <a href="http://sudarmuthu.com/blog/2007/12/21/pipescamp.html">planned</a>, I attended pipesCamp yesterday and it was really worth the time spent. As planned, I took <a href="http://blog.yuvisense.net">Yuvi</a> with me and he started to click his camera on the way itself, and he got some 35 &#8211; 40 snaps before we could reach there. (Yuvi, I know that your computer has crashed, but I am waiting for your photos to appear in Flickr as soon as possible. <img src='http://sudarmuthu.com/wpfiles/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  )</p>
<p>I meet lot of cool people there and true to the unconference style we had a <a href="http://www.slideshare.net/narain/proto-premier-startup-event-in-india/">couple</a> <a href="http://www.slideshare.net/narain/mashups-mindshare-and-money">of</a> <a href="http://www.slideshare.net/desistartups/pipes-on-iphone-prabhus-talk-during-pipescamp-2007-at-chennai/">presentations</a> about Yahoo Pipes (and some slides from the official Yahoo pipes team itself) and then some open discussions about pipes and blogging in general.</p>
<p>Then towards the end of the day we had &#8220;<a href="http://en.wikipedia.org/wiki/Open_Hack_Day">hackday</a>&#8221; kind of competition and we were given 60 minutes to design/code a pipe and then 3 minutes to demonstrate the demo. Myself, <a href="http://blog.yuvisense.net">Yuvi</a> and <a href="http://www.harishpalaniappan.com/blog/archives/a_pipescamp.html">Harish</a> got together and created a pipe called &#8220;<a href="http://pipes.yahoo.com/sudar/egosearch">Ego Search</a>&#8220;. (Harish, thanks for the laptop <img src='http://sudarmuthu.com/wpfiles/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<p>Ego Search is a pipe for finding out how popular you are on the web, based on search results from popular search engines. The popularity chart is drawn based on the number of search results that point to your blog or domain name for your name.  And if your name is say &#8216;xyz&#8217;, a 100 point popularity rating on the graph says that you are the most populous &#8216;xyz&#8217; that the search engine knows. You can try out the pipe in this url <a href="http://pipes.yahoo.com/sudar/egosearch">http://pipes.yahoo.com/sudar/egosearch</a>. We also had some great pipes like <a href="http://pipes.yahoo.com/siddhi/mtcmashup">MTC Mashup</a> created by other cool people.</p>
<p>On the whole the first ever pipesCamp went very well. I will post links to photos and videos once they are available.</p>
<p>By the way anyone planning for the first ever <a href="http://2007.wordcamp.org/">WordCamp</a> in India?</p>

	Tags: <a href="http://sudarmuthu.com/blog/tag/events" title="Events/Camps" rel="tag">Events/Camps</a> | <a href="http://sudarmuthu.com/blog/tag/pipes" title="Pipes" rel="tag">Pipes</a> | <a href="http://sudarmuthu.com/blog/tag/yahoo" title="Yahoo" rel="tag">Yahoo</a><br />

	<h3>Possibly Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://sudarmuthu.com/blog/2008/01/05/yahoo-pipes-team-writes-about-pipescamp.html" title="Yahoo Pipes Team writes about pipesCamp (Jan 5, 2008)">Yahoo Pipes Team writes about pipesCamp</a> (Jan 5, 2008)</li>
	<li><a href="http://sudarmuthu.com/blog/2007/12/21/pipescamp.html" title="pipesCamp (Dec 21, 2007)">pipesCamp</a> (Dec 21, 2007)</li>
	<li><a href="http://sudarmuthu.com/blog/2009/02/05/yahoo-open-hack-day-2009.html" title="Yahoo Open Hack day 2009 (Feb 5, 2009)">Yahoo Open Hack day 2009</a> (Feb 5, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2005/12/19/yahoo-has-got-its-majo-back.html" title="Yahoo has got its Majo back (Dec 19, 2005)">Yahoo has got its Majo back</a> (Dec 19, 2005)</li>
	<li><a href="http://sudarmuthu.com/blog/2006/03/09/why-no-ajax.html" title="Why no AJAX? (Mar 9, 2006)">Why no AJAX?</a> (Mar 9, 2006)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sudarmuthu.com/blog/2007/12/24/back-from-pipescamp.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Bloglines Notifier &#8211; My First Google Gadget</title>
		<link>http://sudarmuthu.com/blog/2006/11/04/bloglines-notifier-my-first-google-gadget.html</link>
		<comments>http://sudarmuthu.com/blog/2006/11/04/bloglines-notifier-my-first-google-gadget.html#comments</comments>
		<pubDate>Sat, 04 Nov 2006 15:52:30 +0000</pubDate>
		<dc:creator>Sudar</dc:creator>
				<category><![CDATA[API's/Mashup]]></category>
		<category><![CDATA[API's/Webservices]]></category>
		<category><![CDATA[Bloglines]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Gadgets]]></category>
		<category><![CDATA[Notifier]]></category>

		<guid isPermaLink="false">http://sudarmuthu.com/blog/2006/11/04/bloglines-notifier-my-first-google-gadget.html</guid>
		<description><![CDATA[Bloglines Notifier - A Google Gadget to notify you the count of unread items in your Bloglines account]]></description>
			<content:encoded><![CDATA[<a href='http://sudarmuthu.com/blog/2006/11/04/bloglines-notifier-my-first-google-gadget.html' class='retweet vert' startCount = '0' target = '_blank' >Bloglines Notifier &#8211; My First Google Gadget</a><p><img src="http://sudarmuthu.com/projects/bloglinesnotifier.png" alt="Bloglines Notifier Google Gadget" title="Bloglines Notifier Google Gadget" align="right" />I didn&#8217;t have much to do last weekend and so I thought of giving a try to Google Gadget and ended up developing my first <a href="http://sudarmuthu.com/projects/bloglinesnotifier.xml">Google Gadget &#8211; Bloglines Notifier</a>. As the name implies it will notify you the count of unread items in your Bloglines account. (Nothing special just a trivial one <img src='http://sudarmuthu.com/wpfiles/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  )</p>
<p>You need to enter your Bloglines account email id and it will retrieve the unread count using the Bloglines API and display it in the Gadget screen. The count will be automatically refreshed according to the interval set in the Gadget settings. Since Bloglines doesn&#8217;t need you to be authenticated before retrieving the unread count you don&#8217;t need to enter your Bloglines account password.</p>
<p>The Google Gadget API is very simple to start with but at the same time very powerful if you need to do complex or advanced things. If you are interested grab the <a href="http://www.google.com/apis/homepage/guide1.html" target="_blank">Google Gadget API Developers Guide</a> and get started. It&#8217;s actually that simple.</p>
<p>The full source code of this Gadget is <a href="http://sudarmuthu.com/projects/bloglinesnotifier.xml">available here</a> and if you are interested you can add it to your personalized page by clicking this button. <a href="http://fusion.google.com/add?moduleurl=http%3A//sudarmuthu.com/projects/bloglinesnotifier.xml"><img src="http://buttons.googlesyndication.com/fusion/add.gif" alt="Add to Google" border="0" height="17" width="104" /></a></p>
<p>Now I can have one icon less in my system tray. <img src='http://sudarmuthu.com/wpfiles/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  BTW if you guys have a nice idea for a Gadget, let me know I shall give a try.</p>
<p><strong>Resources Used</strong></p>
<ul>
<li><a href="http://www.google.com/apis/homepage/guide1.html" target="_blank">Google Gadget API Developer Guide</a></li>
<li><a href="http://www.bloglines.com/services/api/notifier" target="_blank">Bloglines Developer API</a></li>
</ul>

	Tags: <a href="http://sudarmuthu.com/blog/tag/apiswebservices" title="API&#039;s/Webservices" rel="tag">API&#039;s/Webservices</a> | <a href="http://sudarmuthu.com/blog/tag/bloglines" title="Bloglines" rel="tag">Bloglines</a> | <a href="http://sudarmuthu.com/blog/tag/gadgets" title="Gadgets" rel="tag">Gadgets</a> | <a href="http://sudarmuthu.com/blog/tag/google" title="Google" rel="tag">Google</a> | <a href="http://sudarmuthu.com/blog/tag/google-gadgets" title="Google Gadgets" rel="tag">Google Gadgets</a> | <a href="http://sudarmuthu.com/blog/tag/notifier" title="Notifier" rel="tag">Notifier</a><br />

	<h3>Possibly Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://sudarmuthu.com/blog/2009/05/28/using-friendfeed-api-in-your-wordpress-plugin.html" title="Using FriendFeed API in your WordPress Plugin (May 28, 2009)">Using FriendFeed API in your WordPress Plugin</a> (May 28, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2009/06/11/updated-feedburner-stats-google-gadget.html" title="Updated FeedBurner stats Google Gadget (Jun 11, 2009)">Updated FeedBurner stats Google Gadget</a> (Jun 11, 2009)</li>
	<li><a href="http://sudarmuthu.com/blog/2007/04/21/thanks-you-google-and-linux.html" title="Thank You Google and Linux (Apr 21, 2007)">Thank You Google and Linux</a> (Apr 21, 2007)</li>
	<li><a href="http://sudarmuthu.com/blog/2006/06/07/suggest-me-some-features-to-compare-online-spreadsheets.html" title="Suggest me some features to compare online spreadsheets (Jun 7, 2006)">Suggest me some features to compare online spreadsheets</a> (Jun 7, 2006)</li>
	<li><a href="http://sudarmuthu.com/blog/2005/04/06/some-useful-certification-groups.html" title="Some useful Certification Groups (Apr 6, 2005)">Some useful Certification Groups</a> (Apr 6, 2005)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sudarmuthu.com/blog/2006/11/04/bloglines-notifier-my-first-google-gadget.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>King Ping has a new logo</title>
		<link>http://sudarmuthu.com/blog/2005/07/29/king-ping-has-a-new-logo.html</link>
		<comments>http://sudarmuthu.com/blog/2005/07/29/king-ping-has-a-new-logo.html#comments</comments>
		<pubDate>Fri, 29 Jul 2005 06:16:00 +0000</pubDate>
		<dc:creator>Sudar</dc:creator>
				<category><![CDATA[API's/Mashup]]></category>
		<category><![CDATA[KingPing]]></category>

		<guid isPermaLink="false">http://sudarmuthu.com/blog/archives/60</guid>
		<description><![CDATA[King Ping has a new logoThanks to Wes (Trafic Transit) King Ping now has a new logo now. The new logo looks cool and fits the design very much. Check out the logo at KPing.com.
Here is Fred&#8217;s comment about this.
Got a suggestion / Feedback / Comment / Feature Request, let us know we would be [...]]]></description>
			<content:encoded><![CDATA[<a href='http://sudarmuthu.com/blog/2005/07/29/king-ping-has-a-new-logo.html' class='retweet vert' startCount = '0' target = '_blank' >King Ping has a new logo</a><p>Thanks to Wes (<a href="http://traffictransit.com/">Trafic Transit</a>) <a href="http://kping.com/">King Ping</a> now has a new logo now. The new logo looks cool and fits the design very much. Check out the logo at KPing.com.</p>
<p>Here is <a href="http://fgiasson.com/blog/index.php?title=king_ping_2_0_new_user_interface_new_dom&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1#c279">Fred&#8217;s comment</a> about this.</p>
<p>Got a suggestion / Feedback / Comment / Feature Request, let us know we would be glad to hear that from you.</p>

	Tags: <a href="http://sudarmuthu.com/blog/tag/kingping" title="KingPing" rel="tag">KingPing</a><br />

	<h3>Possibly Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://sudarmuthu.com/blog/2005/07/26/king-ping-has-started-to-ping.html" title="King Ping has started to ping (Jul 26, 2005)">King Ping has started to ping</a> (Jul 26, 2005)</li>
	<li><a href="http://sudarmuthu.com/blog/2005/09/11/interview-with-kamla.html" title="Interview with Kamla (Sep 11, 2005)">Interview with Kamla</a> (Sep 11, 2005)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sudarmuthu.com/blog/2005/07/29/king-ping-has-a-new-logo.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>King Ping has started to ping</title>
		<link>http://sudarmuthu.com/blog/2005/07/26/king-ping-has-started-to-ping.html</link>
		<comments>http://sudarmuthu.com/blog/2005/07/26/king-ping-has-started-to-ping.html#comments</comments>
		<pubDate>Tue, 26 Jul 2005 11:14:00 +0000</pubDate>
		<dc:creator>Sudar</dc:creator>
				<category><![CDATA[API's/Mashup]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[BlogTool]]></category>
		<category><![CDATA[KingPing]]></category>

		<guid isPermaLink="false">http://sudarmuthu.com/blog/archives/59</guid>
		<description><![CDATA[King Ping has started to pingLast week I asked you people to suggest some good AJAX libraries and I also gave you a hint, saying that I am currently working on a pet project. Ok now its time to reveal that pet project. It&#8217;s actually an AJAX version of a ping service hosted by Fred.
People [...]]]></description>
			<content:encoded><![CDATA[<a href='http://sudarmuthu.com/blog/2005/07/26/king-ping-has-started-to-ping.html' class='retweet vert' startCount = '0' target = '_blank' >King Ping has started to ping</a><p>Last week I <a href="http://sudarmuthu.com/blog/2005/07/14/ajax-library.html">asked you</a> people to suggest some good AJAX libraries and I also gave you a hint, saying that I am currently working on a pet project. Ok now its time to reveal that pet project. It&#8217;s actually an AJAX version of a ping service hosted by <a href="http://fgiasson.com/blog/">Fred</a>.</p>
<p>People at <a href="http://bloombergmarketing.blogs.com/bloomberg_marketing/2005/07/httpfgiassoncom.html">Diva Marketing helped us to get a good name</a> for our service and it was christened as King Ping. Currently it is pinging around 18 ping services and has its own domain at <a href="http://kping.com/">KPing.com</a>. More features to come. You could find more info about it, in the <a href="http://kping.com/pings/about.htm">about page</a>.</p>
<p>So guys have a look at the <a href="http://kping.com/">King Ping</a> and do let me know your suggestions, comments, feedbacks or feature requests. You can either leave them here or at <a href="http://fgiasson.com/blog/index.php?title=king_ping_2_0_new_user_interface_new_dom&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">Fred&#8217;s Blog</a> or drop me an email</p>
<p>Happing Pinging  <img src='http://sudarmuthu.com/wpfiles/wp-includes/images/smilies/icon_biggrin.gif' alt=':grin:' class='wp-smiley' /> </p>
<p>PS: If you blog about King Ping then tag them with &#8220;<a href="http://technorati.com/tags/kingping">KingPing</a>&#8220;</p>

	Tags: <a href="http://sudarmuthu.com/blog/tag/ajax" title="AJAX" rel="tag">AJAX</a> | <a href="http://sudarmuthu.com/blog/tag/blogtool" title="BlogTool" rel="tag">BlogTool</a> | <a href="http://sudarmuthu.com/blog/tag/kingping" title="KingPing" rel="tag">KingPing</a><br />

	<h3>Possibly Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://sudarmuthu.com/blog/2006/03/09/why-no-ajax.html" title="Why no AJAX? (Mar 9, 2006)">Why no AJAX?</a> (Mar 9, 2006)</li>
	<li><a href="http://sudarmuthu.com/blog/2005/07/29/king-ping-has-a-new-logo.html" title="King Ping has a new logo (Jul 29, 2005)">King Ping has a new logo</a> (Jul 29, 2005)</li>
	<li><a href="http://sudarmuthu.com/blog/2005/09/11/interview-with-kamla.html" title="Interview with Kamla (Sep 11, 2005)">Interview with Kamla</a> (Sep 11, 2005)</li>
	<li><a href="http://sudarmuthu.com/blog/2006/02/19/happy-birthday-ajax.html" title="Happy Birthday, AJAX (Feb 19, 2006)">Happy Birthday, AJAX</a> (Feb 19, 2006)</li>
	<li><a href="http://sudarmuthu.com/blog/2005/07/14/ajax-library.html" title="AJAX Library (Jul 14, 2005)">AJAX Library</a> (Jul 14, 2005)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sudarmuthu.com/blog/2005/07/26/king-ping-has-started-to-ping.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>
