<?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>PraVin's Blog</title>
	<atom:link href="http://idonno.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://idonno.wordpress.com</link>
	<description>Its My World</description>
	<lastBuildDate>Fri, 03 Apr 2009 11:25:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='idonno.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>PraVin's Blog</title>
		<link>http://idonno.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://idonno.wordpress.com/osd.xml" title="PraVin&#039;s Blog" />
	<atom:link rel='hub' href='http://idonno.wordpress.com/?pushpress=hub'/>
		<item>
		<title>GSOC 2009 &#8211; Proposal for advanced search in wordpress</title>
		<link>http://idonno.wordpress.com/2009/04/03/gsoc-2009-proposal-for-advanced-search-in-wordpress/</link>
		<comments>http://idonno.wordpress.com/2009/04/03/gsoc-2009-proposal-for-advanced-search-in-wordpress/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 11:17:00 +0000</pubDate>
		<dc:creator>idonno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://idonno.wordpress.com/2009/04/03/gsoc-2009-proposal-for-advanced-search-in-wordpress/</guid>
		<description><![CDATA[Name: Praveen Bysani Email: praveen.iiith@gmail.com Location: Hyderabad,India webpage: http://web.iiit.ac.in/~lvsnpraveen Title : Advanced search for WordPress Problem: A wordpress blog in general has several categories and spans across different topics,so users often have to search for posts of their interest.Present search in wordpress ,is very simple. With increasing number of posts, the user finds it very [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=idonno.wordpress.com&amp;blog=1443979&amp;post=6&amp;subd=idonno&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Name</strong>: Praveen Bysani<br />
<strong>Email</strong>: praveen.iiith@gmail.com<br />
<strong>Location</strong>: Hyderabad,India<br />
<strong>webpage</strong>: <a href="http://web.iiit.ac.in/~lvsnpraveen" target="_blank">http://web.iiit.ac.in/~lvsnpraveen</a></p>
<p><span style="text-decoration:underline;"><strong>Title : Advanced search for WordPress</strong></span></p>
<p><strong>Problem</strong>:</p>
<p>A wordpress blog in general has several categories and spans across different topics,so users often have to search for posts of their interest.Present search in wordpress ,is very simple. With increasing number of posts, the user finds it very difficult to find a relevant result with current search.</p>
<p>The task is to create an advanced field based search engine for wordpress where user  can form granular queries, according to his interests in categories,tags,author etc. This project is important for wordpress because ,an advanced search interface improves user experience and save a lot of time .</p>
<p>An advanced query might look like , &#8220;Leopard in category &#8220;operating systems&#8221; or &#8220;Mac&#8221; under tags &#8220;apple&#8221; written by steve&#8221; .The search engine should narrow down the results to posts within category Mac,Operating systems having tags apple authored by steve and containing keyword leopard.</p>
<p>There are already plugins like SearchAll,SearchEverything to seach in attatchments,categories,tags,comments etc but their functionality is very limited.For instance &#8220;SearchEverything&#8221; , while searchin comment space,retrieves results only if query phrase is exactly same phrase in a comment .</p>
<p><strong>Proposal</strong>:</p>
<p>My tentative solution to this problem is ,</p>
<p>1) <strong>Indexing</strong>:</p>
<p>First step is to create an index,the purpose of storing an index is to optimize performance of search. Different techniques are used for index storage like suffix tree,n-gram index,inverted index. Inverted indices is most popular technique for indexing,it stores list of word occurences in form of hash map with  words as key and document id&#8217;s as value.</p>
<p>In this context,a dump of MySql database is taken and an inverted index will be created.Fields like author,category,tags,publish date etc are indexed along with content words so that they can be used later for search.</p>
<p>Ex:      KEY                        VALUES<br />
Author_steve          : postid1,postid2,postid1<br />
Tag_apple               : postid1,postid2,postid43<br />
Content_leopard      : postid1</p>
<p>where Author,Tag,Content are different fields indexed.</p>
<p><strong>2) Query Parsing:</strong></p>
<p>Second step is to build a query object.A parser is used to tokenize query and extract phrases and fields.Stemmer,stop word lists are used while tokenizing for robustness . A query object is built after parsing.</p>
<p>we can either translate natural language query to our parser syntax</p>
<p>Ex:  &#8220;Leopard in category Operating systems or Mac under tags apple written by steve&#8221; is translated into (author:steve AND tags:apple AND category:(operating systems OR mac) AND content:leopard )</p>
<p>or user can be restricted to use predefined syntax to form query, like most of the search engines does.</p>
<p><strong>3)Scoring and Results:</strong></p>
<p>Finally,query object is searched on index created in first step.Fields are provided with boost values according to their importance , for example user may want to give more importance to author than category,tags.</p>
<p>Resulting posts are ranked using similarity measures like cosine similarity between post,query or tf*idf value of post.</p>
<p>cosine similarity : query and post are considered as vectors in n-dimensional space, cosine of angle between them is considered as similarity(n is vocabulary of terms)</p>
<p>tf*idf value      :tf (term frequency) measure of how often a term appears in the document ,idf(inverse document frequency) measure of how often the term appears across the index</p>
<p>Although this approach looks quite complex, it is designed taking into account long term interests.Once the index,necessary components are built incorporating further changes(if needed) will be very easy.</p>
<p>As search is a core component in wordpress, this project needs to be implemented in core.</p>
<p>There are no major risks involved with this project,</p>
<p><em>Advantages of this approach:</em></p>
<ol>
<li>Proved to be working , considerably best approach as many large scale systems switch to indexes from databases</li>
<li>with ranking of results ,user finds what he is looking for without browsing through all results</li>
<li>Ability to make proximity,range,fuzzy,wildcard searches</li>
</ol>
<p><em>Extra Functionality(If time Permits):</em></p>
<p>In addition to search in categories,tags,authors,plugins as mentioned in Wiki ideas page,we can also</p>
<ul>
<li> Allow user to search in Comments of post</li>
<li> Allow search in range of publishing dates (Ex:posts published between 11th january 2009 and 23rd february 2009 etc)</li>
<li> Provide Media(Audio/video) content Filter in search</li>
<li> Provide Adult content filter in search</li>
</ul>
<p><strong>Schedule of Deliverables:</strong><br />
My planned schedule,tend to change after discussions with mentor</p>
<p>By Half way mark:</p>
<ol>
<li>Explore and find ways to create an index from database</li>
<li>Build query object</li>
<li>Hook these modules into wordpress</li>
</ol>
<p>By End:</p>
<ol>
<li>Implement search</li>
<li>weighting fields and ranking posts</li>
<li>Better user interface for advanced search</li>
<li>Including extra functionality depending on time left</li>
<li>Testing the system and integration</li>
</ol>
<p>I also work on TAC 2009,Update Summarization task during this time</p>
<p><strong>Open Source Development Experience</strong></p>
<p>Although i am user of various open source projects like nutch,lucene i never got a chance to contribute to them due to my academic commitments.Being in final year, i have enough time this summer to contribute to open source.I believe GSOC-2009 will be good starting point in this direction.<br />
<strong><br />
Work Experience</strong></p>
<p>Worked as a Research Assistant in IE&amp;R Lab for a period of three months.<br />
Worked on several projects during my first three years,a brief description of my projects can be found at <a href="http://web.iiit.ac.in/~lvsnpraveen" target="_blank">http://web.iiit.ac.in/~lvsnpraveen</a><br />
<strong><br />
Academic Experience</strong></p>
<p>I am in fourth year of my Dual Degree programme( B.Tech + MS by research,computer science) at International Institute of Information Technology,Hyderabad(IIIT-H). my area of specialization is &#8220;Information retrieval&#8221;. I am excited to work on Search Related projects.</p>
<p>Courses:</p>
<p>Core Engineering:</p>
<ol>
<li>Programming in C</li>
<li>Data Structures</li>
<li>Artificial Intelligence</li>
<li>Data Base management systems</li>
<li>Software Engineering</li>
<li>Algorithms</li>
<li>Theory of Computation</li>
</ol>
<p>Stream courses:</p>
<ol>
<li>Information extraction and retrieval</li>
<li>Natural Language Processing</li>
<li>Web data  and knowledge management</li>
<li>Pattern Recognition</li>
</ol>
<p><strong>Why WordPress<br />
</strong><br />
Apart from zeal of contributing to opensource, my work mostly consists of information extraction and retrieval. This project is closely related to the same. The idea of working with potential web developers in wordpress is enthralling. I expect that working on this project is mutually benefitable.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/idonno.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/idonno.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/idonno.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/idonno.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/idonno.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/idonno.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/idonno.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/idonno.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/idonno.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/idonno.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/idonno.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/idonno.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/idonno.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/idonno.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=idonno.wordpress.com&amp;blog=1443979&amp;post=6&amp;subd=idonno&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://idonno.wordpress.com/2009/04/03/gsoc-2009-proposal-for-advanced-search-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/021c19125f46acf5508b1dc95ca1ab7e?s=96&#38;d=identicon" medium="image">
			<media:title type="html">idonno</media:title>
		</media:content>
	</item>
		<item>
		<title>100% bitch ,got any problem with that !!</title>
		<link>http://idonno.wordpress.com/2008/02/07/100-bitch-got-any-problem-with-that/</link>
		<comments>http://idonno.wordpress.com/2008/02/07/100-bitch-got-any-problem-with-that/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 10:29:19 +0000</pubDate>
		<dc:creator>idonno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://idonno.wordpress.com/?p=5</guid>
		<description><![CDATA[Don get into any wrong assumptions from the title&#8230;This bitch(post) is about no bitches or vulgarity.Actually its about cool one liners and quotes.I totally love them.I even try to phrase some, lets get to that later. I wanna toss up here some of the naugtiest one liners i eva read/heard . Look at each1 again [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=idonno.wordpress.com&amp;blog=1443979&amp;post=5&amp;subd=idonno&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Don get into any wrong assumptions from the title&#8230;This bitch(post) is about no bitches or vulgarity.Actually its about cool one liners and quotes.I totally love them.I even try to phrase some, lets get to that later.</p>
<p>I wanna  toss up here some of the naugtiest one liners i eva read/heard . Look at each1 again before u jump to the next one&#8230;</p>
<ul>
<li> DONT DRINK WATER&#8211;Fishes Hav Sx in it</li>
<li>Ur Hot..Im coool..So letz get warm</li>
<li>If you are Rich..then I am Single</li>
<li>Let them WHISPER, we&#8217;ll STAYFREE!!!!</li>
<li>&#8220;If u can read this, then the bitch behind me has fallen down &#8220;(On back of biker)</li>
<li>Nice Legs!!! What time do they open</li>
<li>I am VEG,But I see,think and drink NONVEG</li>
<li>Opinions are like assholes, everyone&#8217;s got one!</li>
<li>Love is photogenic.It needs darkness to develop</li>
<li>Luck is like a bitch ,it always stays with rich.</li>
<li>Sorry if i look interested,Im not</li>
<li>Life is too short to date ugly gals</li>
<li>Im naked under my clothes.</li>
<li>Theres &#8220;U&#8221; in ugly but Definitely not &#8220;I&#8221;</li>
<li>Coffee. Chocolate. Women. Some things are better rich</li>
<li>sLeEp oNLy wHeN yOu aRe GeTtInG PaId fOr iT</li>
<li>When We Were Thirsty For Life .We Drank Vodka,hen We Were Thirsty For Water We Added Ice.</li>
<li>I am a lesbian trapped in a MAn&#8217;s body&#8230;</li>
</ul>
<p>U think they are Asom, den u gotta read MY naughty creations/thoughts..They sound a little boasting,but nevertheless. Ok OK the following one liners  are just for da sake of being.. dey arent abt me</p>
<ul>
<li><b> I Lost Ma virginity&#8230;&#8230;&#8230;In ma dreams</b></li>
<li><b>Stop Calling me Sexy (gained some reputation for this  <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ) </b></li>
<li><b> U hav A nice Horizantal Smile&#8230;No idea Abt ya Vertical&#8230;..{censored }</b></li>
<li><b>I am rated &#8220;A&#8221;<br />
</b></li>
<li><b>I wantd 2 kill sexiest person aliv..but den realised suicide is nt answer</b></li>
</ul>
<p>There are some more, i jus cudnt get dem at da moment..</p>
<p>Thanx &amp; ciao guys next JULY,</p>
<p>PraV.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/idonno.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/idonno.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/idonno.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/idonno.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/idonno.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/idonno.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/idonno.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/idonno.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/idonno.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/idonno.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/idonno.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/idonno.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/idonno.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/idonno.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/idonno.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/idonno.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=idonno.wordpress.com&amp;blog=1443979&amp;post=5&amp;subd=idonno&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://idonno.wordpress.com/2008/02/07/100-bitch-got-any-problem-with-that/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/021c19125f46acf5508b1dc95ca1ab7e?s=96&#38;d=identicon" medium="image">
			<media:title type="html">idonno</media:title>
		</media:content>
	</item>
		<item>
		<title>Interesting Trivia Abt HollyWood Movies&#8230;</title>
		<link>http://idonno.wordpress.com/2007/07/31/interesting-trivia-abt-hollywood-movies/</link>
		<comments>http://idonno.wordpress.com/2007/07/31/interesting-trivia-abt-hollywood-movies/#comments</comments>
		<pubDate>Tue, 31 Jul 2007 20:04:43 +0000</pubDate>
		<dc:creator>idonno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://idonno.wordpress.com/2007/07/31/interesting-trivia-abt-hollywood-movies/</guid>
		<description><![CDATA[As mentioned earlier&#8230;I watch a lot of English Movies,after watchin a movie i chk out abt dat movie @ imdb fr details(afteral im a 7 ptr,wat els will i do ??).Here are some Trivia whch i found Interestin; &#160; &#160; &#160; 300 : Some weapons used in 300 are actually weapons from previous war epics [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=idonno.wordpress.com&amp;blog=1443979&amp;post=4&amp;subd=idonno&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>As  mentioned earlier&#8230;I watch a lot of English Movies,after watchin a movie i chk out abt dat movie @ imdb fr details(afteral im a 7 ptr,wat els will i do ??).Here are some Trivia whch i found  Interestin;</strong></p>
<p align="left">&nbsp;</p>
<blockquote>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="left"> <em><strong>        300</strong></em> :</p>
<p align="left">Some weapons used in 300 are actually weapons from previous war epics like &#8220;Alexander&#8221; and &#8220;Troy.&#8221; They were used in this film to cut costs.</p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="left"><em><strong>        Girl Next Door</strong></em> :</p>
<p align="left">Elisha Cuthbert spoke wid some adult actresses from wickedpictures and  vivid entertainment ,to help with her role in dis movie. Originally, both &#8216;Brianna Banks&#8217; and &#8216;Jenna Jameson (I)&#8217; were slated to appear in this film.</p>
<p align="left">&nbsp;</p>
<p align="left"><em><strong>        Bourne Identity</strong></em> :</p>
<p align="left">&nbsp;</p>
<p align="left"> There are no opening credits besides the Title Card(U can Observe dis is very rare).  Brad Pitt turned down the role of bourne for Spy Game(2001).</p>
<p align="left">&nbsp;</p>
<p align="left"><em><strong>         Primal Fea</strong>r</em> :</p>
<p align="left">&nbsp;</p>
<p align="left">  This Was Edward Nortons(Im a dying Fan of him) Debut film, 2100 actors are adduitioned for this role.Matt damon(Bourne) was one of them.</p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="left"><strong><em>        Snatch</em></strong> :</p>
<p align="left">Every mistake that Sol, Vincent and Tyrone (dose niggers) make were inspired by various late-night TV shows about real-life crimes gone horribly wrong .  Nearly every death in the movie takes place off-screen(Except Four fingers) .</p>
<p align="left">&nbsp;</p>
<p align="left"><strong><em>        Oceans Eleven and Twelve </em></strong>:</p>
<p align="left">&nbsp;</p>
<p>When Rusty Ryan Brad Pitt is teaching the &#8220;teen idols&#8221; to play poker, all of the actors are actual &#8220;teen idols&#8221; who were and/or are currently starring in popular TV Shows. The cast did gamble during off hours. While there&#8217;s disagreement between who won the most (George Clooney says Matt Damon, Damon says Brad Pitt), Clooney managed to lose 25 hands of blackjack in a row.</p>
<p align="left">&nbsp;</p>
<p><strong><em>The Truman Show</em></strong>:</p>
<p>Its a Masterpiece.Jim Carey is da only human who can do that kinda action. coming to trivia, Every streetname in Seahaven(A town in da movie) refers to a movie actor, e.g. &#8220;Lancaster Square&#8221; or &#8220;Barrymore Road.&#8221;In an early scene on Truman and Meryl&#8217;s kitchen table is a bottle of vitamin D &#8211; needed for those without exposure to the (real) sun.(If u watch da movie,u can understand how they take care of such small n sensitiv things).</p>
<p align="left"> <em><strong>Troy:</strong></em></p>
<p align="left">Brad Pitt claimed the filming was torturous for him due to the fact that he had to quit smoking.Hetrained for six months to get into shape for the role. He trained to have his body look like that of Greek statues.</p>
<p align="left"><em><strong>American History X</strong></em>:</p>
<p align="left">The &#8216;F&#8217; word is Used for 205 times in dis movie&#8230;which makes it da 2nd movie (pulp ficton-281 times) to have &#8216;F&#8217; word more than 200 times.</p>
<p align="left"><strong><em>Titanic : </em></strong></p>
<p align="left">This Movie needs no introduction,its truly a masterpiece.It tops the list of Box office with a overall colctn of more than 600 million dollars.But den it still cant find a place in Top 250 movies(IMDB).</p>
<p align="left">A<strong>fter Watchin all these..i think im all set to cast n crew a film &#8220;7.me&#8221; ..wat u say ??</strong></p>
<p align="left">Hey Also Watch &#8220;<em>About dis Blog</em>&#8220;..<strong>.i donno</strong> y it isnt showing desc in  dis page[im a newbie].</p>
<blockquote>
<p align="left">&nbsp;</p>
</blockquote>
<blockquote></blockquote>
<p align="left">&nbsp;</p>
<blockquote></blockquote>
<p align="left">&nbsp;</p>
<blockquote></blockquote>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
</blockquote>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/idonno.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/idonno.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/idonno.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/idonno.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/idonno.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/idonno.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/idonno.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/idonno.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/idonno.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/idonno.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/idonno.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/idonno.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/idonno.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/idonno.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/idonno.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/idonno.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=idonno.wordpress.com&amp;blog=1443979&amp;post=4&amp;subd=idonno&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://idonno.wordpress.com/2007/07/31/interesting-trivia-abt-hollywood-movies/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/021c19125f46acf5508b1dc95ca1ab7e?s=96&#38;d=identicon" medium="image">
			<media:title type="html">idonno</media:title>
		</media:content>
	</item>
		<item>
		<title>About This Blog !!!</title>
		<link>http://idonno.wordpress.com/2007/07/31/hello-world/</link>
		<comments>http://idonno.wordpress.com/2007/07/31/hello-world/#comments</comments>
		<pubDate>Tue, 31 Jul 2007 07:03:40 +0000</pubDate>
		<dc:creator>idonno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi Guys&#8230; Let me make myself clear abt this blog&#8230;Im not much into dis so called blogging,i created dis one bcoz im feeling bored big tym,and i wanna experience wats it like to write a blog. Most of da blogs I read(Frm my batchmates,u noe) are filled with english words which i cant even spell [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=idonno.wordpress.com&amp;blog=1443979&amp;post=1&amp;subd=idonno&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span id="more-1"></span>Hi Guys&#8230;</p>
<p>Let me make myself clear abt this blog&#8230;Im not much into dis so called blogging,i created dis one bcoz im feeling bored big tym,and i wanna experience wats it like to write a blog.</p>
<p>Most of da blogs I read(Frm my batchmates,u noe) are filled with english words which  i cant even spell ,forget abt  der meaning(Even After Watching more than 150 english flicks in span of 2 sems).So if u&#8217;r lookin for such a blog..kiddo dis isnt ya place,close da tab and go to ur usual blogs with  excellent english voccabulary.</p>
<p><strong><em>&#8220;In front Crocodiles Festival&#8221;</em></strong>,dats all my blog is abt</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/idonno.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/idonno.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/idonno.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/idonno.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/idonno.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/idonno.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/idonno.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/idonno.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/idonno.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/idonno.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/idonno.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/idonno.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/idonno.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/idonno.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/idonno.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/idonno.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=idonno.wordpress.com&amp;blog=1443979&amp;post=1&amp;subd=idonno&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://idonno.wordpress.com/2007/07/31/hello-world/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/021c19125f46acf5508b1dc95ca1ab7e?s=96&#38;d=identicon" medium="image">
			<media:title type="html">idonno</media:title>
		</media:content>
	</item>
	</channel>
</rss>
