<?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>Kash's tech Blog</title>
	<atom:link href="http://kashthealien.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kashthealien.wordpress.com</link>
	<description>My growing tech horizon</description>
	<lastBuildDate>Fri, 27 Apr 2012 05:48:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='kashthealien.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Kash's tech Blog</title>
		<link>http://kashthealien.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kashthealien.wordpress.com/osd.xml" title="Kash&#039;s tech Blog" />
	<atom:link rel='hub' href='http://kashthealien.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Facebook feed algorithm</title>
		<link>http://kashthealien.wordpress.com/2011/12/17/200/</link>
		<comments>http://kashthealien.wordpress.com/2011/12/17/200/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 13:01:45 +0000</pubDate>
		<dc:creator>kashthealien</dc:creator>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[algorithm]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[friend ranking]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://kashthealien.wordpress.com/?p=200</guid>
		<description><![CDATA[In this post, I have tried to analyse the friend ranking algorithm in order to understand how the algorithm can be beaten. I have used some mathematics to concretely define the concepts discussed.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kashthealien.wordpress.com&#038;blog=7132514&#038;post=200&#038;subd=kashthealien&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Most of us regularly use Social Networking tools like Facebook, Twitter, Google+ etc. Twitter and Google+ don&#8217;t order the feeds based on relevance or popularity, there are separate tools like &#8220;trending tweets&#8221; and &#8220;what&#8217;s hot&#8221; for that purpose. Facebook seems to have an algorithm which the other two popular sites don&#8217;t have, feed ranking aimed to reduce the amount of noise on your stream. In this post I have tried to reverse engineer this algorithm in order to understand why it fails in a few cases and how to break through and exploit its weaknesses. Please note that these are strictly my opinions of how the system works, however any criticism of any idea presented is welcome.</p>
<p>The feed ranking seems to be based on two concepts &#8211; Importance of a post, Relevance to the person.</p>
<p>Importance of a post is measured using the reaction it gets in the form of likes, comments and shares. Given 4 people like a post with 10 impressions, it is expected to have a lesser impact that a post that has 8 likes in 10 impressions. We can expect the comments and shares to further boost the score, although multiple comments from the same person doesn&#8217;t add much. Also these signals decay with time. A like yesterday you got for your post yesterday doesn&#8217;t probably count much today and so the post goes down in the ranking.<br />
ImportanceScore = (∑<sub>i</sub> C<sub>i</sub> * e<sup>-k(t<sub>now</sub>-t<sub>i</sub>)</sup>) / NumImpressions<br />
where k is some decaying constant which is multiplied to how long back the post was shared.  C<sub>i</sub>s are different constants for likes/comments/shares. NumImpressions is the number of times the post has been shown on screen.</p>
<p>Relevance to a person is important in deciding the probability a given person might like your post. I have observed that I see more posts from people who have interacted with me in the past. People whose posts I like/comment on see my posts higher up in their list. The relevance/friendship score can be determined by going through all the interactions between person X and person Y and summing them up with decaying time and weighted based on the type of interactions. This ensures that the recent interactions are more important.</p>
<p>Relevance/Friendship (X, Y) = ∑<sub>i</sub> C<sub>i</sub> * e<sup>-k(t<sub>now</sub>-t<sub>i</sub>)</sup><br />
where k is again a constant and is multiplied to the &#8216;how long back the interaction happened&#8217;. C<sub>i</sub>s are different constants of interaction (chat/message/comment/like/share/tag/share image/appear in same post/appear in same image)</p>
<p>In addition &#8216;relevance&#8217; can also take into account the number of your friends who liked my post to predict the probability of you liking it.</p>
<p>Other factors that could be considered.<br />
Social Status of the people who like/share/comment on your posts:-<br />
People who <a title="I like everything" href="https://www.facebook.com/albinjames" target="_blank">like everything</a> are expected to contribute less to the importance scores as opposed to people who like selectively. People with more number of friends interacting with him (note the direction of interaction), who has a higher social rank is expected to contribute more importance to your post than a guy with just one friend. The calculation of Social Rank is far more complex and I will omit the formulae and the confusion in this blog.</p>
<p>I have also ignored concept recognition as of now, the feature that allows FB to find out what you are talking about. For example &#8220;Indian National Cricket Team&#8221; or &#8220;Kolaveri&#8221;. Essentially I have considered only posts that talk about things that other people are not talking about. To adapt the model to include this signal, we would have to cluster all these posts together like Facebook does and use the scores of other posts in the cluster to score a new post.</p>
<p>So, how can we beat the system? Here is where I present some stuff that shameless people can try</p>
<ul>
<li>If the first few people who see your post like it, it gets a high rank immediately and lots of people end up seeing it improving the chances of getting more &#8216;likes&#8217;.</li>
<li>If you get the popular social centres to get to like your posts, your posts are likely to get a higher scores.</li>
<li>Interacting (chatting with, commenting&#8230;) with more people on Facebook from different friend clusters (school, high school, college, university, work, home, relatives) could help.</li>
<li>Sharing obviously funny/likable things that are bound to get a lot of likes once in a while to improve friendship_score. (&#8220;Go Sachin Tendulkar&#8221;/ Kitten pictures / stolen jokes etc)</li>
</ul>
<p>Other things that could likely help</p>
<ul>
<li>Replacing the words Google-Plus in your posts with G_o_o-g_l_e + may be? And Sonia Gandhi with 50|\|i@ G@|\|_|) |-|i.</li>
<li>Using Images with text in them rather than using plain text as it increases that chances of being noticed.</li>
</ul>
<p>I have just given my opinions in this post with a language which is as less geeky/mathematical as possible, you can share your opinions/other things you have observed about the algorithm in comments. Please also share if you found this interesting or funny. Nothing can please the author of an ad-free blog more than likes and comments.</p>
<br />Filed under: <a href='http://kashthealien.wordpress.com/category/artificial-intelligence/'>Artificial Intelligence</a>, <a href='http://kashthealien.wordpress.com/category/tech-2/'>Tech</a> Tagged: <a href='http://kashthealien.wordpress.com/tag/algorithm/'>algorithm</a>, <a href='http://kashthealien.wordpress.com/tag/facebook/'>Facebook</a>, <a href='http://kashthealien.wordpress.com/tag/feeds/'>feeds</a>, <a href='http://kashthealien.wordpress.com/tag/friend-ranking/'>friend ranking</a>, <a href='http://kashthealien.wordpress.com/tag/google/'>Google</a>, <a href='http://kashthealien.wordpress.com/tag/social-networking/'>social networking</a>, <a href='http://kashthealien.wordpress.com/tag/twitter/'>twitter</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kashthealien.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kashthealien.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kashthealien.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kashthealien.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kashthealien.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kashthealien.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kashthealien.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kashthealien.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kashthealien.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kashthealien.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kashthealien.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kashthealien.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kashthealien.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kashthealien.wordpress.com/200/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kashthealien.wordpress.com&#038;blog=7132514&#038;post=200&#038;subd=kashthealien&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kashthealien.wordpress.com/2011/12/17/200/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/239bf7c0a8e2dfe37ed2bbac7ee63549?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">kashthealien</media:title>
		</media:content>
	</item>
		<item>
		<title>Wikipedia Offline</title>
		<link>http://kashthealien.wordpress.com/2011/08/06/wikipedia-offline/</link>
		<comments>http://kashthealien.wordpress.com/2011/08/06/wikipedia-offline/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 11:13:25 +0000</pubDate>
		<dc:creator>kashthealien</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[custom UI]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[offline gmail]]></category>
		<category><![CDATA[stack]]></category>
		<category><![CDATA[stack sites]]></category>
		<category><![CDATA[stack-overflow]]></category>

		<guid isPermaLink="false">http://kashthealien.wordpress.com/?p=196</guid>
		<description><![CDATA[Most of what my work online either involves checking mail or browsing forums for getting answers or reading Wikipedia for getting information or social networking. With LAN cuts introduced in the IITs, it is difficult for a student to access information after 12:10 unless they breakout somehow. In an earlier post, I had explained with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kashthealien.wordpress.com&#038;blog=7132514&#038;post=196&#038;subd=kashthealien&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Most of what my work online either involves checking mail or browsing forums for getting answers or reading Wikipedia for getting information or social networking. With LAN cuts introduced in the IITs, it is difficult for a student to access information after 12:10 unless they breakout somehow. In an earlier post, I had explained with references to my code, on how to download parts of Wikipedia, I thought it would be helpful to download the whole of Wikipedia on to your computer. In this post I will show you how Wikipedia / stack-overflow / gmail can be download for offline use.</p>
<p><strong>Wikipedia</strong></p>
<p>Requirements:</p>
<ul>
<li>LAMP (Linux, Apache, MySQL, PHP)</li>
<li>Around 30 GB of space in primary partition 30 GB of space for storage. In my case the root partition</li>
<li>7 GB of free Internet download</li>
<li>3 days of free time</li>
</ul>
<p><a title="Latest wikipedia dump" href="http://dumps.wikimedia.org/enwiki/latest/enwiki-latest-pages-articles.xml.bz2" target="_blank">Wikipedia dumps</a> can be downloaded from the <a title="Wikipedia dumps download page" href="http://dumps.wikimedia.org/enwiki/latest/" target="_blank">Wikipedia site</a> in XML format compressed in .7zip. This is around 6 GBs when compressed and expands to around 25GB of XML pages. It doesn&#8217;t include any images. This <a href="http://blog.afterthedeadline.com/2009/12/04/generating-a-plain-text-corpus-from-wikipedia/">page</a> shows how one can extract text articles from articles and construct corpuses from the same. Apart from this, a static <a title="Wikipedia Static dump" href="http://static.wikipedia.org/downloads/2008-06/en/">HTML dump</a> can also be downloaded from Wikipedia page (wikipedia-en-html.tar.7z) and this version has images in it. The compressed version is at 15 GB and it expands to over 200 GB because of all the images.</p>
<p>The Static HTML dump can simply be extracted to get all the HTML files and the required HTML file can be opened to view the required content. In case you download the XML dump, there is more &#8211; you have to extract the articles and create your customized offline Wikipedia.with the following steps.</p>
<ol>
<li>Download the latest <a title="Mediawiki download" href="http://www.mediawiki.org/wiki/Download" target="_blank">mediawiki</a> and <a title="Mediawiki Installation" href="http://www.mediawiki.org/wiki/Installation" target="_blank">install</a> it on your Linux/Windows machine using LAMP/WAMP/XAMPP. Mediawiki is the software that renders Wikipedia articles using the data stored in MySQL.</li>
<li>Mediawiki needs a few extensions which have been installed in Wikipedia.Once we have mediawiki installed say /var/www/wiki/, download each of them and install by extracting these extensions in the /var/www/wiki/extensions directory.<br />
The following extensions have to be installed &#8211; CategoryTree, CharInsert, Cite, ImageMap, InputBox, <a title="Parser Function download page" href="http://www.mediawiki.org/wiki/Extension:ParserFunctions" target="_blank">ParserFunctions</a> (very important), Poem, randomSelection, SyntaxHighlight-GeSHi, timeline, wikihero which can all be found in the <a title="Mediawiki Extensions Download page" href="http://www.mediawiki.org/wiki/Extension" target="_blank">Mediawiki extensions download</a> page by following the <a title="Extensions Installation Instructions" href="http://www.mediawiki.org/wiki/Manual:Extensions" target="_blank">instructions</a>. In addition you can <a title="Mediawiki templates download" href="http://mediawiki2u.com/" target="_blank">install any template</a> to make your wiki look like whatever you want. Now your own Wiki is ready for you to use, you can add your own articles but what we want now is to copy the original Wikipedia articles to our Wiki.</li>
<li>It is easy to import all the data once and then construct an index for the data in MySQL than to update the index each time an article is added. Open MySQL and your database, the tables that are used in the import are text, page and revs. You can delete all the indexes on that page and create it again in the 5th step to speed up the process.</li>
<li>Now that we have our XML database, we need to import it into the MySQL database. You can find the instructions <a title="Dump importing instructions." href="http://www.mediawiki.org/wiki/Manual:Importing_XML_dumps" target="_blank">here</a>. In short, a summary of the instructions found on that page, the ONLY WAY you can get Wikipedia really fast on your computer is to use <a title="mwdumper" href="http://www.mediawiki.org/wiki/Mwdumper" target="_blank">mwdumper</a>tool to import into the database. The inbuilt tool in mediawiki won&#8217;t work fast and may run for several days. The following command can be used to import the dump into the database within an hour.
<pre>java -jar mwdumper.jar --format=sql:1.5 &lt;dump_name&gt; | mysql -u &lt;username&gt; -p &lt;databasename&gt;</pre>
</li>
<li> Recreate the indexes on the tables &#8216;page&#8217;, &#8216;revs&#8217; and &#8216;text&#8217; and you are done.</li>
</ol>
<p>You can comment if you want to try the same or if you run into any problems while trying.</p>
<p><strong>Stack-overflow</strong></p>
<p>Requirements</p>
<ul>
<li>LAMP (Linux, Apache, MySQL, PHP)</li>
<li>Around 15 GB of space in the primary partition and 15 GB of storage. In my case the root partition</li>
<li>4 GB of free Internet download</li>
</ul>
<p><a href="http://media10.simplex.tv/content/xtendx/stu/stackoverflow" target="_blank">media10.simplex.tv/content/xtendx/stu/stackoverflow</a> has several stackoverflow zip files available for direct download. Alternatively, stack-overflow dumps can be downloaded using a <a title="Stack Overflow torrent" href="http://www.clearbits.net/get/1794-jun-2011.torrent" target="_blank">torrent</a>. A torrent download can be converted into an FTP download using <a href="http://www.torrific.com/home/">http://www.torrific.com/home/</a>. Once you have the dumps you can unpack them to get huge XML files for several stack sites. Stack-Overflow is one of the stack sites, the 7zip file is broken into 4 parts and have to be combined using a command (cat a.xml b.xml c.xml d.xml &gt; full.xml) Once combined and extracted, we can see 6 xml files for each site (badges, comments, postHistory, posts, users, votes, ) Among these, comments, posts and votes may seem useful for offline usage of the forum. A main post may consist of several reply posts and each such post may have follow-up comments. Votes are used to rate an answer and they can be used as signals while you browse through questions. Follow the following steps to import the data into the database and use the UI to browse posts offline.</p>
<ul>
<li>Download Stack sites</li>
<li>Create a database StackOverflow with the schema using the description <a title="Stack Overflow schema description" href="https://github.com/kashthealien/Stack-Overflow/blob/master/stack_overflow.sql" target="_blank">here</a>. (comments, posts and votes tables are enough)</li>
<li>Use the <a title="XML data importer for stack sites" href="https://github.com/kashthealien/Stack-Overflow/blob/master/XMLDumpImporter/src/XMLDumpImporter/Main.java" target="_blank">code</a> to import the data to the database. (Suitably modify the variables serveraddress, port, username, password, databasename, rowspercommit, filePath and site in the code)</li>
<li>Run the code on Stack Mathematics to import the mathematics site. For bigger sites, it may take much more time and a lot of optimizations are needed along with a lot of disk space in the primary partition where the MySQL stores its databases.</li>
<li>Use the <a title="UI Index.php" href="https://github.com/kashthealien/Stack-Overflow/blob/master/UI/index.php" target="_blank">UI php files</a> to view a post given the post number along with the comments and replies.</li>
<li>TODO: Additionally we can add a search engine that searches the table &#8216;posts&#8217; for queries and returns post numbers which match the same.</li>
</ul>
<div><strong>Gmail offline</strong></div>
<div>Requirements:</div>
<div>
<ul>
<li>Windows / Mac prefered</li>
<li>Firefox prefered</li>
<li>20 minutes for setup</li>
<li>1 hour for download</li>
</ul>
</div>
<div>Gmail allows offline usage of mails, chats, calendar data and contacts. You can follow the following simple series of steps to get gmail on your computer.</div>
<div>
<ul>
<li>Install Google gears for firefox
<ul>
<li>You can install google gears from the site <a href="http://gears.google.com/">http://gears.google.com</a></li>
<li>If you are on Linux, you can install gears package. [sudo apt-get install xul-ext-gears]</li>
<li>Note: Gears works well in Windows, may fail on Linux</li>
</ul>
</li>
<li>Login to gmail</li>
<li>Create new label &#8220;offline-download&#8221;</li>
<li>Create a filter {[subject contains: "Chat with"] or [from: &lt;user-name&gt;] -&gt; add label &#8220;offline-download&#8221; to selectively download your conversations.</li>
<li>Enable offline Gmail in settings, and allow download &#8220;offline-downloa&#8221; for 5 years. You can select the period of time as well.</li>
<li>Start, it will end in around an hour and you will have your mails on your computer in an hour.</li>
</ul>
</div>
<div>Offline gmail creates a database called [emailID]@gmail.com#database in your computer. The <a href="http://gears.google.com/support/bin/answer.py?answer=79850">gears site</a> gives you the location. You can find some information about <a href="http://googlesystem.blogspot.com/2009/01/offline-gmail.html">offline GMail here</a>.</div>
<div>If you want a custom interface for your mails / chats etc, you can create one which queries the SQLITE database mentioned above to present the content however you want. The software <a title="Diarymaker website" href="http://kashyappuranik.co.cc/diaryMaker/features.php" target="_blank">diarymaker</a> can be used to read your chat data with plots of frequencies with time and rank your friends based on the interactivity. It works on Linux and uses the Qt platform. I will add a post on it soon.</div>
<div>Feel free to comment on any issue, if you have an idea for downloading any other kind of data on to your computer for offline usage, please let us know with a comment.</div>
<div></div>
<div><strong>Update:</strong></div>
<div><a href="http://media10.simplex.tv/content/xtendx/stu/stackoverflow" target="_blank">media10.simplex.tv/content/xtendx/stu/stackoverflow</a> Now you can download stackoverflow directly. (Courtesy: Sagar Borkar)</div>
<br />Filed under: <a href='http://kashthealien.wordpress.com/category/tech-2/'>Tech</a>, <a href='http://kashthealien.wordpress.com/category/wikipedia/'>Wikipedia</a> Tagged: <a href='http://kashthealien.wordpress.com/tag/custom-ui/'>custom UI</a>, <a href='http://kashthealien.wordpress.com/tag/gmail/'>Gmail</a>, <a href='http://kashthealien.wordpress.com/tag/internet/'>Internet</a>, <a href='http://kashthealien.wordpress.com/tag/offline/'>offline</a>, <a href='http://kashthealien.wordpress.com/tag/offline-gmail/'>offline gmail</a>, <a href='http://kashthealien.wordpress.com/tag/stack/'>stack</a>, <a href='http://kashthealien.wordpress.com/tag/stack-sites/'>stack sites</a>, <a href='http://kashthealien.wordpress.com/tag/stack-overflow/'>stack-overflow</a>, <a href='http://kashthealien.wordpress.com/tag/wikipedia/'>Wikipedia</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kashthealien.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kashthealien.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kashthealien.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kashthealien.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kashthealien.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kashthealien.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kashthealien.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kashthealien.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kashthealien.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kashthealien.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kashthealien.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kashthealien.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kashthealien.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kashthealien.wordpress.com/196/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kashthealien.wordpress.com&#038;blog=7132514&#038;post=196&#038;subd=kashthealien&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kashthealien.wordpress.com/2011/08/06/wikipedia-offline/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/239bf7c0a8e2dfe37ed2bbac7ee63549?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">kashthealien</media:title>
		</media:content>
	</item>
	</channel>
</rss>