<?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>Positive Deviations</title>
	<atom:link href="http://positivedeviations.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://positivedeviations.wordpress.com</link>
	<description>Life's Colloids</description>
	<lastBuildDate>Mon, 01 Jun 2009 04:34:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='positivedeviations.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/454ccca958d890914e2128883cfac757?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Positive Deviations</title>
		<link>http://positivedeviations.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://positivedeviations.wordpress.com/osd.xml" title="Positive Deviations" />
	<atom:link rel='hub' href='http://positivedeviations.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Renaming MP3 Files</title>
		<link>http://positivedeviations.wordpress.com/2009/05/31/renaming-mp3-files/</link>
		<comments>http://positivedeviations.wordpress.com/2009/05/31/renaming-mp3-files/#comments</comments>
		<pubDate>Sun, 31 May 2009 19:08:45 +0000</pubDate>
		<dc:creator>Seshadri</dc:creator>
				<category><![CDATA[Anything & Everything]]></category>
		<category><![CDATA[ID3]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[jid3.jar]]></category>
		<category><![CDATA[MP3]]></category>

		<guid isPermaLink="false">http://positivedeviations.wordpress.com/?p=60</guid>
		<description><![CDATA[So everyone&#8217;s got a bunch of MP3 files stashed away in a folder. Chances are, many of them don&#8217;t have proper filenames, and look something like: C:\Music\Unknown Artist\Unknown Album\QSCD.mp3 However, there is hope &#8211; especially for aspiring programmers. Your mp3 files may already have the track name, artist and album details stored in ID3 tags &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=positivedeviations.wordpress.com&amp;blog=6302161&amp;post=60&amp;subd=positivedeviations&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So everyone&#8217;s got a bunch of MP3 files stashed away in a folder. Chances are, many of them don&#8217;t have proper filenames, and look something like:</p>
<blockquote><p>C:\Music\Unknown Artist\Unknown Album\QSCD.mp3</p></blockquote>
<p>However, there is hope &#8211; especially for aspiring programmers. Your mp3 files may already have the track name, artist and album details stored in <a title="ID3 Tags - Wikipedia" href="http://en.wikipedia.org/wiki/ID3" target="_blank">ID3 tags</a> &#8211; if you&#8217;re able to see this information in iTunes/Windows Media Player/Winamp.</p>
<p>This problem started bugging me a while ago while I was switching from iTunes to Winamp, and my appetite for a suitable Computer Science activity growled eagerly. I thought of trying a Java-based solution &#8211; it went somewhat like this:</p>
<ol>
<li>Find a free (&amp; maybe open source) Java ID3 reader package</li>
<li>Learn how to enumerate files in a directory and pick out MP3s</li>
<li>String this knowledge together</li>
</ol>
<p>The solution was pretty simple:</p>
<ol>
<li>The <a title="jid3.jar Package" href="http://jid3.blinkenlights.org/" target="_blank">JID3.jar package</a> has support for reading and writing to ID3 tags &#8211; both v1 and v2 and it&#8217;s free-ish licence suted me just fine. They had a couple of code samples on the site too.</li>
<li>I remembered seeing an example of this a couple of source code files ago, and googled. Apparently it&#8217;s a simple matter of:
<pre class="brush: java;">
File folder = new File(&quot;C:\Music\&quot;);
File[] subFiles =  folder.listFiles();
</pre>
</li>
<li>The final utility turned out to be pretty simple. At the heart of the code was this tag-reading snippet:</li>
</ol>
<pre class="brush: java;">
MP3File mp3file = new MP3File(file);
ID3Tag[] id3Tags = mp3file.getTags();
String title = null;
for (ID3Tag tag : id3Tags)
{
if (tag instanceof ID3V1_0Tag)
{
System.out.println(&quot;ID3v1: &quot; + file.getName());
ID3V1_0Tag tag1 = (ID3V1_0Tag) tag;
if ( (title = tag1.getTitle()) != null)
return title;
} else if (tag instanceof ID3V2_3_0Tag)
{
System.out.println(&quot;ID3v2_3: &quot; + file.getName());
ID3V2_3_0Tag tag23 = (ID3V2_3_0Tag) tag;
if ( (title = tag23.getTitle()) != null)
return title;
}
}
</pre>
<p>But that was far from the end of the project. I wanted this thing to run through my entire music folder and apply itself to every &#8220;.mp3&#8243; file. As a bonus, it needed to remove track numbers from files like &#8220;01 Sage of Lamberene.mp3&#8243;. A most pleasurable evening later, it was finished. &#8220;<code>public class MP3TagFileRenamer</code>&#8221; even featured a recursive method to tackle subfolders within subfolders.</p>
<p>For those who&#8217;d like to tinker with it, here&#8217;s the <a href="http://drop.io/seshness" target="_blank">source code</a>. A bit messy, but legible and modular nonetheless. Legal Notice: Play all you want with it &#8211; but I am <span style="text-decoration:underline;">not</span> liable for any (potential) damages incurred.</p>
<p>Future updates? The next step would be renaming folders to match the ID3 tags, the media players can take it from here&#8230;</p>
<p>Enjoy! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/positivedeviations.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/positivedeviations.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/positivedeviations.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/positivedeviations.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/positivedeviations.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/positivedeviations.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/positivedeviations.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/positivedeviations.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/positivedeviations.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/positivedeviations.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/positivedeviations.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/positivedeviations.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/positivedeviations.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/positivedeviations.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=positivedeviations.wordpress.com&amp;blog=6302161&amp;post=60&amp;subd=positivedeviations&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://positivedeviations.wordpress.com/2009/05/31/renaming-mp3-files/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/574ce21422081d7ab1c5a98610414dbb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">sèsh</media:title>
		</media:content>
	</item>
		<item>
		<title>Modern Wireless (In)Security</title>
		<link>http://positivedeviations.wordpress.com/2009/02/03/modern-wireless-insecurity/</link>
		<comments>http://positivedeviations.wordpress.com/2009/02/03/modern-wireless-insecurity/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 18:49:28 +0000</pubDate>
		<dc:creator>Seshadri</dc:creator>
				<category><![CDATA[Anything & Everything]]></category>

		<guid isPermaLink="false">http://positivedeviations.wordpress.com/?p=38</guid>
		<description><![CDATA[Most of us use wireless LAN for everything from Apple's App Store to Zoho Office without a second thought. What most of us don't know is that our data may be at risk.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=positivedeviations.wordpress.com&amp;blog=6302161&amp;post=38&amp;subd=positivedeviations&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Most of us have heard of wireless LANs, and use them for everything from Apple&#8217;s <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" title="Apple's App Store" href="http://www.apple.com/iphone/appstore/">App Store</a> to <a title="Zoho Office" href="http://www.zoho.com/">Zoho Office</a> without a second thought. (Web browsing? What a ridiculous concept in the modern day!) What most of us don&#8217;t know is that our data may be at risk.</p>
<p>I recently took a walk on Dubai&#8217;s the famed Sheikh Zayed Road with my laptop&#8217;s wi-fi active. Using <a title="Kismet" href="http://www.kismetwireless.net/" target="_blank">Kismet</a>, a wireless network scanning tool, I was able to discover a total of 1114 wireless networks, over a 1.3 km stretch, at ground level only. If that didn&#8217;t come as a shocker, try this: half of them were _blatantly_ insecure.</p>
<p style="text-align:center;"><a href="http://positivedeviations.files.wordpress.com/2009/01/overall-wireless-stats.png"><img class="aligncenter size-full wp-image-46" title="overall-wireless-stats" src="http://positivedeviations.files.wordpress.com/2009/01/overall-wireless-stats.png?w=500&#038;h=281" alt="overall-wireless-stats" width="500" height="281" /></a></p>
<p>To be precise, 558 / 1114 wireless networks were wide open to nefarious war-drivers and piggy-backers.You could see them on a standard issue Windows laptop &#8211; without the little yellow lock that indicates a password or some level of security. Thee guys, and their internet connections, printers and networked computers, were essentially unprotected from outsiders.</p>
<p>From the statistics you&#8217;d probably think that the other half are doing alright. In fact, the 29% &#8220;<a title="Wired Equivalent Privacy" href="http://en.wikipedia.org/wiki/Wired_Equivalent_Privacy" target="_blank">WEP</a>&#8221; are not. WEP stands for <span style="text-decoration:underline;">W</span>ired <span style="text-decoration:underline;">E</span>quivalent <span style="text-decoration:underline;">P</span>rivacy, and that it is certainly not. Flaws have been discovered in the error-checking algorithms used to encrypt and decrypt the invisible information streams, and exploiting them takes a mere 5-10 minutes on a wireless network with a reasonable level of traffic. Your average Windows XP laptop user looking for a quick email/Facebook check is probably deterred, but certainly not your Linux-wielding computer geek ( hint, hint <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ). In short, <span style="text-decoration:line-through;">WEP</span>.</p>
<p>The only way to be reasonably secure a wireless network, in a cost-effective manner, is to enable <a title="Wi-Fi Protected Access" href="http://en.wikipedia.org/wiki/Wi-Fi_Protected_Access" target="_blank"><strong>WPA </strong></a>(<span style="text-decoration:underline;">W</span>i-Fi <span style="text-decoration:underline;">P</span>rotected <span style="text-decoration:underline;">A</span>ccess), with <strong>AES</strong>, on your home/small office wireless router. As always, picture provided for your convenience:</p>
<p style="text-align:center;"><a href="http://positivedeviations.files.wordpress.com/2009/02/wrt54g061.jpg"><img class="size-full wp-image-50 aligncenter" title="Wireless Setup" src="http://positivedeviations.files.wordpress.com/2009/02/wrt54g061.jpg?w=500&#038;h=261" alt="Portions of this image attributable to Linksys/Cisco Systems." width="500" height="261" /></a></p>
<p>Wireless LANs are incredibly useful and adaptable, but if they are not suitably secured they quickly become a liability.</p>
<p>For obervations/more info, use the shout-box below. Stay safe!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/positivedeviations.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/positivedeviations.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/positivedeviations.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/positivedeviations.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/positivedeviations.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/positivedeviations.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/positivedeviations.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/positivedeviations.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/positivedeviations.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/positivedeviations.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/positivedeviations.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/positivedeviations.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/positivedeviations.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/positivedeviations.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=positivedeviations.wordpress.com&amp;blog=6302161&amp;post=38&amp;subd=positivedeviations&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://positivedeviations.wordpress.com/2009/02/03/modern-wireless-insecurity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/574ce21422081d7ab1c5a98610414dbb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">sèsh</media:title>
		</media:content>

		<media:content url="http://positivedeviations.files.wordpress.com/2009/01/overall-wireless-stats.png" medium="image">
			<media:title type="html">overall-wireless-stats</media:title>
		</media:content>

		<media:content url="http://positivedeviations.files.wordpress.com/2009/02/wrt54g061.jpg" medium="image">
			<media:title type="html">Wireless Setup</media:title>
		</media:content>
	</item>
		<item>
		<title>PCAE &#8211; Post College Application&#8230; Euphoria</title>
		<link>http://positivedeviations.wordpress.com/2009/01/26/pcae/</link>
		<comments>http://positivedeviations.wordpress.com/2009/01/26/pcae/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 18:20:20 +0000</pubDate>
		<dc:creator>Seshadri</dc:creator>
				<category><![CDATA[Anything & Everything]]></category>

		<guid isPermaLink="false">http://positivedeviations.wordpress.com/?p=22</guid>
		<description><![CDATA[College Applications occupied much of my time last Fall. However, there is but one word I would use to describe them: self-defining.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=positivedeviations.wordpress.com&amp;blog=6302161&amp;post=22&amp;subd=positivedeviations&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>College Applications are long and difficult. The essays stretch to infinity and the activity forms are absurdly mathematical (C&#8217;mon! How many hours/week and weeks/year do you spend doing <em>xyz</em>?). However, deep within the process, beyond the sense of accomplishment on Dec 31, was&#8230; an understanding of who I really am.</p>
<p>Take this essay topic for example (Exact wording modified to throw off pesky college applicant-cum-Googlers:))</p>
<blockquote><p>You have just written your 301-page autobiography. Please give us page 218.</p></blockquote>
<p>The sheer amount of thought required to even attempt a response is mind-blowing. You have to think not only of who you are at the moment, but also of who you want to be in the future, and why you want to be the person you have outlined. Granted &#8211; it was an optional admission essay topic from one of America&#8217;s elite colleges, but there&#8217;s no doubt that many high-school seniors, myself included, emerged from the shells of shyness and expressed our egos to our hearts&#8217; content.</p>
<p>This topic, as well as many others, effectively captured the concept of putting yourself, your accomplishments, goals, and dreams, on paper for the admissions officers. To get to know me from this first post, dear Reader, I ask that you read <a href="http://positivedeviations.wordpress.com/essay/" target="_self">my autobiographical attempt</a>.</p>
<p>&#8216;Till next time,</p>
<p>§</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/positivedeviations.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/positivedeviations.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/positivedeviations.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/positivedeviations.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/positivedeviations.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/positivedeviations.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/positivedeviations.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/positivedeviations.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/positivedeviations.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/positivedeviations.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/positivedeviations.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/positivedeviations.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/positivedeviations.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/positivedeviations.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=positivedeviations.wordpress.com&amp;blog=6302161&amp;post=22&amp;subd=positivedeviations&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://positivedeviations.wordpress.com/2009/01/26/pcae/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/574ce21422081d7ab1c5a98610414dbb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">sèsh</media:title>
		</media:content>
	</item>
		<item>
		<title>Stay Tuned&#8230;</title>
		<link>http://positivedeviations.wordpress.com/2009/01/24/hello-world/</link>
		<comments>http://positivedeviations.wordpress.com/2009/01/24/hello-world/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 14:52:39 +0000</pubDate>
		<dc:creator>Seshadri</dc:creator>
				<category><![CDATA[Anything & Everything]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This blog is under construction.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=positivedeviations.wordpress.com&amp;blog=6302161&amp;post=1&amp;subd=positivedeviations&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This blog is under construction.</p>
<p style="text-align:left;">
<p style="text-align:center;"><a href="http://www.videolan.org/vlc/"><img class="aligncenter" title="VLC Cone" src="http://nanocrew.net/wp-content/conesoppera10.png" alt="Striped Yellow-and-White Cone" width="154" height="200" /></a></p>
<p>The image above is courtesy of the best video player on the Internet, <a title="VLC" href="http://www.videolan.org/vlc/" target="_blank">VLC</a>.</p>
<p>Enjoy the wait &#8211; it won&#8217;t be long!</p>
<p><img src="/Users/Seshadri/AppData/Local/Temp/moz-screenshot.jpg" alt="" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/positivedeviations.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/positivedeviations.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/positivedeviations.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/positivedeviations.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/positivedeviations.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/positivedeviations.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/positivedeviations.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/positivedeviations.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/positivedeviations.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/positivedeviations.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/positivedeviations.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/positivedeviations.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/positivedeviations.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/positivedeviations.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=positivedeviations.wordpress.com&amp;blog=6302161&amp;post=1&amp;subd=positivedeviations&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://positivedeviations.wordpress.com/2009/01/24/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/574ce21422081d7ab1c5a98610414dbb?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">sèsh</media:title>
		</media:content>

		<media:content url="http://nanocrew.net/wp-content/conesoppera10.png" medium="image">
			<media:title type="html">VLC Cone</media:title>
		</media:content>

		<media:content url="/Users/Seshadri/AppData/Local/Temp/moz-screenshot.jpg" medium="image" />
	</item>
	</channel>
</rss>
