<?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>Deepeshsomani&#039;s Blog</title>
	<atom:link href="http://deepeshsomani.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://deepeshsomani.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 27 Oct 2011 17:57:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='deepeshsomani.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Deepeshsomani&#039;s Blog</title>
		<link>http://deepeshsomani.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://deepeshsomani.wordpress.com/osd.xml" title="Deepeshsomani&#039;s Blog" />
	<atom:link rel='hub' href='http://deepeshsomani.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to resolve file size error for files whose size is larger than specified in web.config</title>
		<link>http://deepeshsomani.wordpress.com/2011/08/16/how-to-resolve-file-size-error-for-files-whose-size-is-larger-than-specified-in-web-config/</link>
		<comments>http://deepeshsomani.wordpress.com/2011/08/16/how-to-resolve-file-size-error-for-files-whose-size-is-larger-than-specified-in-web-config/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 13:25:15 +0000</pubDate>
		<dc:creator>deepeshsomani</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[ASP.NEt file size upload maxrequestlength]]></category>

		<guid isPermaLink="false">http://deepeshsomani.wordpress.com/?p=25</guid>
		<description><![CDATA[Hi All, I have been through loads of blogs over how to resolve this in ASP.Net but somehow something or the other is missing in each one that i see. The approach that i am stating here is a generic solution to file upload size issue problem. There are two ways out of this : &#8230; <a href="http://deepeshsomani.wordpress.com/2011/08/16/how-to-resolve-file-size-error-for-files-whose-size-is-larger-than-specified-in-web-config/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=25&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi All,</p>
<p>I have been through loads of blogs over how to resolve this in ASP.Net but somehow something or the other is missing in each one that i see.</p>
<p>The approach that i am stating here is a generic solution to file upload size issue problem.</p>
<p>There are two ways out of this :</p>
<p>1. Use some third party widget that restricts the file size to be uploaded like slickupload.</p>
<p>2.Use the config approach that i followed:</p>
<p>There are lot of blogs which relate this on how to increase this file length size:</p>
<p>http://www.codeproject.com/KB/aspnet/uploadlargefilesaspnet.aspx</p>
<p>like this one.</p>
<p>The default size specified in various forums and blogs is about 4 Mb which is really less.</p>
<p>But here is the real issue: In DotnetFramework 4.0, you can keep this size as high as 4 GB but what if you want to handle the value exceeding the one in your web.config .Resolution is:</p>
<p>&lt;system.webServer&gt;</p>
<p>&lt;security&gt;</p>
<p>&lt;requestFiltering&gt;</p>
<p>&lt;requestLimits maxAllowedContentLength=&#8221;10485760&#8243;(Length is in bytes)/&gt;</p>
<p>&lt;/requestFiltering&gt;</p>
<p>&lt;/security&gt;</p>
<p>&lt;httpErrors errorMode=&#8221;Custom&#8221; existingResponse=&#8221;Replace&#8221;&gt;</p>
<p>&lt;remove statusCode=&#8221;404&#8243; subStatusCode=&#8221;13&#8243; /&gt;</p>
<p>&lt;error statusCode=&#8221;404&#8243; subStatusCode=&#8221;13&#8243; prefixLanguageFilePath=&#8221;" path=&#8221;URL path here&#8221;</p>
<p>&#8221; responseMode=&#8221;Redirect&#8221; /&gt;</p>
<p>&lt;/httpErrors&gt;</p>
<p>&lt;/system.webServer&gt;</p>
<p>in your web.config.</p>
<p>You would also need to add,</p>
<p>&lt;httpRuntime<br />
maxRequestLength=&#8221;1048576&#8243;(Length is in kb)<br />
executionTimeout=&#8221;3600&#8243;<br />
/&gt;</p>
<p>here i have set the maxrequestlength to 1 gb.</p>
<p>The thing worth noting is:</p>
<p>If the length mentioned in web.config for httpRuntime tag should be larger than or equal to the one mentioned in security tag under system.webserver maxContentlength . httpRuntime value is given in kb whereas the one mentioned in Security tab in bytes. This throws the desired exception 404.13 content length exceeded.</p>
<p>Another observation was ,if the value given in httpRuntime exceeds the one given in Security tag , this causes an Internal server error (500.X).</p>
<p>So, the value of  maxRequestLength&gt;=maxAllowedContentLength, so that this solution works.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deepeshsomani.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deepeshsomani.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deepeshsomani.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deepeshsomani.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deepeshsomani.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deepeshsomani.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deepeshsomani.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deepeshsomani.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deepeshsomani.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deepeshsomani.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deepeshsomani.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deepeshsomani.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deepeshsomani.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deepeshsomani.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=25&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://deepeshsomani.wordpress.com/2011/08/16/how-to-resolve-file-size-error-for-files-whose-size-is-larger-than-specified-in-web-config/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85dc538047024a2b7385a7ee04aebe91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deepeshsomani</media:title>
		</media:content>
	</item>
		<item>
		<title>A Monsoon Rain..</title>
		<link>http://deepeshsomani.wordpress.com/2010/03/27/a-monsoon-rain/</link>
		<comments>http://deepeshsomani.wordpress.com/2010/03/27/a-monsoon-rain/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 14:46:56 +0000</pubDate>
		<dc:creator>deepeshsomani</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deepeshsomani.wordpress.com/2010/03/27/a-monsoon-rain/</guid>
		<description><![CDATA[Far away where land meets the sky, where every day says a goodbye, where all earth seem to pass by, lies a horizon where all birds fly, color of dreams paint the inspiration cloud, cloud is full of dreams that thunders loud, drops of motivation fall to the reality ground, soil of situation makes a &#8230; <a href="http://deepeshsomani.wordpress.com/2010/03/27/a-monsoon-rain/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=23&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Far away where land meets the sky,<br />
where every day says a goodbye,<br />
where all earth seem to pass by,<br />
lies a horizon where all birds fly,<br />
color of dreams paint the inspiration cloud,<br />
cloud is full of dreams that thunders loud,<br />
drops of motivation fall to the reality ground,<br />
soil of situation makes a growing sound,<br />
water of hard work starts pouring,<br />
seeds of a future then put souring,<br />
crop of happiness starts harvesting,<br />
farmer my mind ,thoughts come raining,<br />
for this life to succeed and live on,<br />
live a dream and smile full on!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deepeshsomani.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deepeshsomani.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deepeshsomani.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deepeshsomani.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deepeshsomani.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deepeshsomani.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deepeshsomani.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deepeshsomani.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deepeshsomani.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deepeshsomani.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deepeshsomani.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deepeshsomani.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deepeshsomani.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deepeshsomani.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=23&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://deepeshsomani.wordpress.com/2010/03/27/a-monsoon-rain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85dc538047024a2b7385a7ee04aebe91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deepeshsomani</media:title>
		</media:content>
	</item>
		<item>
		<title>Friends in the Rain!!</title>
		<link>http://deepeshsomani.wordpress.com/2010/03/27/friends-in-the-rain/</link>
		<comments>http://deepeshsomani.wordpress.com/2010/03/27/friends-in-the-rain/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 14:46:33 +0000</pubDate>
		<dc:creator>deepeshsomani</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deepeshsomani.wordpress.com/2010/03/27/friends-in-the-rain/</guid>
		<description><![CDATA[When life becomes a pain, freinds come as the rain, they shower us with all things nice, with friends life becomes cool as ice, life that comes in little little slice, lets play the game without no dice, To all my buddies who are and will ever come, Strangers are many but Friends become some, &#8230; <a href="http://deepeshsomani.wordpress.com/2010/03/27/friends-in-the-rain/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=22&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When life becomes a pain,<br />
freinds come as the rain,<br />
they shower us with all things nice,<br />
with friends life becomes cool as ice,<br />
life that comes in little little slice,<br />
lets play the game without no dice,<br />
To all my buddies who are and will ever come,<br />
Strangers are many but Friends become some,<br />
When years pass by we remember the days,<br />
the memories we made the notorious ways,<br />
To all those guys and gals who made it worthwhile,<br />
Because of you we have a life else wud have bee a exile,<br />
All i want is for you guys to smile,<br />
Remember me always once in a while..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deepeshsomani.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deepeshsomani.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deepeshsomani.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deepeshsomani.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deepeshsomani.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deepeshsomani.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deepeshsomani.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deepeshsomani.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deepeshsomani.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deepeshsomani.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deepeshsomani.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deepeshsomani.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deepeshsomani.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deepeshsomani.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=22&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://deepeshsomani.wordpress.com/2010/03/27/friends-in-the-rain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85dc538047024a2b7385a7ee04aebe91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deepeshsomani</media:title>
		</media:content>
	</item>
		<item>
		<title>Unkown Desire..</title>
		<link>http://deepeshsomani.wordpress.com/2010/03/27/unkown-desire/</link>
		<comments>http://deepeshsomani.wordpress.com/2010/03/27/unkown-desire/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 14:46:01 +0000</pubDate>
		<dc:creator>deepeshsomani</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deepeshsomani.wordpress.com/2010/03/27/unkown-desire/</guid>
		<description><![CDATA[First thing in the morning came a thought, whats a desire with which happiness is bought, In no school,no college this is taught, How a relishing cheerful smile is caught? Days just pass,time just flies&#8230; Memories are the one which never dies&#8230; Deep down the heart a desire lies&#8230; Desire to accomplishment,an Unkown Desire&#8230; When &#8230; <a href="http://deepeshsomani.wordpress.com/2010/03/27/unkown-desire/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=21&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First thing in the morning came a thought,<br />
whats a desire with which happiness is bought,<br />
In no school,no college this is taught,<br />
How a relishing cheerful smile is caught?<br />
Days just pass,time just flies&#8230;<br />
Memories are the one which never dies&#8230;<br />
Deep down the heart a desire lies&#8230;<br />
Desire to accomplishment,an Unkown Desire&#8230;<br />
When I walk down the life&#8217;s path&#8230;<br />
It feels like in Summe a water bath&#8230;<br />
Sometimes it chills like the winter season..<br />
Life is to chill,to live there is no reason..<br />
These thoughts when unite and combine&#8230;<br />
That is when Some feelings shine&#8230;<br />
feeling of Unknown Desire which lives&#8230;<br />
Life is Unexpected and It goes on&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deepeshsomani.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deepeshsomani.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deepeshsomani.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deepeshsomani.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deepeshsomani.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deepeshsomani.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deepeshsomani.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deepeshsomani.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deepeshsomani.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deepeshsomani.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deepeshsomani.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deepeshsomani.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deepeshsomani.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deepeshsomani.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=21&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://deepeshsomani.wordpress.com/2010/03/27/unkown-desire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85dc538047024a2b7385a7ee04aebe91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deepeshsomani</media:title>
		</media:content>
	</item>
		<item>
		<title>Myth of Seasons..</title>
		<link>http://deepeshsomani.wordpress.com/2010/03/27/myth-of-seasons/</link>
		<comments>http://deepeshsomani.wordpress.com/2010/03/27/myth-of-seasons/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 14:45:35 +0000</pubDate>
		<dc:creator>deepeshsomani</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deepeshsomani.wordpress.com/2010/03/27/myth-of-seasons/</guid>
		<description><![CDATA[We often wonder in life that this phase is good and this phase is bad.But I honestly feel that life is more like seasons.When one season comes all the scenario becomes specific to that season and then season changes. As the Season comes it brings its own weather patterns with it.So does life does .Life &#8230; <a href="http://deepeshsomani.wordpress.com/2010/03/27/myth-of-seasons/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=20&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We often wonder in life that this phase is good and this phase is bad.But I honestly feel that life is more like seasons.When one season comes all the scenario becomes specific to that season and then season changes.<br />
As the Season comes it brings its own weather patterns with it.So does life does .Life has only two phases to be true one which we all like to have and which passes like the spring.lets call it the quick phase.And then there is a slow phase which we do not like because it makes everything go slow against our will.<br />
Quick phase:<br />
In this period or time we are achieving everything that we have wanted.We also get what we thought of,our desire come true.We got to put less effort for getting things done.<br />
Slow phase:<br />
In this period or time we are not achieving what we have wanted.And even though something is coming in front of us with a lot of effort.</p>
<p>This was a little about phases but the point is just like storms test the best of life.Similarly,it&#8217;s the slow phase of life which tests us like anything.</p>
<p>But after every storm seas becomes more calm..Once you can realize this in life ,You will understand a lot of things which we tend to never get in life..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deepeshsomani.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deepeshsomani.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deepeshsomani.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deepeshsomani.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deepeshsomani.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deepeshsomani.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deepeshsomani.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deepeshsomani.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deepeshsomani.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deepeshsomani.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deepeshsomani.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deepeshsomani.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deepeshsomani.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deepeshsomani.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=20&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://deepeshsomani.wordpress.com/2010/03/27/myth-of-seasons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85dc538047024a2b7385a7ee04aebe91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deepeshsomani</media:title>
		</media:content>
	</item>
		<item>
		<title>The Rainbow Sight!!</title>
		<link>http://deepeshsomani.wordpress.com/2010/03/27/the-rainbow-sight/</link>
		<comments>http://deepeshsomani.wordpress.com/2010/03/27/the-rainbow-sight/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 14:45:00 +0000</pubDate>
		<dc:creator>deepeshsomani</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deepeshsomani.wordpress.com/2010/03/27/the-rainbow-sight/</guid>
		<description><![CDATA[Sitting by the moon, From dusk till noon, Kept coming the showers of light, Watching over the sky a true delight, Eyes captured the moment of glory, when the rain end there will be a story, A rainbow stretched across the dull sky, painting it with colors making weather shy, Clouds went dark but still &#8230; <a href="http://deepeshsomani.wordpress.com/2010/03/27/the-rainbow-sight/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=19&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sitting by the moon,<br />
From dusk till noon,<br />
Kept coming the showers of light,<br />
Watching over the sky a true delight,<br />
Eyes captured the moment of glory,<br />
when the rain end there will be a story,<br />
A rainbow stretched across the dull sky,<br />
painting it with colors making weather shy,<br />
Clouds went dark but still sky stayed bright,<br />
when life is full of rainbows things go right,<br />
When you want to feel everything in sight,<br />
Hold on to Qualities that you got tight,<br />
Life is great when you give a fight,<br />
In the End,Everything&#8217;s gonna be All right!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deepeshsomani.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deepeshsomani.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deepeshsomani.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deepeshsomani.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deepeshsomani.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deepeshsomani.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deepeshsomani.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deepeshsomani.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deepeshsomani.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deepeshsomani.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deepeshsomani.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deepeshsomani.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deepeshsomani.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deepeshsomani.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=19&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://deepeshsomani.wordpress.com/2010/03/27/the-rainbow-sight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85dc538047024a2b7385a7ee04aebe91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deepeshsomani</media:title>
		</media:content>
	</item>
		<item>
		<title>Dreams in maah heart..</title>
		<link>http://deepeshsomani.wordpress.com/2010/03/27/dreams-in-maah-heart/</link>
		<comments>http://deepeshsomani.wordpress.com/2010/03/27/dreams-in-maah-heart/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 14:44:32 +0000</pubDate>
		<dc:creator>deepeshsomani</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deepeshsomani.wordpress.com/2010/03/27/dreams-in-maah-heart/</guid>
		<description><![CDATA[Dreams in maah heart ,aspirations in the mind, care from the soul,leaving all fears behind, truth in my words,sentences full of hopes, sanity around me ,no affluent no dopes, Will to stand by against the winds so strong, Sails i have set to those dreams,my path stays long, Many hurdles set forth across the sea &#8230; <a href="http://deepeshsomani.wordpress.com/2010/03/27/dreams-in-maah-heart/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=18&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dreams in maah heart ,aspirations in the mind,<br />
care from the soul,leaving all fears behind,<br />
truth in my words,sentences full of hopes,<br />
sanity around me ,no affluent no dopes,<br />
Will to stand by against the winds so strong,<br />
Sails i have set to those dreams,my path stays long,<br />
Many hurdles set forth across the sea in my way,<br />
Test is of character when storms have the say,<br />
No storm can break in from the emotions within,<br />
A storm of strong devotion lies herein,<br />
Deeds of good work,thoughts to reach the sky,<br />
Across the horizon dreams of maah hear lie..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deepeshsomani.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deepeshsomani.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deepeshsomani.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deepeshsomani.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deepeshsomani.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deepeshsomani.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deepeshsomani.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deepeshsomani.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deepeshsomani.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deepeshsomani.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deepeshsomani.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deepeshsomani.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deepeshsomani.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deepeshsomani.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=18&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://deepeshsomani.wordpress.com/2010/03/27/dreams-in-maah-heart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85dc538047024a2b7385a7ee04aebe91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deepeshsomani</media:title>
		</media:content>
	</item>
		<item>
		<title>A Face in the Crowd..</title>
		<link>http://deepeshsomani.wordpress.com/2010/03/27/a-face-in-the-crowd/</link>
		<comments>http://deepeshsomani.wordpress.com/2010/03/27/a-face-in-the-crowd/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 14:44:10 +0000</pubDate>
		<dc:creator>deepeshsomani</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deepeshsomani.wordpress.com/2010/03/27/a-face-in-the-crowd/</guid>
		<description><![CDATA[A face in the crowd, A cloud in the sky, wandering above the hot desert so dry, winds so strong taking it high, Flying with the wind is worth a try&#8230; A little try is all that matters, Dreams are fulfilled by go-getters, doing it hard is not now the way, do it smart is &#8230; <a href="http://deepeshsomani.wordpress.com/2010/03/27/a-face-in-the-crowd/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=17&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A face in the crowd, A cloud in the sky,<br />
wandering above the hot desert so dry,<br />
winds so strong taking it high,<br />
Flying with the wind is worth a try&#8230;</p>
<p>A little try is all that matters,<br />
Dreams are fulfilled by go-getters,<br />
doing it hard is not now the way,<br />
do it smart is what i have to say..</p>
<p>A face in the crowd is all we remain,<br />
Until we reach our goals till we sustain..<br />
A sheep in a herd follows other sheep,<br />
A hay in a heap is nothing so deep..</p>
<p>To reach the pinnacle we ought to try.<br />
like the pains and still not to cry..<br />
To be different ,you got to win..<br />
winners never quit and quitters never try..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deepeshsomani.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deepeshsomani.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deepeshsomani.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deepeshsomani.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deepeshsomani.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deepeshsomani.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deepeshsomani.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deepeshsomani.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deepeshsomani.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deepeshsomani.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deepeshsomani.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deepeshsomani.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deepeshsomani.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deepeshsomani.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=17&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://deepeshsomani.wordpress.com/2010/03/27/a-face-in-the-crowd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85dc538047024a2b7385a7ee04aebe91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deepeshsomani</media:title>
		</media:content>
	</item>
		<item>
		<title>Sometimes in Life..</title>
		<link>http://deepeshsomani.wordpress.com/2010/03/27/sometimes-in-life/</link>
		<comments>http://deepeshsomani.wordpress.com/2010/03/27/sometimes-in-life/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 14:43:48 +0000</pubDate>
		<dc:creator>deepeshsomani</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deepeshsomani.wordpress.com/2010/03/27/sometimes-in-life/</guid>
		<description><![CDATA[sometimes in life it feels from inside, where is it taking me .. will i have moments of pride.. deep beneath lies a sea of emotion, when loved ones are far hurts separation.. for every victory and every joy, there has to be a goal..you gotta move.. And better move not like the toy&#8230; have &#8230; <a href="http://deepeshsomani.wordpress.com/2010/03/27/sometimes-in-life/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=16&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>sometimes in life it feels from inside,<br />
where is it taking me ..<br />
will i have moments of pride..<br />
deep beneath lies a sea of emotion,<br />
when loved ones are far hurts separation..<br />
for every victory and every joy,<br />
there has to be a goal..you gotta move..<br />
And better move not like the toy&#8230;<br />
have a head and will to groove&#8230;<br />
Dance of life ,steps you prove!!<br />
When music match the steps you tune..<br />
life becomes a memory..oblivion goes by..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deepeshsomani.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deepeshsomani.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deepeshsomani.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deepeshsomani.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deepeshsomani.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deepeshsomani.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deepeshsomani.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deepeshsomani.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deepeshsomani.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deepeshsomani.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deepeshsomani.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deepeshsomani.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deepeshsomani.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deepeshsomani.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=16&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://deepeshsomani.wordpress.com/2010/03/27/sometimes-in-life/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85dc538047024a2b7385a7ee04aebe91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deepeshsomani</media:title>
		</media:content>
	</item>
		<item>
		<title>Loss and Pain..</title>
		<link>http://deepeshsomani.wordpress.com/2010/03/27/loss-and-pain/</link>
		<comments>http://deepeshsomani.wordpress.com/2010/03/27/loss-and-pain/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 14:43:05 +0000</pubDate>
		<dc:creator>deepeshsomani</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deepeshsomani.wordpress.com/2010/03/27/loss-and-pain/</guid>
		<description><![CDATA[Loss and pain,moments of gain.. droplets of water coming in the rain.. breathing to live all air goes in vain.. years moving older moving like a train.. Long for me there had been a desire.. I have the glow to light up a fire.. For the torch of light to light brighter.. I have to &#8230; <a href="http://deepeshsomani.wordpress.com/2010/03/27/loss-and-pain/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=15&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Loss and pain,moments of gain..<br />
droplets of water coming in the rain..<br />
breathing to live all air goes in vain..<br />
years moving older moving like a train..</p>
<p>Long for me there had been a desire..<br />
I have the glow to light up a fire..<br />
For the torch of light to light brighter..<br />
I have to hold maah hand a little higher..</p>
<p>Years go by desire remains unaccomplished..<br />
as there is someone who has to get it finished..<br />
Long felt emotions are trembling inside..<br />
i dont know whether that lighter lays hide..</p>
<p>Some day that person will walk into my life..<br />
i am waiting for that day on the edge of knife..<br />
Alone its hard to now walk and it gets harder..<br />
I wait for that person to get me across farther..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deepeshsomani.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deepeshsomani.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deepeshsomani.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deepeshsomani.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deepeshsomani.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deepeshsomani.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deepeshsomani.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deepeshsomani.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deepeshsomani.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deepeshsomani.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deepeshsomani.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deepeshsomani.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deepeshsomani.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deepeshsomani.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=deepeshsomani.wordpress.com&amp;blog=12834297&amp;post=15&amp;subd=deepeshsomani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://deepeshsomani.wordpress.com/2010/03/27/loss-and-pain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/85dc538047024a2b7385a7ee04aebe91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deepeshsomani</media:title>
		</media:content>
	</item>
	</channel>
</rss>
