<?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>Srinidhi&#039;s Weblog</title>
	<atom:link href="http://sequentialrant.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sequentialrant.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 20 Nov 2011 18:26:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sequentialrant.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Srinidhi&#039;s Weblog</title>
		<link>http://sequentialrant.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sequentialrant.wordpress.com/osd.xml" title="Srinidhi&#039;s Weblog" />
	<atom:link rel='hub' href='http://sequentialrant.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Interpolating along the 2-D image slices</title>
		<link>http://sequentialrant.wordpress.com/2011/11/02/interpolating-along-the-2-d-image-slices-2/</link>
		<comments>http://sequentialrant.wordpress.com/2011/11/02/interpolating-along-the-2-d-image-slices-2/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 06:45:49 +0000</pubDate>
		<dc:creator>sequentialrant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sequentialrant.wordpress.com/?p=87</guid>
		<description><![CDATA[I have a set of 100 2-D image slices of the same size. I have used MATLAB to stack them to create a volumetric data. While the size of the 2-D slices is 480&#215;488 pixels, the direction in which the images are stacked is not wide enough to visualize the volume in different orientation when projected. I &#8230; <a href="http://sequentialrant.wordpress.com/2011/11/02/interpolating-along-the-2-d-image-slices-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=87&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have a set of <strong>100</strong> 2-D image slices of the same size. I have used MATLAB to stack them to create a volumetric data. While the size of the 2-D slices is 480&#215;488 pixels, the direction in which the images are stacked is not wide enough to visualize the volume in different orientation when projected. I need to interpolate along the slices to increase the size for visualization.</p>
<p>I created a MATLAB function that performs interpolation along the image slices:</p>
<pre><code>    function res = interp_along_slices( vol, scale )
    % Interpolation along the image slices

    % Get the size of the volume
      [r c p] = size(vol);

    % Pre-allocate the array:
    % the third dimension is scale times the p
      vol_interp = zeros(r,c,scale*p);

    % interpolate along the image slices
      for inr = 1:r;
          for jnr = 1:c;
              xi = vol(inr,jnr,:);
              vol_interp(inr,jnr,:) = interp(xi, scale);
          end;
      end;

      res = vol_interp;

    end</code></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sequentialrant.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sequentialrant.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sequentialrant.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sequentialrant.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sequentialrant.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sequentialrant.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sequentialrant.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sequentialrant.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sequentialrant.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sequentialrant.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sequentialrant.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sequentialrant.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sequentialrant.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sequentialrant.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=87&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sequentialrant.wordpress.com/2011/11/02/interpolating-along-the-2-d-image-slices-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13aa38832725572aa0024998171e11f4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nidhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Cosmetically</title>
		<link>http://sequentialrant.wordpress.com/2011/06/17/cosmetically/</link>
		<comments>http://sequentialrant.wordpress.com/2011/06/17/cosmetically/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 05:56:19 +0000</pubDate>
		<dc:creator>sequentialrant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sequentialrant.wordpress.com/?p=78</guid>
		<description><![CDATA[Lately, I have been using the “Lakme – Perfect Radiance”. It’s a fairness day cream meant for external use only. It actually deserves the name “Perfect Radiance”. It truly gives a fair radiant skin, but, only for an hour or two. I have been “smoothing on” every morning, and sometimes evening too, on cleansed skin. &#8230; <a href="http://sequentialrant.wordpress.com/2011/06/17/cosmetically/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=78&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lately, I have been using the “Lakme – Perfect Radiance”. It’s a fairness day cream meant for external use only. It actually deserves the name “Perfect Radiance”. It truly gives a fair radiant skin, but, only for an hour or two.</p>
<p>I have been “smoothing on” every morning, and sometimes evening too, on cleansed skin. The skin “glows”, at least for an hour. As mentioned on the product’s cover, it also reduces the “skin oiliness”, “fades away dullness”, and “lightens the skin color”.</p>
<p>Some of my friends and peers have recognized, and acknowledged, that, my skin has been glowing past a few days.</p>
<p>Cosmetically, the appearance of my face’s skin is superficially attractive and shiny. Thank you, Lakme.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sequentialrant.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sequentialrant.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sequentialrant.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sequentialrant.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sequentialrant.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sequentialrant.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sequentialrant.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sequentialrant.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sequentialrant.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sequentialrant.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sequentialrant.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sequentialrant.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sequentialrant.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sequentialrant.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=78&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sequentialrant.wordpress.com/2011/06/17/cosmetically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13aa38832725572aa0024998171e11f4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nidhi</media:title>
		</media:content>
	</item>
		<item>
		<title>When I was super lazy</title>
		<link>http://sequentialrant.wordpress.com/2011/04/17/when-i-was-super-lazy/</link>
		<comments>http://sequentialrant.wordpress.com/2011/04/17/when-i-was-super-lazy/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 21:54:38 +0000</pubDate>
		<dc:creator>sequentialrant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sequentialrant.wordpress.com/?p=72</guid>
		<description><![CDATA[The time is 2:12 AM and  I am getting no sleep. I have my laptop in front of me and I have been browsing the Internet past four hours. The laptop is getting hot, its processing power is dropping down and is running slower than usual. It will certainly shut down for no reason after &#8230; <a href="http://sequentialrant.wordpress.com/2011/04/17/when-i-was-super-lazy/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=72&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The time is 2:12 AM and  I am getting no sleep.</p>
<p>I have my <a class="zem_slink" title="Laptop" href="http://en.wikipedia.org/wiki/Laptop" rel="wikipedia">laptop</a> in front of me and I have been browsing the Internet past four hours. The laptop is getting hot, its <a class="zem_slink" title="Instructions per second" href="http://en.wikipedia.org/wiki/Instructions_per_second" rel="wikipedia">processing power</a> is dropping down and is running slower than usual. It will certainly shut down for no reason after sometime. Before that, a deathly blue screen appears (has happened quite a few times), signifying the over-heating of <a class="zem_slink" title="Central processing unit" href="http://en.wikipedia.org/wiki/Central_processing_unit" rel="wikipedia">CPU</a>. The laptop becomes very hot to touch in certain areas, and finally the machine shuts.</p>
<p>What do I do when it starts overheating?</p>
<p>To ensure that the air is circulating underneath the laptop, I have made two stacks of books. Each stack has two books about  the height of three centimetres. I have each stack kept below the leftmost and the rightmost edges of the rear-end of the laptop. In the front-end, I have an empty match-box kept underneath the <a class="zem_slink" title="Touchpad" href="http://en.wikipedia.org/wiki/Touchpad" rel="wikipedia">touch-pad</a> buttons.</p>
<p>Whew. Now it has adequate ventilation to cool down. The applications are running smoothly.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sequentialrant.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sequentialrant.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sequentialrant.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sequentialrant.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sequentialrant.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sequentialrant.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sequentialrant.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sequentialrant.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sequentialrant.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sequentialrant.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sequentialrant.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sequentialrant.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sequentialrant.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sequentialrant.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=72&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sequentialrant.wordpress.com/2011/04/17/when-i-was-super-lazy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13aa38832725572aa0024998171e11f4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nidhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Captain Gopinath, an aspirant and a maniac</title>
		<link>http://sequentialrant.wordpress.com/2011/03/31/captain-gopinath-an-aspirant-and-a-maniac/</link>
		<comments>http://sequentialrant.wordpress.com/2011/03/31/captain-gopinath-an-aspirant-and-a-maniac/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 07:59:42 +0000</pubDate>
		<dc:creator>sequentialrant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sequentialrant.wordpress.com/?p=67</guid>
		<description><![CDATA[After having read the book “Simply fly”, by Captain Gopinath, I am highly inspired and motivated. I highly admire him. I say that he is a person who likes his work at an extreme degree, and is always ambitious for something. I saw in him what Isaac Newton said, “No great discovery is made without &#8230; <a href="http://sequentialrant.wordpress.com/2011/03/31/captain-gopinath-an-aspirant-and-a-maniac/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=67&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After having read the book “Simply fly”, by Captain Gopinath, I am highly inspired and motivated. I highly admire him. I say that he is a person who likes his work at an extreme degree, and is always ambitious for something.</p>
<p>I saw in him what <a class="zem_slink" title="Isaac Newton" rel="wikipedia" href="http://en.wikipedia.org/wiki/Isaac_Newton">Isaac Newton</a> said, “No great discovery is made without a bold guess”, his child-like curiosity, his ability to explore, an open mind, and his sharp analytical skills. He has sprinkled himself as liberally as salt and pepper throughout his book in which the reader will find it an irresistible spice. In his great entrepreneurial journey, the book will actually transform the reader. It will teach about managing oneself, it will highly inspire, it lets you to think, discover, and try what you like.</p>
<p>This book is not only meant for budding <a class="zem_slink" title="Entrepreneur" rel="wikipedia" href="http://en.wikipedia.org/wiki/Entrepreneur">entrepreneurs</a> or entrepreneurs, every person should read this book.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sequentialrant.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sequentialrant.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sequentialrant.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sequentialrant.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sequentialrant.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sequentialrant.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sequentialrant.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sequentialrant.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sequentialrant.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sequentialrant.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sequentialrant.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sequentialrant.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sequentialrant.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sequentialrant.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=67&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sequentialrant.wordpress.com/2011/03/31/captain-gopinath-an-aspirant-and-a-maniac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13aa38832725572aa0024998171e11f4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nidhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Ants are one hell</title>
		<link>http://sequentialrant.wordpress.com/2008/10/22/ants-are-one-hell/</link>
		<comments>http://sequentialrant.wordpress.com/2008/10/22/ants-are-one-hell/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 15:17:37 +0000</pubDate>
		<dc:creator>sequentialrant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sequentialrant.wordpress.com/?p=14</guid>
		<description><![CDATA[I always keep my coffee mug beside my bed after drinking. One little problem I have is with the ants. They are one hell. They are all along the window sills scavenging. They swarm across my bed, gets into my stuffs, disrupts my sleep and study. My method of termination is to squish them. I &#8230; <a href="http://sequentialrant.wordpress.com/2008/10/22/ants-are-one-hell/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=14&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I always keep my coffee mug beside my bed after drinking. One little problem I have is with the ants. They are one hell. They are all along the window sills scavenging. They swarm across my bed, gets into my stuffs, disrupts my sleep and study. My method of termination is to squish them. I feel disgust while killing them. Sometimes, I feel disagreeable while killing them, because they are intelligent creatures. They are just doing their job. Ants are unlucky creatures; they don’t have fate at all. People tread on them, knowingly or unknowingly and kill them. But still they are one hell.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sequentialrant.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sequentialrant.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sequentialrant.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sequentialrant.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sequentialrant.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sequentialrant.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sequentialrant.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sequentialrant.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sequentialrant.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sequentialrant.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sequentialrant.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sequentialrant.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sequentialrant.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sequentialrant.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=14&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sequentialrant.wordpress.com/2008/10/22/ants-are-one-hell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13aa38832725572aa0024998171e11f4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nidhi</media:title>
		</media:content>
	</item>
		<item>
		<title>A horrific experience</title>
		<link>http://sequentialrant.wordpress.com/2008/09/25/a-horrific-experience/</link>
		<comments>http://sequentialrant.wordpress.com/2008/09/25/a-horrific-experience/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 09:20:14 +0000</pubDate>
		<dc:creator>sequentialrant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sequentialrant.wordpress.com/?p=3</guid>
		<description><![CDATA[Horror is a feeling. If you really want to get scared, you have to experience it. As my cousin brother was going to Florida to do his masters, he had come to my place. I and my cousin brother were sleeping over at my granny&#8217;s place and were discussing about some topic, we suddenly heard &#8230; <a href="http://sequentialrant.wordpress.com/2008/09/25/a-horrific-experience/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=3&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Horror is a feeling. If you really want to get scared, you have to experience it. As my cousin brother was going to Florida to do his masters, he had come to my place. I and my cousin brother were sleeping over at my granny&#8217;s place and were discussing about some topic, we suddenly heard the most awful and horrifying sound. We paused for a while and stood still to see if the noise would rank into the night silence again. Suddenly, without warning, we heard the same sound again. This time we were staggered, as the time was around 1:30 AM. It sounded like a glass bottle shattering into pieces. We then forced ourselves to sit up and try to wake completely. We then went downstairs to tell our granny. She then told us to chant some mantras and sleep off. In the morning we came to know that it was some drunkeres who threw glass bottles towards the window. We still shudder whenever we think about that night.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sequentialrant.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sequentialrant.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sequentialrant.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sequentialrant.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sequentialrant.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sequentialrant.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sequentialrant.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sequentialrant.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sequentialrant.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sequentialrant.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sequentialrant.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sequentialrant.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sequentialrant.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sequentialrant.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=3&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sequentialrant.wordpress.com/2008/09/25/a-horrific-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13aa38832725572aa0024998171e11f4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nidhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://sequentialrant.wordpress.com/2008/09/24/hello-world/</link>
		<comments>http://sequentialrant.wordpress.com/2008/09/24/hello-world/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 14:44:56 +0000</pubDate>
		<dc:creator>sequentialrant</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=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=1&amp;subd=sequentialrant&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 />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sequentialrant.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sequentialrant.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sequentialrant.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sequentialrant.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sequentialrant.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sequentialrant.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sequentialrant.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sequentialrant.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sequentialrant.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sequentialrant.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sequentialrant.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sequentialrant.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sequentialrant.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sequentialrant.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sequentialrant.wordpress.com&amp;blog=4966119&amp;post=1&amp;subd=sequentialrant&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sequentialrant.wordpress.com/2008/09/24/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13aa38832725572aa0024998171e11f4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nidhi</media:title>
		</media:content>
	</item>
	</channel>
</rss>
