<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>the recaptured blog</title>
	
	<link>http://recaptured.in/write</link>
	<description>I write: photography, travel, advertising, random</description>
	<lastBuildDate>Wed, 16 May 2012 20:05:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Almost" /><feedburner:info uri="almost" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license><feedburner:emailServiceId>Almost</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>The FizzBuzz Test</title>
		<link>http://feedproxy.google.com/~r/Almost/~3/DI2oq1hpBAE/</link>
		<comments>http://recaptured.in/write/2012/05/the-fizzbuzz-test/#comments</comments>
		<pubDate>Wed, 16 May 2012 20:03:34 +0000</pubDate>
		<dc:creator>hypnos</dc:creator>
				<category><![CDATA[narcissism]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coder]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tinkerer]]></category>

		<guid isPermaLink="false">http://recaptured.in/write/?p=1593</guid>
		<description><![CDATA[My attempt at the FizzBuzz coding test]]></description>
			<content:encoded><![CDATA[<p>While reading <a href="http://www.codinghorror.com/">Jeff Atwood</a>&rsquo;s blogpost entitled <a href="http://www.codinghorror.com/blog/2007/02/why-cant-programmers-program.html">Why Can&rsquo;t Programmers Program?</a> I thought of testing whether I can pass the simple FizzBuzz test for programming he mentions. You can read the details of the test on his blogpost.</p>
<p>So I wrote a script in PHP, the language I am currently active in, to do what the test asks us to do.</p>
<p>But then, why stop at just solving the problem when you can optimize code for timepass?</p>
<p>I began with a 24 line-long (without counting empty lines) chunk of indented code, using a simple for loop and a bunch of if statements. But then I wanted to reduce the size of the code, so I decided to use the shorthand for if, and get rid of variable assignments that don&#8217;t &#8220;do&#8221; anything really. Now I am down to 5 lines of code, including the two lines of the for loop.</p>
<p>Turns out I <u>am</u> a programmer (though not formally educated as a programmer), and a good one at that &#8211; I passed the FizzBuzz Test!! <img src='http://recaptured.in/write/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Do I get a job as a programmer now? <img src='http://recaptured.in/write/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Here is the output of the script (yes, the script ran when you loaded this page):</p>
<div style="padding: 6px; border: 1px solid #bbb; position: relative; overflow: auto; line-height: 1.9em; height: 250px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; font-family: monospace;">
1<br />2<br />Fizz<br />4<br />Buzz<br />Fizz<br />7<br />8<br />Fizz<br />Buzz<br />11<br />Fizz<br />13<br />14<br />FizzBuzz<br />16<br />17<br />Fizz<br />19<br />Buzz<br />Fizz<br />22<br />23<br />Fizz<br />Buzz<br />26<br />Fizz<br />28<br />29<br />FizzBuzz<br />31<br />32<br />Fizz<br />34<br />Buzz<br />Fizz<br />37<br />38<br />Fizz<br />Buzz<br />41<br />Fizz<br />43<br />44<br />FizzBuzz<br />46<br />47<br />Fizz<br />49<br />Buzz<br />Fizz<br />52<br />53<br />Fizz<br />Buzz<br />56<br />Fizz<br />58<br />59<br />FizzBuzz<br />61<br />62<br />Fizz<br />64<br />Buzz<br />Fizz<br />67<br />68<br />Fizz<br />Buzz<br />71<br />Fizz<br />73<br />74<br />FizzBuzz<br />76<br />77<br />Fizz<br />79<br />Buzz<br />Fizz<br />82<br />83<br />Fizz<br />Buzz<br />86<br />Fizz<br />88<br />89<br />FizzBuzz<br />91<br />92<br />Fizz<br />94<br />Buzz<br />Fizz<br />97<br />98<br />Fizz<br />Buzz</div>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/code' rel='tag' target='_self'>code</a>, <a class='technorati-link' href='http://technorati.com/tag/coder' rel='tag' target='_self'>coder</a>, <a class='technorati-link' href='http://technorati.com/tag/geek' rel='tag' target='_self'>geek</a>, <a class='technorati-link' href='http://technorati.com/tag/hacker' rel='tag' target='_self'>hacker</a>, <a class='technorati-link' href='http://technorati.com/tag/php' rel='tag' target='_self'>php</a>, <a class='technorati-link' href='http://technorati.com/tag/programmer' rel='tag' target='_self'>programmer</a>, <a class='technorati-link' href='http://technorati.com/tag/programming' rel='tag' target='_self'>programming</a>, <a class='technorati-link' href='http://technorati.com/tag/tinkerer' rel='tag' target='_self'>tinkerer</a></p>

<!-- end wp-tags-to-technorati -->

<p><a href="http://feedads.g.doubleclick.net/~a/WyXzT69DaKLKKe4srfS0G2nfNWY/0/da"><img src="http://feedads.g.doubleclick.net/~a/WyXzT69DaKLKKe4srfS0G2nfNWY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/WyXzT69DaKLKKe4srfS0G2nfNWY/1/da"><img src="http://feedads.g.doubleclick.net/~a/WyXzT69DaKLKKe4srfS0G2nfNWY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Almost?a=DI2oq1hpBAE:-yO3_v2ZSEg:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Almost?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=DI2oq1hpBAE:-yO3_v2ZSEg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Almost?i=DI2oq1hpBAE:-yO3_v2ZSEg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=DI2oq1hpBAE:-yO3_v2ZSEg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Almost?i=DI2oq1hpBAE:-yO3_v2ZSEg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=DI2oq1hpBAE:-yO3_v2ZSEg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Almost?i=DI2oq1hpBAE:-yO3_v2ZSEg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=DI2oq1hpBAE:-yO3_v2ZSEg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Almost?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=DI2oq1hpBAE:-yO3_v2ZSEg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Almost?i=DI2oq1hpBAE:-yO3_v2ZSEg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=DI2oq1hpBAE:-yO3_v2ZSEg:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Almost?d=YwkR-u9nhCs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://recaptured.in/write/2012/05/the-fizzbuzz-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://recaptured.in/write/2012/05/the-fizzbuzz-test/</feedburner:origLink></item>
		<item>
		<title>On Top Of The World: May 2012</title>
		<link>http://feedproxy.google.com/~r/Almost/~3/lm-WJOkGnng/</link>
		<comments>http://recaptured.in/write/2012/05/on-top-of-the-world-may-2012/#comments</comments>
		<pubDate>Wed, 02 May 2012 12:55:23 +0000</pubDate>
		<dc:creator>hypnos</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[rides]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[Ladakh]]></category>
		<category><![CDATA[Leh]]></category>
		<category><![CDATA[May 2012]]></category>
		<category><![CDATA[motorcycle]]></category>
		<category><![CDATA[trip]]></category>
		<category><![CDATA[wallpapers]]></category>

		<guid isPermaLink="false">http://recaptured.in/write/?p=1583</guid>
		<description><![CDATA[On our way to Leh, July 2011. Wallpapers: Technorati Tags: calendar, Ladakh, Leh, May 2012, motorcycle, travel, trip, wallpapers]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/recaptured/6989253800/" title="On top of the world by recaptured, on Flickr"><img src="http://farm8.staticflickr.com/7051/6989253800_e093aedce2_b.jpg" alt="On top of the world"></a><br />
On our way to Leh, July 2011.</p>
<p>Wallpapers:<br />

<a href='http://recaptured.in/write/2012/05/on-top-of-the-world-may-2012/may-2012_1280x800/' title='May 2012_1280x800'><img width="150" height="150" src="http://recaptured.in/write/wp-content/uploads/2012/05/May-2012_1280x800-150x150.jpg" class="attachment-thumbnail" alt="May 2012_1280x800" title="May 2012_1280x800" /></a>
<a href='http://recaptured.in/write/2012/05/on-top-of-the-world-may-2012/may-2012_1366x768/' title='May 2012_1366x768'><img width="150" height="150" src="http://recaptured.in/write/wp-content/uploads/2012/05/May-2012_1366x768-150x150.jpg" class="attachment-thumbnail" alt="May 2012_1366x768" title="May 2012_1366x768" /></a>
<a href='http://recaptured.in/write/2012/05/on-top-of-the-world-may-2012/may-2012_1650x1080/' title='May 2012_1650x1080'><img width="150" height="150" src="http://recaptured.in/write/wp-content/uploads/2012/05/May-2012_1650x1080-150x150.jpg" class="attachment-thumbnail" alt="May 2012_1650x1080" title="May 2012_1650x1080" /></a>
<a href='http://recaptured.in/write/2012/05/on-top-of-the-world-may-2012/may-2012_1920x1200/' title='May 2012_1920x1200'><img width="150" height="150" src="http://recaptured.in/write/wp-content/uploads/2012/05/May-2012_1920x1200-150x150.jpg" class="attachment-thumbnail" alt="May 2012_1920x1200" title="May 2012_1920x1200" /></a>
<a href='http://recaptured.in/write/2012/05/on-top-of-the-world-may-2012/may-2012_2560x1440/' title='May 2012_2560x1440'><img width="150" height="150" src="http://recaptured.in/write/wp-content/uploads/2012/05/May-2012_2560x1440-150x150.jpg" class="attachment-thumbnail" alt="May 2012_2560x1440" title="May 2012_2560x1440" /></a>
</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/calendar' rel='tag' target='_self'>calendar</a>, <a class='technorati-link' href='http://technorati.com/tag/Ladakh' rel='tag' target='_self'>Ladakh</a>, <a class='technorati-link' href='http://technorati.com/tag/Leh' rel='tag' target='_self'>Leh</a>, <a class='technorati-link' href='http://technorati.com/tag/May+2012' rel='tag' target='_self'>May 2012</a>, <a class='technorati-link' href='http://technorati.com/tag/motorcycle' rel='tag' target='_self'>motorcycle</a>, <a class='technorati-link' href='http://technorati.com/tag/travel' rel='tag' target='_self'>travel</a>, <a class='technorati-link' href='http://technorati.com/tag/trip' rel='tag' target='_self'>trip</a>, <a class='technorati-link' href='http://technorati.com/tag/wallpapers' rel='tag' target='_self'>wallpapers</a></p>

<!-- end wp-tags-to-technorati -->

<p><a href="http://feedads.g.doubleclick.net/~a/2vD9t3bZDSFCXc4UWqTRaRIKh2A/0/da"><img src="http://feedads.g.doubleclick.net/~a/2vD9t3bZDSFCXc4UWqTRaRIKh2A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2vD9t3bZDSFCXc4UWqTRaRIKh2A/1/da"><img src="http://feedads.g.doubleclick.net/~a/2vD9t3bZDSFCXc4UWqTRaRIKh2A/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Almost?a=lm-WJOkGnng:pnBnebFbb2U:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Almost?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=lm-WJOkGnng:pnBnebFbb2U:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Almost?i=lm-WJOkGnng:pnBnebFbb2U:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=lm-WJOkGnng:pnBnebFbb2U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Almost?i=lm-WJOkGnng:pnBnebFbb2U:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=lm-WJOkGnng:pnBnebFbb2U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Almost?i=lm-WJOkGnng:pnBnebFbb2U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=lm-WJOkGnng:pnBnebFbb2U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Almost?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=lm-WJOkGnng:pnBnebFbb2U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Almost?i=lm-WJOkGnng:pnBnebFbb2U:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=lm-WJOkGnng:pnBnebFbb2U:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Almost?d=YwkR-u9nhCs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://recaptured.in/write/2012/05/on-top-of-the-world-may-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://recaptured.in/write/2012/05/on-top-of-the-world-may-2012/</feedburner:origLink></item>
		<item>
		<title>This be Sarchu</title>
		<link>http://feedproxy.google.com/~r/Almost/~3/r7J8ZzEwXkY/</link>
		<comments>http://recaptured.in/write/2012/04/this-be-sarchu/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 20:10:33 +0000</pubDate>
		<dc:creator>hypnos</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[camp]]></category>
		<category><![CDATA[Himalayas]]></category>
		<category><![CDATA[Ladakh]]></category>
		<category><![CDATA[Leh]]></category>
		<category><![CDATA[mountains]]></category>
		<category><![CDATA[Sarchu]]></category>
		<category><![CDATA[tent]]></category>

		<guid isPermaLink="false">http://recaptured.in/write/?p=1580</guid>
		<description><![CDATA[The vast plateau-esque high-land where travellers sleep in tents. And one can see millions of stars at night Technorati Tags: camp, Himalayas, Ladakh, Leh, mountains, photography, Sarchu, tent, travel]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/recaptured/7125629503/" title="This be Sarchu by recaptured, on Flickr"><img src="http://farm8.staticflickr.com/7109/7125629503_dd430b3c90_b.jpg" alt="This be Sarchu"></a><br />
The vast plateau-esque high-land where travellers sleep in tents.</p>
<p>And one can see millions of stars at night</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/camp' rel='tag' target='_self'>camp</a>, <a class='technorati-link' href='http://technorati.com/tag/Himalayas' rel='tag' target='_self'>Himalayas</a>, <a class='technorati-link' href='http://technorati.com/tag/Ladakh' rel='tag' target='_self'>Ladakh</a>, <a class='technorati-link' href='http://technorati.com/tag/Leh' rel='tag' target='_self'>Leh</a>, <a class='technorati-link' href='http://technorati.com/tag/mountains' rel='tag' target='_self'>mountains</a>, <a class='technorati-link' href='http://technorati.com/tag/photography' rel='tag' target='_self'>photography</a>, <a class='technorati-link' href='http://technorati.com/tag/Sarchu' rel='tag' target='_self'>Sarchu</a>, <a class='technorati-link' href='http://technorati.com/tag/tent' rel='tag' target='_self'>tent</a>, <a class='technorati-link' href='http://technorati.com/tag/travel' rel='tag' target='_self'>travel</a></p>

<!-- end wp-tags-to-technorati -->

<p><a href="http://feedads.g.doubleclick.net/~a/--qhrHKGL20rWFDjkY4DXbvzb9Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/--qhrHKGL20rWFDjkY4DXbvzb9Q/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/--qhrHKGL20rWFDjkY4DXbvzb9Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/--qhrHKGL20rWFDjkY4DXbvzb9Q/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Almost?a=r7J8ZzEwXkY:plDGh1uCsnA:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Almost?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=r7J8ZzEwXkY:plDGh1uCsnA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Almost?i=r7J8ZzEwXkY:plDGh1uCsnA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=r7J8ZzEwXkY:plDGh1uCsnA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Almost?i=r7J8ZzEwXkY:plDGh1uCsnA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=r7J8ZzEwXkY:plDGh1uCsnA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Almost?i=r7J8ZzEwXkY:plDGh1uCsnA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=r7J8ZzEwXkY:plDGh1uCsnA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Almost?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=r7J8ZzEwXkY:plDGh1uCsnA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Almost?i=r7J8ZzEwXkY:plDGh1uCsnA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=r7J8ZzEwXkY:plDGh1uCsnA:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Almost?d=YwkR-u9nhCs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://recaptured.in/write/2012/04/this-be-sarchu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://recaptured.in/write/2012/04/this-be-sarchu/</feedburner:origLink></item>
		<item>
		<title>April 2012: A Good Morning en route Ladakh</title>
		<link>http://feedproxy.google.com/~r/Almost/~3/rW3jU6t3PJg/</link>
		<comments>http://recaptured.in/write/2012/04/april-2012-a-good-morning-en-route-ladakh/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 13:59:35 +0000</pubDate>
		<dc:creator>hypnos</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[April 2012]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[Keylong]]></category>
		<category><![CDATA[Ladakh]]></category>
		<category><![CDATA[landscape]]></category>
		<category><![CDATA[mountains]]></category>
		<category><![CDATA[silhouette]]></category>

		<guid isPermaLink="false">http://recaptured.in/write/?p=1563</guid>
		<description><![CDATA[The night halt at Keylong was comfortable &#8211; the most comfortable we had until we reached Leh. And the Himalayas greeted us thus after the comfortable sleep. Technorati Tags: April 2012, calendar, Keylong, Ladakh, landscape, mountains, silhouette, wallpaper]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/recaptured/7038690671/" title="A Good Morning en route Ladakh by recaptured, on Flickr"><img src="http://farm8.staticflickr.com/7176/7038690671_4b16d20273_b.jpg" alt="A Good Morning en route Ladakh"></a><br />
The night halt at Keylong was comfortable &#8211; the most comfortable we had until we reached Leh.</p>
<p>And the Himalayas greeted us thus after the comfortable sleep.</p>

<a href='http://recaptured.in/write/2012/04/april-2012-a-good-morning-en-route-ladakh/april-2012_1280x800/' title='April 2012_1280x800'><img width="150" height="150" src="http://recaptured.in/write/wp-content/uploads/2012/04/April-2012_1280x800-150x150.jpg" class="attachment-thumbnail" alt="April 2012_1280x800" title="April 2012_1280x800" /></a>
<a href='http://recaptured.in/write/2012/04/april-2012-a-good-morning-en-route-ladakh/april-2012_1366x768/' title='April 2012_1366x768'><img width="150" height="150" src="http://recaptured.in/write/wp-content/uploads/2012/04/April-2012_1366x768-150x150.jpg" class="attachment-thumbnail" alt="April 2012_1366x768" title="April 2012_1366x768" /></a>
<a href='http://recaptured.in/write/2012/04/april-2012-a-good-morning-en-route-ladakh/april-2012_1650x1080/' title='April 2012_1650x1080'><img width="150" height="150" src="http://recaptured.in/write/wp-content/uploads/2012/04/April-2012_1650x1080-150x150.jpg" class="attachment-thumbnail" alt="April 2012_1650x1080" title="April 2012_1650x1080" /></a>
<a href='http://recaptured.in/write/2012/04/april-2012-a-good-morning-en-route-ladakh/april-2012_1920x1200/' title='April 2012_1920x1200'><img width="150" height="150" src="http://recaptured.in/write/wp-content/uploads/2012/04/April-2012_1920x1200-150x150.jpg" class="attachment-thumbnail" alt="April 2012_1920x1200" title="April 2012_1920x1200" /></a>
<a href='http://recaptured.in/write/2012/04/april-2012-a-good-morning-en-route-ladakh/april-2012_2560x1440/' title='April 2012_2560x1440'><img width="150" height="150" src="http://recaptured.in/write/wp-content/uploads/2012/04/April-2012_2560x1440-150x150.jpg" class="attachment-thumbnail" alt="April 2012_2560x1440" title="April 2012_2560x1440" /></a>


<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/April+2012' rel='tag' target='_self'>April 2012</a>, <a class='technorati-link' href='http://technorati.com/tag/calendar' rel='tag' target='_self'>calendar</a>, <a class='technorati-link' href='http://technorati.com/tag/Keylong' rel='tag' target='_self'>Keylong</a>, <a class='technorati-link' href='http://technorati.com/tag/Ladakh' rel='tag' target='_self'>Ladakh</a>, <a class='technorati-link' href='http://technorati.com/tag/landscape' rel='tag' target='_self'>landscape</a>, <a class='technorati-link' href='http://technorati.com/tag/mountains' rel='tag' target='_self'>mountains</a>, <a class='technorati-link' href='http://technorati.com/tag/silhouette' rel='tag' target='_self'>silhouette</a>, <a class='technorati-link' href='http://technorati.com/tag/wallpaper' rel='tag' target='_self'>wallpaper</a></p>

<!-- end wp-tags-to-technorati -->

<p><a href="http://feedads.g.doubleclick.net/~a/20t3AgJPfCNJQquIpcVs41wuzfw/0/da"><img src="http://feedads.g.doubleclick.net/~a/20t3AgJPfCNJQquIpcVs41wuzfw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/20t3AgJPfCNJQquIpcVs41wuzfw/1/da"><img src="http://feedads.g.doubleclick.net/~a/20t3AgJPfCNJQquIpcVs41wuzfw/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Almost?a=rW3jU6t3PJg:LUUDxhjqBqQ:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Almost?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=rW3jU6t3PJg:LUUDxhjqBqQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Almost?i=rW3jU6t3PJg:LUUDxhjqBqQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=rW3jU6t3PJg:LUUDxhjqBqQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Almost?i=rW3jU6t3PJg:LUUDxhjqBqQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=rW3jU6t3PJg:LUUDxhjqBqQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Almost?i=rW3jU6t3PJg:LUUDxhjqBqQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=rW3jU6t3PJg:LUUDxhjqBqQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Almost?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=rW3jU6t3PJg:LUUDxhjqBqQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Almost?i=rW3jU6t3PJg:LUUDxhjqBqQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=rW3jU6t3PJg:LUUDxhjqBqQ:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Almost?d=YwkR-u9nhCs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://recaptured.in/write/2012/04/april-2012-a-good-morning-en-route-ladakh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://recaptured.in/write/2012/04/april-2012-a-good-morning-en-route-ladakh/</feedburner:origLink></item>
		<item>
		<title>Devotion</title>
		<link>http://feedproxy.google.com/~r/Almost/~3/E1ELS8Np1N4/</link>
		<comments>http://recaptured.in/write/2012/03/devotion/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 20:58:11 +0000</pubDate>
		<dc:creator>hypnos</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[candles]]></category>
		<category><![CDATA[Christian]]></category>
		<category><![CDATA[Church]]></category>
		<category><![CDATA[devotees]]></category>
		<category><![CDATA[devotion]]></category>
		<category><![CDATA[http://farm8.staticflickr.com/7060/6860551498_af2ec4511a_s.jpg]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Kerala]]></category>
		<category><![CDATA[religion]]></category>
		<category><![CDATA[Syriac]]></category>

		<guid isPermaLink="false">http://recaptured.in/write/?p=1559</guid>
		<description><![CDATA[Devotees lighting candles for St. Gregorius Gevargis at St. Peter&#8217;s Church, Parumala, Kerala, December, 2011 on Flickr &#8211; on Facebook Technorati Tags: candles, Christian, Church, devotees, devotion, http://farm8.staticflickr.com/7060/6860551498_af2ec4511a_s.jpg, India, Kerala, religion, Syriac, travel]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/recaptured/6860551498/" title="Devotion by recaptured, on Flickr"><img src="http://farm8.staticflickr.com/7060/6860551498_af2ec4511a_b.jpg" alt="Devotion"></a><br />
Devotees lighting candles for St. Gregorius Gevargis at St. Peter&#8217;s Church, Parumala, Kerala, December, 2011<br />
<a href="http://www.flickr.com/photos/recaptured/6860551498/">on Flickr</a> &#8211; <a href="https://www.facebook.com/photo.php?fbid=310548912344482&#038;set=a.260028504063190.66578.144860248913350&#038;type=1">on Facebook</a></p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/candles' rel='tag' target='_self'>candles</a>, <a class='technorati-link' href='http://technorati.com/tag/Christian' rel='tag' target='_self'>Christian</a>, <a class='technorati-link' href='http://technorati.com/tag/Church' rel='tag' target='_self'>Church</a>, <a class='technorati-link' href='http://technorati.com/tag/devotees' rel='tag' target='_self'>devotees</a>, <a class='technorati-link' href='http://technorati.com/tag/devotion' rel='tag' target='_self'>devotion</a>, <a class='technorati-link' href='http://technorati.com/tag/http%3A%2F%2Ffarm8.staticflickr.com%2F7060%2F6860551498_af2ec4511a_s.jpg' rel='tag' target='_self'>http://farm8.staticflickr.com/7060/6860551498_af2ec4511a_s.jpg</a>, <a class='technorati-link' href='http://technorati.com/tag/India' rel='tag' target='_self'>India</a>, <a class='technorati-link' href='http://technorati.com/tag/Kerala' rel='tag' target='_self'>Kerala</a>, <a class='technorati-link' href='http://technorati.com/tag/religion' rel='tag' target='_self'>religion</a>, <a class='technorati-link' href='http://technorati.com/tag/Syriac' rel='tag' target='_self'>Syriac</a>, <a class='technorati-link' href='http://technorati.com/tag/travel' rel='tag' target='_self'>travel</a></p>

<!-- end wp-tags-to-technorati -->

<p><a href="http://feedads.g.doubleclick.net/~a/rn6GyKEq3WgmXlemYbwNpwhrbSM/0/da"><img src="http://feedads.g.doubleclick.net/~a/rn6GyKEq3WgmXlemYbwNpwhrbSM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rn6GyKEq3WgmXlemYbwNpwhrbSM/1/da"><img src="http://feedads.g.doubleclick.net/~a/rn6GyKEq3WgmXlemYbwNpwhrbSM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Almost?a=E1ELS8Np1N4:zyeAxSEGoeI:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Almost?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=E1ELS8Np1N4:zyeAxSEGoeI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Almost?i=E1ELS8Np1N4:zyeAxSEGoeI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=E1ELS8Np1N4:zyeAxSEGoeI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Almost?i=E1ELS8Np1N4:zyeAxSEGoeI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=E1ELS8Np1N4:zyeAxSEGoeI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Almost?i=E1ELS8Np1N4:zyeAxSEGoeI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=E1ELS8Np1N4:zyeAxSEGoeI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Almost?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=E1ELS8Np1N4:zyeAxSEGoeI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Almost?i=E1ELS8Np1N4:zyeAxSEGoeI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=E1ELS8Np1N4:zyeAxSEGoeI:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Almost?d=YwkR-u9nhCs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://recaptured.in/write/2012/03/devotion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://recaptured.in/write/2012/03/devotion/</feedburner:origLink></item>
		<item>
		<title>Recaptured’s Magazine Interview</title>
		<link>http://feedproxy.google.com/~r/Almost/~3/8pm6_1EfXrM/</link>
		<comments>http://recaptured.in/write/2012/03/recaptureds-magazine-interview/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 19:50:33 +0000</pubDate>
		<dc:creator>hypnos</dc:creator>
				<category><![CDATA[narcissism]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[March 2012]]></category>
		<category><![CDATA[monthly]]></category>
		<category><![CDATA[periodical]]></category>
		<category><![CDATA[Pool]]></category>

		<guid isPermaLink="false">http://recaptured.in/write/?p=1555</guid>
		<description><![CDATA[Bucket lists make for interesting reads. They give an insight into the character and personality of the person who wrote it. A middle class Indian boy like yours truly who grew up on a staple diet of books and magazines more than cable television has a particular kind of bucket list. So far two items [...]]]></description>
			<content:encoded><![CDATA[<p>Bucket lists make for interesting reads. They give an insight into the character and personality of the person who wrote it.</p>
<p>A middle class Indian boy like yours truly who grew up on a staple diet of books and magazines more than cable television has a particular kind of bucket list. So far two items had been crossed off it: getting published and lighting the lamp at a government institution&#8217;s festival. The former was a happy moment, the latter an embarrassing one. But that&#8217;s a story for another time. It&#8217;s time to tell you about the third item that has been ticked off the list.</p>
<p><del datetime="2012-03-16T19:25:34+00:00">3. Interview in a major national magazine</del></p>
<p><a href="http://www.poolmagazine.in">Pool</a> is one of India&#8217;s leading creative arts &amp; design magazines. And owing to the fact that it has been started by <a title="Indi Design">Sudhir Sharma</a> himself, it&#8217;s immensely popular in the professional design community.</p>
<p>They have been kind enough to feature my interview in the <a href="http://www.poolmagazine.in/pool-21/">March 2012</a> issue. You can contact them for purchasing a copy, or simply <a href="http://issuu.com/poolmagazine/docs/pool21?mode=embed&amp;layout=http%3A%2F%2Fskin.issuu.com%2Fv%2Fdarkicons%2Flayout.xml">read the issue online here</a> &#8211; the interview appears on page 12 onwards in the print magazine, which corresponds to page 14 onwards online.</p>
<p><a href="http://recaptured.in/write/wp-content/uploads/2012/03/DSC3222.jpg"><img class="aligncenter size-large wp-image-1556" title="_DSC3222" src="http://recaptured.in/write/wp-content/uploads/2012/03/DSC3222-1024x480.jpg" alt="" /></a></p>
<p>Please read, comment and share <img src='http://recaptured.in/write/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/design' rel='tag' target='_self'>design</a>, <a class='technorati-link' href='http://technorati.com/tag/interview' rel='tag' target='_self'>interview</a>, <a class='technorati-link' href='http://technorati.com/tag/magazine' rel='tag' target='_self'>magazine</a>, <a class='technorati-link' href='http://technorati.com/tag/March+2012' rel='tag' target='_self'>March 2012</a>, <a class='technorati-link' href='http://technorati.com/tag/monthly' rel='tag' target='_self'>monthly</a>, <a class='technorati-link' href='http://technorati.com/tag/periodical' rel='tag' target='_self'>periodical</a>, <a class='technorati-link' href='http://technorati.com/tag/photography' rel='tag' target='_self'>photography</a>, <a class='technorati-link' href='http://technorati.com/tag/Pool' rel='tag' target='_self'>Pool</a></p>

<!-- end wp-tags-to-technorati -->

<p><a href="http://feedads.g.doubleclick.net/~a/zfsqzf5Nn_QJEqAEIIUXOEmkXkw/0/da"><img src="http://feedads.g.doubleclick.net/~a/zfsqzf5Nn_QJEqAEIIUXOEmkXkw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zfsqzf5Nn_QJEqAEIIUXOEmkXkw/1/da"><img src="http://feedads.g.doubleclick.net/~a/zfsqzf5Nn_QJEqAEIIUXOEmkXkw/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Almost?a=8pm6_1EfXrM:jvj-CiuPplU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Almost?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=8pm6_1EfXrM:jvj-CiuPplU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Almost?i=8pm6_1EfXrM:jvj-CiuPplU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=8pm6_1EfXrM:jvj-CiuPplU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Almost?i=8pm6_1EfXrM:jvj-CiuPplU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=8pm6_1EfXrM:jvj-CiuPplU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Almost?i=8pm6_1EfXrM:jvj-CiuPplU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=8pm6_1EfXrM:jvj-CiuPplU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Almost?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=8pm6_1EfXrM:jvj-CiuPplU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Almost?i=8pm6_1EfXrM:jvj-CiuPplU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=8pm6_1EfXrM:jvj-CiuPplU:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Almost?d=YwkR-u9nhCs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://recaptured.in/write/2012/03/recaptureds-magazine-interview/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://recaptured.in/write/2012/03/recaptureds-magazine-interview/</feedburner:origLink></item>
		<item>
		<title>Ready for Take-Off</title>
		<link>http://feedproxy.google.com/~r/Almost/~3/ycxuD6ObKvM/</link>
		<comments>http://recaptured.in/write/2012/03/ready-for-take-off/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 14:16:13 +0000</pubDate>
		<dc:creator>hypnos</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[bee]]></category>
		<category><![CDATA[flower]]></category>

		<guid isPermaLink="false">http://recaptured.in/write/?p=1552</guid>
		<description><![CDATA[Technorati Tags: bee, flower, photography]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/recaptured/6817808320/" title="Ready for Take-Off by recaptured, on Flickr"><img src="http://farm8.staticflickr.com/7047/6817808320_918280101f_b.jpg" alt="Ready for Take-Off"></a></p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/bee' rel='tag' target='_self'>bee</a>, <a class='technorati-link' href='http://technorati.com/tag/flower' rel='tag' target='_self'>flower</a>, <a class='technorati-link' href='http://technorati.com/tag/photography' rel='tag' target='_self'>photography</a></p>

<!-- end wp-tags-to-technorati -->

<p><a href="http://feedads.g.doubleclick.net/~a/_JOI3zY6i6IVxHgGonnANw61k0A/0/da"><img src="http://feedads.g.doubleclick.net/~a/_JOI3zY6i6IVxHgGonnANw61k0A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_JOI3zY6i6IVxHgGonnANw61k0A/1/da"><img src="http://feedads.g.doubleclick.net/~a/_JOI3zY6i6IVxHgGonnANw61k0A/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Almost?a=ycxuD6ObKvM:qPXMyFgArXQ:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Almost?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ycxuD6ObKvM:qPXMyFgArXQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Almost?i=ycxuD6ObKvM:qPXMyFgArXQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ycxuD6ObKvM:qPXMyFgArXQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Almost?i=ycxuD6ObKvM:qPXMyFgArXQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ycxuD6ObKvM:qPXMyFgArXQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Almost?i=ycxuD6ObKvM:qPXMyFgArXQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ycxuD6ObKvM:qPXMyFgArXQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Almost?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ycxuD6ObKvM:qPXMyFgArXQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Almost?i=ycxuD6ObKvM:qPXMyFgArXQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ycxuD6ObKvM:qPXMyFgArXQ:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Almost?d=YwkR-u9nhCs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://recaptured.in/write/2012/03/ready-for-take-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://recaptured.in/write/2012/03/ready-for-take-off/</feedburner:origLink></item>
		<item>
		<title>Ankita</title>
		<link>http://feedproxy.google.com/~r/Almost/~3/QeeDoZf4KsI/</link>
		<comments>http://recaptured.in/write/2012/03/ankita/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 07:36:17 +0000</pubDate>
		<dc:creator>hypnos</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[Ankita]]></category>
		<category><![CDATA[portrait]]></category>

		<guid isPermaLink="false">http://recaptured.in/write/?p=1548</guid>
		<description><![CDATA[on Flickr &#8211; on Facebook Technorati Tags: Ankita, photography, portrait]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/recaptured/6958485503/" title="Ankita by recaptured, on Flickr"><img src="http://farm8.staticflickr.com/7036/6958485503_e39c9619d9_b.jpg" alt="Ankita"></a></p>
<p><a href="http://www.flickr.com/photos/recaptured/6958485503/">on Flickr</a> &#8211; <a href="http://www.facebook.com/photo.php?fbid=300251450040895&#038;set=a.263947270337980.67434.144860248913350&#038;type=1&#038;theater">on Facebook</a></p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Ankita' rel='tag' target='_self'>Ankita</a>, <a class='technorati-link' href='http://technorati.com/tag/photography' rel='tag' target='_self'>photography</a>, <a class='technorati-link' href='http://technorati.com/tag/portrait' rel='tag' target='_self'>portrait</a></p>

<!-- end wp-tags-to-technorati -->

<p><a href="http://feedads.g.doubleclick.net/~a/0cIL6EAuKrkNdJ-bZfIOTUQn9y4/0/da"><img src="http://feedads.g.doubleclick.net/~a/0cIL6EAuKrkNdJ-bZfIOTUQn9y4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0cIL6EAuKrkNdJ-bZfIOTUQn9y4/1/da"><img src="http://feedads.g.doubleclick.net/~a/0cIL6EAuKrkNdJ-bZfIOTUQn9y4/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Almost?a=QeeDoZf4KsI:2SITYgWgmBk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Almost?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=QeeDoZf4KsI:2SITYgWgmBk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Almost?i=QeeDoZf4KsI:2SITYgWgmBk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=QeeDoZf4KsI:2SITYgWgmBk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Almost?i=QeeDoZf4KsI:2SITYgWgmBk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=QeeDoZf4KsI:2SITYgWgmBk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Almost?i=QeeDoZf4KsI:2SITYgWgmBk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=QeeDoZf4KsI:2SITYgWgmBk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Almost?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=QeeDoZf4KsI:2SITYgWgmBk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Almost?i=QeeDoZf4KsI:2SITYgWgmBk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=QeeDoZf4KsI:2SITYgWgmBk:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Almost?d=YwkR-u9nhCs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://recaptured.in/write/2012/03/ankita/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://recaptured.in/write/2012/03/ankita/</feedburner:origLink></item>
		<item>
		<title>Marching Ahead</title>
		<link>http://feedproxy.google.com/~r/Almost/~3/ODZZB9rC8ng/</link>
		<comments>http://recaptured.in/write/2012/03/marching-ahead/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 13:13:35 +0000</pubDate>
		<dc:creator>hypnos</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[50mm]]></category>
		<category><![CDATA[Pune]]></category>
		<category><![CDATA[swan]]></category>

		<guid isPermaLink="false">http://recaptured.in/write/?p=1545</guid>
		<description><![CDATA[on Flickr &#8211; on Facebook Technorati Tags: 50mm, photography, Pune, swan]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/recaptured/6809442696/" title="Marching Ahead by recaptured, on Flickr"><img src="http://farm8.staticflickr.com/7043/6809442696_1a788a6744_b.jpg" alt="Marching Ahead"></a><br />
<A href="http://www.flickr.com/photos/recaptured/6809442696/">on Flickr</a> &#8211; <a href="http://www.facebook.com/photo.php?fbid=299608050105235&#038;set=a.295279443871429.73372.144860248913350&#038;type=1&#038;theater">on Facebook</a></p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/50mm' rel='tag' target='_self'>50mm</a>, <a class='technorati-link' href='http://technorati.com/tag/photography' rel='tag' target='_self'>photography</a>, <a class='technorati-link' href='http://technorati.com/tag/Pune' rel='tag' target='_self'>Pune</a>, <a class='technorati-link' href='http://technorati.com/tag/swan' rel='tag' target='_self'>swan</a></p>

<!-- end wp-tags-to-technorati -->

<p><a href="http://feedads.g.doubleclick.net/~a/FyTyM2KkOs8ZQ1velfffMrzX-Gg/0/da"><img src="http://feedads.g.doubleclick.net/~a/FyTyM2KkOs8ZQ1velfffMrzX-Gg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/FyTyM2KkOs8ZQ1velfffMrzX-Gg/1/da"><img src="http://feedads.g.doubleclick.net/~a/FyTyM2KkOs8ZQ1velfffMrzX-Gg/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Almost?a=ODZZB9rC8ng:hJ4cN_eRTIY:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Almost?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ODZZB9rC8ng:hJ4cN_eRTIY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Almost?i=ODZZB9rC8ng:hJ4cN_eRTIY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ODZZB9rC8ng:hJ4cN_eRTIY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Almost?i=ODZZB9rC8ng:hJ4cN_eRTIY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ODZZB9rC8ng:hJ4cN_eRTIY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Almost?i=ODZZB9rC8ng:hJ4cN_eRTIY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ODZZB9rC8ng:hJ4cN_eRTIY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Almost?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ODZZB9rC8ng:hJ4cN_eRTIY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Almost?i=ODZZB9rC8ng:hJ4cN_eRTIY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=ODZZB9rC8ng:hJ4cN_eRTIY:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Almost?d=YwkR-u9nhCs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://recaptured.in/write/2012/03/marching-ahead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://recaptured.in/write/2012/03/marching-ahead/</feedburner:origLink></item>
		<item>
		<title>What are YOU looking at?</title>
		<link>http://feedproxy.google.com/~r/Almost/~3/_hlHScudOsQ/</link>
		<comments>http://recaptured.in/write/2012/03/what-are-you-looking-at/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 12:40:48 +0000</pubDate>
		<dc:creator>hypnos</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[50mm]]></category>
		<category><![CDATA[bird]]></category>
		<category><![CDATA[Lakaki lake]]></category>
		<category><![CDATA[swan]]></category>

		<guid isPermaLink="false">http://recaptured.in/write/?p=1540</guid>
		<description><![CDATA[Technorati Tags: 50mm, bird, Lakaki lake, photography, swan]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/recaptured/6946124763/" title="What are YOU looking at? by recaptured, on Flickr"><img src="http://farm8.staticflickr.com/7055/6946124763_1bc8193890_b.jpg" alt="What are YOU looking at?"></a></p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/50mm' rel='tag' target='_self'>50mm</a>, <a class='technorati-link' href='http://technorati.com/tag/bird' rel='tag' target='_self'>bird</a>, <a class='technorati-link' href='http://technorati.com/tag/Lakaki+lake' rel='tag' target='_self'>Lakaki lake</a>, <a class='technorati-link' href='http://technorati.com/tag/photography' rel='tag' target='_self'>photography</a>, <a class='technorati-link' href='http://technorati.com/tag/swan' rel='tag' target='_self'>swan</a></p>

<!-- end wp-tags-to-technorati -->

<p><a href="http://feedads.g.doubleclick.net/~a/yJ_UF2ArRh1DPyF1YjHnS0wpR-M/0/da"><img src="http://feedads.g.doubleclick.net/~a/yJ_UF2ArRh1DPyF1YjHnS0wpR-M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/yJ_UF2ArRh1DPyF1YjHnS0wpR-M/1/da"><img src="http://feedads.g.doubleclick.net/~a/yJ_UF2ArRh1DPyF1YjHnS0wpR-M/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Almost?a=_hlHScudOsQ:Gr6pYBrvAIc:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Almost?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=_hlHScudOsQ:Gr6pYBrvAIc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Almost?i=_hlHScudOsQ:Gr6pYBrvAIc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=_hlHScudOsQ:Gr6pYBrvAIc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Almost?i=_hlHScudOsQ:Gr6pYBrvAIc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=_hlHScudOsQ:Gr6pYBrvAIc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Almost?i=_hlHScudOsQ:Gr6pYBrvAIc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=_hlHScudOsQ:Gr6pYBrvAIc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Almost?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=_hlHScudOsQ:Gr6pYBrvAIc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Almost?i=_hlHScudOsQ:Gr6pYBrvAIc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Almost?a=_hlHScudOsQ:Gr6pYBrvAIc:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Almost?d=YwkR-u9nhCs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://recaptured.in/write/2012/03/what-are-you-looking-at/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://recaptured.in/write/2012/03/what-are-you-looking-at/</feedburner:origLink></item>
	</channel>
</rss>

