<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Random Something</title>
	<atom:link href="http://randomsomething.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://randomsomething.wordpress.com</link>
	<description>Get learning guys.</description>
	<lastBuildDate>Wed, 17 Feb 2010 04:35:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='randomsomething.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/efe73afe1801db27765e9f7b2db4829e?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Random Something</title>
		<link>http://randomsomething.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://randomsomething.wordpress.com/osd.xml" title="Random Something" />
	<atom:link rel='hub' href='http://randomsomething.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Using ChartLyrics API</title>
		<link>http://randomsomething.wordpress.com/2010/02/16/using-chartlyrics-api/</link>
		<comments>http://randomsomething.wordpress.com/2010/02/16/using-chartlyrics-api/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 04:35:18 +0000</pubDate>
		<dc:creator>airefall</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://randomsomething.wordpress.com/?p=6</guid>
		<description><![CDATA[As promised, here is my tutorial on using ChartLyric&#8217;s API on accessing lyrics programatically. I&#8217;ll be using C# but any language with some XML and HTTP support would work. I first present you with the api page for ChartLyrics: http://www.chartlyrics.com/api.aspx For simplicity reason, I&#8217;ll be using simple HTTP Get requests. One of their ways of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=randomsomething.wordpress.com&amp;blog=4437999&amp;post=6&amp;subd=randomsomething&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As promised, here is my tutorial on using ChartLyric&#8217;s API on accessing lyrics programatically. I&#8217;ll be using C# but any language with some XML and HTTP support would work.</p>
<p>I first present you with the api page for ChartLyrics: <a href="http://www.chartlyrics.com/api.aspx">http://www.chartlyrics.com/api.aspx</a></p>
<p>For simplicity reason, I&#8217;ll be using simple HTTP Get requests. One of their ways of getting the lyrics first start by using SearchLyric, which returns an id.</p>
<p>The url to request the id looks like this: <a href="http://api.chartlyrics.com/apiv1.asmx/SearchLyric?artist=michael%20jackson&amp;song=bad">http://api.chartlyrics.com/apiv1.asmx/SearchLyric?<strong>artist</strong>=<strong>string</strong>&amp;<strong>song</strong>=<strong>string</strong></a></p>
<p>For example, if I was to find the song &#8216;The Great Escape&#8217; by &#8216;Boys Like Girls&#8217;, then the url I would request looks like this:</p>
<p><a href="http://api.chartlyrics.com/apiv1.asmx/SearchLyric?artist=boys like girls&amp;song=the great escape"> http://api.chartlyrics.com/apiv1.asmx/SearchLyric?</a><strong><a href="http://api.chartlyrics.com/apiv1.asmx/SearchLyric?artist=boys like girls&amp;song=the great escape">artist</a></strong><a href="http://api.chartlyrics.com/apiv1.asmx/SearchLyric?artist=boys like girls&amp;song=the great escape">=</a><strong><a href="http://api.chartlyrics.com/apiv1.asmx/SearchLyric?artist=boys like girls&amp;song=the great escape">boys like girls</a></strong><a href="http://api.chartlyrics.com/apiv1.asmx/SearchLyric?artist=boys like girls&amp;song=the great escape">&amp;</a><strong><a href="http://api.chartlyrics.com/apiv1.asmx/SearchLyric?artist=boys like girls&amp;song=the great escape">song</a></strong><a href="http://api.chartlyrics.com/apiv1.asmx/SearchLyric?artist=boys like girls&amp;song=the great escape">=</a><strong><a href="http://api.chartlyrics.com/apiv1.asmx/SearchLyric?artist=boys like girls&amp;song=the great escape">the great escape</a></strong></p>
<p>Notice I didn&#8217;t bother using the escape sequence between the words as the browser automatically does that for you <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Going to that link (using Internet Explorer since it displays XML very well) I get something that will look like this:</p>
<p><img class="alignnone" title="XML" src="http://i47.tinypic.com/2cfqg53.png" alt="" width="625" height="387" /></p>
<p>The two wanted piece of info is LyricChecksum and LyricId. We need these two because the other URL we need to use to request the actually lyrics accepts them:</p>
<p><a href="http://api.chartlyrics.com/apiv1.asmx/GetLyric?lyricId=1710&amp;lyricCheckSum=2a3b73342fcfbfa6d88cfb68c44dfed1">http://api.chartlyrics.com/apiv1.asmx/GetLyric?<strong>lyricId</strong>=<strong>string</strong>&amp;<strong>lyricCheckSum</strong>=<strong>string</strong></a></p>
<p>Plugging the info in, watch the magic happen:</p>
<p><a href="http://api.chartlyrics.com/apiv1.asmx/GetLyric?lyricId=37660&amp;lyricCheckSum=11599029fc8cbca8ff91a06c0929534a">http://api.chartlyrics.com/apiv1.asmx/GetLyric?lyricId=37660&amp;lyricCheckSum=11599029fc8cbca8ff91a06c0929534a</a></p>
<p><img class="alignnone" title="Lyrics" src="http://i46.tinypic.com/30jnq5x.png" alt="" width="436" height="168" /></p>
<p>There you have it! Next tutorial, I&#8217;ll give you an implementation using C#.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/randomsomething.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/randomsomething.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/randomsomething.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/randomsomething.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/randomsomething.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/randomsomething.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/randomsomething.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/randomsomething.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/randomsomething.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/randomsomething.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/randomsomething.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/randomsomething.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/randomsomething.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/randomsomething.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=randomsomething.wordpress.com&amp;blog=4437999&amp;post=6&amp;subd=randomsomething&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://randomsomething.wordpress.com/2010/02/16/using-chartlyrics-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ee8059054e72645855617fc8a7eaf47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">airefall</media:title>
		</media:content>

		<media:content url="http://i47.tinypic.com/2cfqg53.png" medium="image">
			<media:title type="html">XML</media:title>
		</media:content>

		<media:content url="http://i46.tinypic.com/30jnq5x.png" medium="image">
			<media:title type="html">Lyrics</media:title>
		</media:content>
	</item>
		<item>
		<title>Lyrics API services</title>
		<link>http://randomsomething.wordpress.com/2010/02/16/lyrics-api-services/</link>
		<comments>http://randomsomething.wordpress.com/2010/02/16/lyrics-api-services/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 04:16:02 +0000</pubDate>
		<dc:creator>airefall</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://randomsomething.wordpress.com/?p=4</guid>
		<description><![CDATA[Yesterday I was searching the net for lyric api services, but to my dismay, couldn&#8217;t find any, at least in the beginning. I also received news that some lyric api services were sued by music companies as lyrics &#8216;were their property&#8217;. Disappointed, I went on and searched through Google and Bing until I landed on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=randomsomething.wordpress.com&amp;blog=4437999&amp;post=4&amp;subd=randomsomething&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was searching the net for <strong>lyric api</strong> services, but to my dismay, couldn&#8217;t find any, at least in the beginning. I also received news that some lyric api services were sued by music companies as lyrics &#8216;were their property&#8217;.</p>
<p>Disappointed, I went on and searched through Google and Bing until I landed on one I could actually use easily: <a href="http://www.chartlyrics.com/" target="_blank">ChartLyrics</a>. I want to begin with saying that currently, their lyric database isn&#8217;t huge as many other sites, but <em>is</em> currently expanding, and works well enough for my purposes. I&#8217;ll write a tutorial on using this api later.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/randomsomething.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/randomsomething.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/randomsomething.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/randomsomething.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/randomsomething.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/randomsomething.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/randomsomething.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/randomsomething.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/randomsomething.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/randomsomething.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/randomsomething.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/randomsomething.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/randomsomething.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/randomsomething.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=randomsomething.wordpress.com&amp;blog=4437999&amp;post=4&amp;subd=randomsomething&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://randomsomething.wordpress.com/2010/02/16/lyrics-api-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ee8059054e72645855617fc8a7eaf47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">airefall</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://randomsomething.wordpress.com/2008/08/07/hello-world/</link>
		<comments>http://randomsomething.wordpress.com/2008/08/07/hello-world/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 00:39:30 +0000</pubDate>
		<dc:creator>airefall</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=randomsomething.wordpress.com&amp;blog=4437999&amp;post=1&amp;subd=randomsomething&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/randomsomething.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/randomsomething.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/randomsomething.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/randomsomething.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/randomsomething.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/randomsomething.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/randomsomething.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/randomsomething.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/randomsomething.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/randomsomething.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/randomsomething.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/randomsomething.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/randomsomething.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/randomsomething.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/randomsomething.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/randomsomething.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=randomsomething.wordpress.com&amp;blog=4437999&amp;post=1&amp;subd=randomsomething&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://randomsomething.wordpress.com/2008/08/07/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ee8059054e72645855617fc8a7eaf47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">airefall</media:title>
		</media:content>
	</item>
	</channel>
</rss>
