<?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>Sushil Shirbhate&#039;s Blog</title>
	<atom:link href="http://sushilshirbhate.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sushilshirbhate.wordpress.com</link>
	<description>नेमकं कुठल्या क्षणाने आयुष्य अर्थपूर्ण होतं हे कळत नाही, पण प्रत्येक क्षण जागेपणाने जगावा लागतो.</description>
	<lastBuildDate>Wed, 24 Aug 2011 09:06:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sushilshirbhate.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/1103248b595eae52849f60c4b0a5cf6a?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Sushil Shirbhate&#039;s Blog</title>
		<link>http://sushilshirbhate.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sushilshirbhate.wordpress.com/osd.xml" title="Sushil Shirbhate&#039;s Blog" />
	<atom:link rel='hub' href='http://sushilshirbhate.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Magento theme development cheat-sheet</title>
		<link>http://sushilshirbhate.wordpress.com/2011/07/07/magento-theme-development-cheat-sheet/</link>
		<comments>http://sushilshirbhate.wordpress.com/2011/07/07/magento-theme-development-cheat-sheet/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 09:11:13 +0000</pubDate>
		<dc:creator>sushilshirbhate</dc:creator>
				<category><![CDATA[PHP tutorial]]></category>

		<guid isPermaLink="false">http://sushilshirbhate.wordpress.com/?p=107</guid>
		<description><![CDATA[For use in the .phtml files: Page path: &#60;?php echo $this-&#62;getUrl('mypage'); ?&#62; Image path: &#60;?php echo $this-&#62;getSkinUrl('images/button.gif'); ?&#62; Product link: &#60;?php echo $this-&#62;getProductData()-&#62;getProductUrl(); ?&#62; Product name: &#60;?php echo $this-&#62;htmlEscape($this-&#62;getProductData()-&#62;getName()); ?&#62; Display all of a product’s categories: &#60;?php $categories = $_product-&#62;getCategoryIds(); foreach($categories as $k =&#62; $_category_id): $_category = Mage::getModel('catalog/category')-&#62;load($_category_id); ?&#62; &#60;a href="&#60;?php echo $_category-&#62;getUrl() ?&#62;"&#62;&#60;?php echo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=107&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>For use in the .phtml files:

<strong>Page path:</strong>
&lt;?php echo $this-&gt;getUrl('mypage'); ?&gt;

<strong>Image path:</strong>
&lt;?php echo $this-&gt;getSkinUrl('images/button.gif'); ?&gt;

<strong>Product link:</strong>
&lt;?php echo $this-&gt;getProductData()-&gt;getProductUrl(); ?&gt;

<strong>Product name:</strong>
&lt;?php echo $this-&gt;htmlEscape($this-&gt;getProductData()-&gt;getName()); ?&gt;

<strong>Display all of a product’s categories:</strong>
	&lt;?php
	$categories = $_product-&gt;getCategoryIds();
	foreach($categories as $k =&gt; $_category_id):
		$_category = Mage::getModel('catalog/category')-&gt;load($_category_id);
	?&gt;
		&lt;a href="&lt;?php echo $_category-&gt;getUrl() ?&gt;"&gt;&lt;?php echo $_category-&gt;getName() ?&gt;
	&lt;?php endforeach; ?&gt;

<strong>Use a static block in a template file:</strong>
&lt;?php echo $this-&gt;getLayout()-&gt;createBlock('cms/block')-&gt;
setBlockId('YOURBLOCKID')-&gt;toHtml(); ?&gt;

Test for a product attribute:
&lt;?php
	if ($this-&gt;product['attributename'] == "attributevalue") {
    // Add your stuff here
	}
?&gt;

<strong>Test if in category</strong>

&lt;?php
	if ($this-&gt;getCurrentCategory()-&gt;getName() == "My Category") {
    //Add some stuff
	}
?&gt;

<strong>Call an attribute on the product list page:</strong>

&lt;?php
	if ($_product-&gt;getData('attributename')):
    $_staff_pick= $_product-&gt;getResource()-&gt;getAttribute ('attributename')-&gt;getFrontend()-&gt;getValue($_product);
    if ($_attributename == "Yes"){
        // attribute
    }
	endif;
?&gt;

<strong>More functions:</strong>
$this-&gt;getCurrentCategory()-&gt;getImageUrl();
$this-&gt;getCurrentCategory()-&gt;getDescription();
$this-&gt;IsTopCategory();
$this-&gt;getProductListHtml();
$this-&gt;getCmsBlockHtml();

<strong></strong><strong>For use from within a Magento CMS page:</strong>

<strong>Call a static block from within a content area</strong>
{{block type="cms/block" block_id="your_block_identifier" template="cms/content.phtml"}}

<strong>Image path from within CMS:</strong>
{{skin url="images/logo.gif"}}

<strong>Other product attributes:</strong>
Using $this-&gt;product['attributename'] syntax:
(Values for these attributes are here just as examples.)

[store_id] =&gt; 1
[entity_id] =&gt; 3
[entity_type_id] =&gt; 4
[attribute_set_id] =&gt; 4
[type_id] =&gt; simple
[sku] =&gt; 2281
[category_ids] =&gt; 2,15,17,23,24
[created_at] =&gt; 2008-09-09 16:24:03
[updated_at] =&gt; 2008-09-15 22:47:51
[has_options] =&gt; 0
[name] =&gt; ProductName
[url_key] =&gt; productname
[gift_message_available] =&gt; 2
[meta_title] =&gt;
[meta_description] =&gt;
[image] =&gt; /p/r/product_productname.gif
[small_image] =&gt; /p/r/product_productname.gif
[thumbnail] =&gt; /p/r/product_productname.gif
[custom_design] =&gt; default/yourthemefolder
[options_container] =&gt; container2
[url_path] =&gt; productname.html
[status] =&gt; 1
[visibility] =&gt; 4
[tax_class_id] =&gt; 0
[weight] =&gt; 1.0000
[price] =&gt; 37.9900
[description] =&gt;
[short_description] =&gt;
[meta_keyword] =&gt;
[custom_layout_update] =&gt;
[media_gallery] =&gt; Array
[tier_price] =&gt; Array
[stock_item] =&gt;</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sushilshirbhate.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sushilshirbhate.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sushilshirbhate.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sushilshirbhate.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sushilshirbhate.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sushilshirbhate.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sushilshirbhate.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sushilshirbhate.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sushilshirbhate.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sushilshirbhate.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sushilshirbhate.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sushilshirbhate.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sushilshirbhate.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sushilshirbhate.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=107&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sushilshirbhate.wordpress.com/2011/07/07/magento-theme-development-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ae8e1eb0f1f91568558c9766e5a694c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sushilshirbhate</media:title>
		</media:content>
	</item>
		<item>
		<title>कारण शेवटी मी एक प्रोफेशनल आहे</title>
		<link>http://sushilshirbhate.wordpress.com/2011/01/17/%e0%a4%95%e0%a4%be%e0%a4%b0%e0%a4%a3-%e0%a4%b6%e0%a5%87%e0%a4%b5%e0%a4%9f%e0%a5%80-%e0%a4%ae%e0%a5%80-%e0%a4%8f%e0%a4%95-%e0%a4%aa%e0%a5%8d%e0%a4%b0%e0%a5%8b%e0%a4%ab%e0%a5%87%e0%a4%b6%e0%a4%a8/</link>
		<comments>http://sushilshirbhate.wordpress.com/2011/01/17/%e0%a4%95%e0%a4%be%e0%a4%b0%e0%a4%a3-%e0%a4%b6%e0%a5%87%e0%a4%b5%e0%a4%9f%e0%a5%80-%e0%a4%ae%e0%a5%80-%e0%a4%8f%e0%a4%95-%e0%a4%aa%e0%a5%8d%e0%a4%b0%e0%a5%8b%e0%a4%ab%e0%a5%87%e0%a4%b6%e0%a4%a8/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 14:00:37 +0000</pubDate>
		<dc:creator>sushilshirbhate</dc:creator>
		
		<guid isPermaLink="false">http://sushilshirbhate.wordpress.com/?p=101</guid>
		<description><![CDATA[कारण शेवटी मी एक प्रोफेशनल आहे आज-काल मला जुन्या आठवणी फार फार सतावतात शाळेतल्या-कॉलेजमधल्या सगळ्या सगळ्या गोष्टी आठवतात सध्या काम कमी अन् वेळ भरपूर कंटाळा आलाय आता नेट सर्फिंग करून काय करणार सध्या बेंच वर आहे कारण शेवटी मी एक प्रोफेशनल आहे दिवसातले किमान 10 तास मी कंपनी मध्ये घालवतो कंपनीच्या पैश्याचे A\C, नेट अन् [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=101&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>कारण शेवटी मी एक प्रोफेशनल आहे</strong></p>
<p>आज-काल मला जुन्या आठवणी फार फार सतावतात<br />
शाळेतल्या-कॉलेजमधल्या सगळ्या सगळ्या गोष्टी आठवतात<br />
सध्या काम कमी अन् वेळ भरपूर<br />
कंटाळा आलाय आता नेट सर्फिंग करून<br />
काय करणार सध्या बेंच वर आहे<br />
कारण शेवटी मी एक प्रोफेशनल आहे</p>
<p>दिवसातले किमान 10 तास मी कंपनी मध्ये घालवतो<br />
कंपनीच्या पैश्याचे A\C, नेट अन् टेलिफोन्स वापरतो<br />
चार-चार वेळा कॉफी प्यायची सवय लागली आहे मला पण माझ्या<br />
कॉलेज canteenच्या कटींगची सर नाही त्याला<br />
कंपनीतले बेचव जेवण गोड मानून घेतो आहे<br />
कारण शेवटी मी एक प्रोफेशनल आहे</p>
<p>कट्ट्यावरच्या गप्पा तर कधीच मागे पडल्या<br />
A\C Coneference roomsमध्ये आता मीटिंग्स होऊ लागल्या<br />
टीम-मेटसच्या गर्दीत माझ्या मित्रांची टोळी हरवली<br />
पक्या, अज्या, रघूची जागा आता मूर्थी, कृष्णन आणि रेवतीने घेतली<br />
ODCमध्ये एकतरी मराठी माणूस शोधतो आहे<br />
कारण शेवटी मी एक प्रोफेशनल आहे</p>
<p>सुरुवातीला खूप फोन SMS व्हायचे<br />
कोण कुठे काय करतोय लगोलग कळायचे<br />
आजकाल जो-तो projectमध्ये बिझी ज़ालाय<br />
भुला भटका missed call आता महाग झालाय<br />
forwards आणि chain mailsमध्ये खुषालीची मैल शोधतो आहे<br />
कारण शेवटी मी एक प्रोफेशनल आहे</p>
<p>दर वीकएण्डसला मे मल्टीप्लेक्स मध्ये जातो<br />
दीड-दमडीच्या मुव्हीसाठी शे-दीडशे मोजतो<br />
सेलेब्रेशन्स,पार्टीज साठी pizza hutchaचा रस्ता गाठतो<br />
vegie crust, paporonie कसले कसले फ्लेवर्स मागवतो<br />
पण pocket moneyसाठवून केलेल्या partyची मजा ह्यात शोधत आहे<br />
कारण शेवटी मी एक प्रोफेशनल आहे</p>
<p>रोजचा शिरस्ता म्हणून घरी एक फोन लावतो<br />
एकुलता-एक असण्याचे आपले कर्तव्य पार पाडतो<br />
&#8220;आता कधी येशील?&#8221; असे आई रोज विचारते<br />
बाबांच्याही आवाजात हल्ली खूप चिंता जाणवते<br />
करियर आणि आई-बाबांपैकी मे माझ्या करियरला निवडले आहे<br />
कारण शेवटी मी एक प्रोफेशनल आहे</p>
<p>खरच सारे काही गेलेय आता बदलून<br />
एका टॅग ने ठेवलाय माझे आयुष्य जखडून<br />
कधीतरी तो दिवस येईल<br />
officeमधून थेट मी माझ्या घरी जाईन<br />
पण मला माहितेय हे एक स्वप्न आहे<br />
कारण शेवटी मी एक प्रोफेशनल आहे.</p>
<p>Mi nahi lihali aahe.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sushilshirbhate.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sushilshirbhate.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sushilshirbhate.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sushilshirbhate.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sushilshirbhate.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sushilshirbhate.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sushilshirbhate.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sushilshirbhate.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sushilshirbhate.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sushilshirbhate.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sushilshirbhate.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sushilshirbhate.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sushilshirbhate.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sushilshirbhate.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=101&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sushilshirbhate.wordpress.com/2011/01/17/%e0%a4%95%e0%a4%be%e0%a4%b0%e0%a4%a3-%e0%a4%b6%e0%a5%87%e0%a4%b5%e0%a4%9f%e0%a5%80-%e0%a4%ae%e0%a5%80-%e0%a4%8f%e0%a4%95-%e0%a4%aa%e0%a5%8d%e0%a4%b0%e0%a5%8b%e0%a4%ab%e0%a5%87%e0%a4%b6%e0%a4%a8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ae8e1eb0f1f91568558c9766e5a694c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sushilshirbhate</media:title>
		</media:content>
	</item>
		<item>
		<title>Rajastan</title>
		<link>http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/</link>
		<comments>http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 12:57:12 +0000</pubDate>
		<dc:creator>sushilshirbhate</dc:creator>
				<category><![CDATA[sushilshirbhate]]></category>

		<guid isPermaLink="false">http://sushilshirbhate.wordpress.com/?p=66</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=66&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/4022143357_860e1e5b2a_z/' title='Rajastan'><img data-attachment-id='68' data-orig-size='640,424' data-liked='0'width="150" height="99" src="http://sushilshirbhate.files.wordpress.com/2010/08/4022143357_860e1e5b2a_z.jpg?w=150&#038;h=99" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/2749347442_75921de0de_z/' title='Rajastan'><img data-attachment-id='69' data-orig-size='597,640' data-liked='0'width="139" height="150" src="http://sushilshirbhate.files.wordpress.com/2010/08/2749347442_75921de0de_z.jpg?w=139&#038;h=150" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/271261470_a6fb5c4a77_z/' title='Rajastan'><img data-attachment-id='71' data-orig-size='640,454' data-liked='0'width="150" height="106" src="http://sushilshirbhate.files.wordpress.com/2010/08/271261470_a6fb5c4a77_z.jpg?w=150&#038;h=106" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/3755142129_6acaf10a20_z/' title='Rajastan'><img data-attachment-id='72' data-orig-size='640,427' data-liked='0'width="150" height="100" src="http://sushilshirbhate.files.wordpress.com/2010/08/3755142129_6acaf10a20_z.jpg?w=150&#038;h=100" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/2307132835_a6d2babdfa_z/' title='Rajastan'><img data-attachment-id='73' data-orig-size='640,480' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/2307132835_a6d2babdfa_z.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/1968968316_7019cd5db6_z/' title='Rajastan'><img data-attachment-id='74' data-orig-size='427,640' data-liked='0'width="100" height="150" src="http://sushilshirbhate.files.wordpress.com/2010/08/1968968316_7019cd5db6_z.jpg?w=100&#038;h=150" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/1332939927_8613a23c25_z/' title='Rajastan'><img data-attachment-id='75' data-orig-size='640,428' data-liked='0'width="150" height="100" src="http://sushilshirbhate.files.wordpress.com/2010/08/1332939927_8613a23c25_z.jpg?w=150&#038;h=100" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/olympus-digital-camera/' title='Rajastan'><img data-attachment-id='76' data-orig-size='640,481' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/3929758358_7f2e32c972_z.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/2270461743_87fb21ffa5_z/' title='Rajastan'><img data-attachment-id='77' data-orig-size='640,425' data-liked='0'width="150" height="99" src="http://sushilshirbhate.files.wordpress.com/2010/08/2270461743_87fb21ffa5_z.jpg?w=150&#038;h=99" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/3123354048_d834cbfb12_b/' title='Rajastan'><img data-attachment-id='78' data-orig-size='1024,681' data-liked='0'width="150" height="99" src="http://sushilshirbhate.files.wordpress.com/2010/08/3123354048_d834cbfb12_b.jpg?w=150&#038;h=99" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/2190307034_afb8770481_z/' title='Rajastan'><img data-attachment-id='79' data-orig-size='480,640' data-liked='0'width="112" height="150" src="http://sushilshirbhate.files.wordpress.com/2010/08/2190307034_afb8770481_z.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/2179597599_ee9488cd60_b/' title='Rajastan'><img data-attachment-id='80' data-orig-size='1024,768' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/2179597599_ee9488cd60_b.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/2748521027_2dbe9ebb8f_z/' title='Rajastan'><img data-attachment-id='81' data-orig-size='640,442' data-liked='0'width="150" height="103" src="http://sushilshirbhate.files.wordpress.com/2010/08/2748521027_2dbe9ebb8f_z.jpg?w=150&#038;h=103" class="attachment-thumbnail" alt="Rajastan" title="Rajastan" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sushilshirbhate.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sushilshirbhate.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sushilshirbhate.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sushilshirbhate.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sushilshirbhate.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sushilshirbhate.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sushilshirbhate.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sushilshirbhate.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sushilshirbhate.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sushilshirbhate.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sushilshirbhate.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sushilshirbhate.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sushilshirbhate.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sushilshirbhate.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=66&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sushilshirbhate.wordpress.com/2010/08/14/rajastan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ae8e1eb0f1f91568558c9766e5a694c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sushilshirbhate</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/4022143357_860e1e5b2a_z.jpg?w=150" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/2749347442_75921de0de_z.jpg?w=139" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/271261470_a6fb5c4a77_z.jpg?w=150" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/3755142129_6acaf10a20_z.jpg?w=150" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/2307132835_a6d2babdfa_z.jpg?w=150" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/1968968316_7019cd5db6_z.jpg?w=100" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/1332939927_8613a23c25_z.jpg?w=150" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/3929758358_7f2e32c972_z.jpg?w=150" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/2270461743_87fb21ffa5_z.jpg?w=150" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/3123354048_d834cbfb12_b.jpg?w=150" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/2190307034_afb8770481_z.jpg?w=112" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/2179597599_ee9488cd60_b.jpg?w=150" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/2748521027_2dbe9ebb8f_z.jpg?w=150" medium="image">
			<media:title type="html">Rajastan</media:title>
		</media:content>
	</item>
		<item>
		<title>RGB Color Chart</title>
		<link>http://sushilshirbhate.wordpress.com/2010/08/10/rgb-color-chart/</link>
		<comments>http://sushilshirbhate.wordpress.com/2010/08/10/rgb-color-chart/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 11:49:52 +0000</pubDate>
		<dc:creator>sushilshirbhate</dc:creator>
				<category><![CDATA[HTML CSS]]></category>

		<guid isPermaLink="false">http://sushilshirbhate.wordpress.com/?p=62</guid>
		<description><![CDATA[RGB Color Chart Color Name RGB CODE HEX # Snow 255-250-250 fffafa Snow 2 238-233-233 eee9e9 Snow 3 205-201-201 cdc9c9 Snow 4 139-137-137 8b8989 Ghost White 248-248-255 f8f8ff White Smoke 245-245-245 f5f5f5 Gainsboro 220-220-220 dccdc Floral White 255-250-240 fffaf0 Old Lace 253-245-230 fdf5e6 Linen 240-240-230 faf0e6 Antique White 250-235-215 faebd7 Antique White 2 238-223-204 eedfcc [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=62&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1><strong>RGB Color Chart</strong></h1>
<table border="1" cellpadding="0" width="347">
<tbody>
<tr>
<td>Color Name</td>
<td>RGB CODE</td>
<td>HEX #</td>
</tr>
<tr>
<td>Snow</td>
<td>255-250-250</td>
<td>fffafa</td>
</tr>
<tr>
<td>Snow 2</td>
<td>238-233-233</td>
<td>eee9e9</td>
</tr>
<tr>
<td>Snow 3</td>
<td>205-201-201</td>
<td>cdc9c9</td>
</tr>
<tr>
<td>Snow 4</td>
<td>139-137-137</td>
<td>8b8989</td>
</tr>
<tr>
<td>Ghost White</td>
<td>248-248-255</td>
<td>f8f8ff</td>
</tr>
<tr>
<td>White Smoke</td>
<td>245-245-245</td>
<td>f5f5f5</td>
</tr>
<tr>
<td>Gainsboro</td>
<td>220-220-220</td>
<td>dccdc</td>
</tr>
<tr>
<td>Floral White</td>
<td>255-250-240</td>
<td>fffaf0</td>
</tr>
<tr>
<td>Old Lace</td>
<td>253-245-230</td>
<td>fdf5e6</td>
</tr>
<tr>
<td>Linen</td>
<td>240-240-230</td>
<td>faf0e6</td>
</tr>
<tr>
<td>Antique White</td>
<td>250-235-215</td>
<td>faebd7</td>
</tr>
<tr>
<td>Antique White 2</td>
<td>238-223-204</td>
<td>eedfcc</td>
</tr>
<tr>
<td>Antique White 3</td>
<td>205-192-176</td>
<td>cdc0b0</td>
</tr>
<tr>
<td>Antique White 4</td>
<td>139-131-120</td>
<td>8b8378</td>
</tr>
<tr>
<td>Papaya Whip</td>
<td>255-239-213</td>
<td>ffefd5</td>
</tr>
<tr>
<td>Blanched Almond</td>
<td>255-235-205</td>
<td>ffebcd</td>
</tr>
<tr>
<td>Bisque</td>
<td>255-228-196</td>
<td>ffe4c4</td>
</tr>
<tr>
<td>Bisque 2</td>
<td>238-213-183</td>
<td>eed5b7</td>
</tr>
<tr>
<td>Bisque 3</td>
<td>205-183-158</td>
<td>cdb79e</td>
</tr>
<tr>
<td>Bisque 4</td>
<td>139-125-107</td>
<td>8b7d6b</td>
</tr>
<tr>
<td>Peach Puff</td>
<td>255-218-185</td>
<td>ffdab9</td>
</tr>
<tr>
<td>Peach Puff 2</td>
<td>238-203-173</td>
<td>eecbad</td>
</tr>
<tr>
<td>Peach Puff 3</td>
<td>205-175-149</td>
<td>cdaf95</td>
</tr>
<tr>
<td>Peach Puff 4</td>
<td>139-119-101</td>
<td>8b7765</td>
</tr>
<tr>
<td>Navajo White</td>
<td>255-222-173</td>
<td>ffdead</td>
</tr>
<tr>
<td>Moccasin</td>
<td>255-228-181</td>
<td>ffe4b5</td>
</tr>
<tr>
<td>Cornsilk</td>
<td>255-248-220</td>
<td>fff8dc</td>
</tr>
<tr>
<td>Cornsilk 2</td>
<td>238-232-205</td>
<td>eee8dc</td>
</tr>
<tr>
<td>Cornsilk 3</td>
<td>205-200-177</td>
<td>cdc8b1</td>
</tr>
<tr>
<td>Cornsilk 4</td>
<td>139-136-120</td>
<td>8b8878</td>
</tr>
<tr>
<td>Ivory</td>
<td>255-255-240</td>
<td>fffff0</td>
</tr>
<tr>
<td>Ivory 2</td>
<td>238-238-224</td>
<td>eeeee0</td>
</tr>
<tr>
<td>Ivory 3</td>
<td>205-205-193</td>
<td>cdcdc1</td>
</tr>
<tr>
<td>Ivory 4</td>
<td>139-139-131</td>
<td>8b8b83</td>
</tr>
<tr>
<td>Lemon Chiffon</td>
<td>255-250-205</td>
<td>fffacd</td>
</tr>
<tr>
<td>Seashell</td>
<td>255-245-238</td>
<td>fff5ee</td>
</tr>
<tr>
<td>Seashell 2</td>
<td>238-229-222</td>
<td>eee5de</td>
</tr>
<tr>
<td>Seashell 3</td>
<td>205-197-191</td>
<td>cdc5bf</td>
</tr>
<tr>
<td>Seashell 4</td>
<td>139-134-130</td>
<td>8b8682</td>
</tr>
<tr>
<td>Honeydew</td>
<td>240-255-240</td>
<td>f0fff0</td>
</tr>
<tr>
<td>Honeydew 2</td>
<td>244-238-224</td>
<td>e0eee0</td>
</tr>
<tr>
<td>Honeydew 3</td>
<td>193-205-193</td>
<td>c1cdc1</td>
</tr>
<tr>
<td>Honeydew 4</td>
<td>131-139-131</td>
<td>838b83</td>
</tr>
<tr>
<td>Mint Cream</td>
<td>245-255-250</td>
<td>f5fffa</td>
</tr>
<tr>
<td>Azure</td>
<td>240-255-255</td>
<td>f0ffff</td>
</tr>
<tr>
<td>Alice Blue</td>
<td>240-248-255</td>
<td>f0f8ff</td>
</tr>
<tr>
<td>Lavender</td>
<td>230-230-250</td>
<td>e6e6fa</td>
</tr>
<tr>
<td>Lavender Blush</td>
<td>255-240-245</td>
<td>fff0f5</td>
</tr>
<tr>
<td>Misty Rose</td>
<td>255-228-225</td>
<td>ffe4e1</td>
</tr>
<tr>
<td>White</td>
<td>255-255-255</td>
<td>ffffff</td>
</tr>
</tbody>
</table>
<p><strong>Grays</strong><strong></strong></p>
<table border="1" cellpadding="0" width="345">
<tbody>
<tr>
<td>Color Name</td>
<td>RGB CODE</td>
<td>HEX #</td>
</tr>
<tr>
<td>Black</td>
<td>0-0-0</td>
<td>000000</td>
</tr>
<tr>
<td>Dark Slate Gray</td>
<td>49-79-79</td>
<td>2f4f4f</td>
</tr>
<tr>
<td>Dim Gray</td>
<td>105-105-105</td>
<td>696969</td>
</tr>
<tr>
<td>Slate Gray</td>
<td>112-138-144</td>
<td>708090</td>
</tr>
<tr>
<td>Light Slate Gray</td>
<td>119-136-153</td>
<td>778899</td>
</tr>
<tr>
<td>Gray</td>
<td>190-190-190</td>
<td>bebebe</td>
</tr>
<tr>
<td>Light Gray</td>
<td>211-211-211</td>
<td>d3d3d3</td>
</tr>
</tbody>
</table>
<p><strong>Blues</strong></p>
<table border="1" cellpadding="0" width="349">
<tbody>
<tr>
<td>Color Name</td>
<td>RGB CODE</td>
<td>HEX #</td>
</tr>
<tr>
<td>Midnight Blue</td>
<td>25-25-112</td>
<td>191970</td>
</tr>
<tr>
<td>Navy</td>
<td>0-0-128</td>
<td>000080</td>
</tr>
<tr>
<td>Cornflower Blue</td>
<td>100-149-237</td>
<td>6495ed</td>
</tr>
<tr>
<td>Dark Slate Blue</td>
<td>72-61-139</td>
<td>483d8b</td>
</tr>
<tr>
<td>Slate Blue</td>
<td>106-90-205</td>
<td>6a5acd</td>
</tr>
<tr>
<td>Medium Slate Blue</td>
<td>123-104-238</td>
<td>7b68ee</td>
</tr>
<tr>
<td>Light Slate Blue</td>
<td>132-112-255</td>
<td>8470ff</td>
</tr>
<tr>
<td>Medium Blue</td>
<td>0-0-205</td>
<td>0000cd</td>
</tr>
<tr>
<td>Royal Blue</td>
<td>65-105-225</td>
<td>4169e1</td>
</tr>
<tr>
<td>Blue</td>
<td>0-0-255</td>
<td>0000ff</td>
</tr>
<tr>
<td>Dodger Blue</td>
<td>30-144-255</td>
<td>1e90ff</td>
</tr>
<tr>
<td>Deep Sky Blue</td>
<td>0-191-255</td>
<td>00bfff</td>
</tr>
<tr>
<td>Sky Blue</td>
<td>135-206-250</td>
<td>87ceeb</td>
</tr>
<tr>
<td>Light Sky Blue</td>
<td>135-206-250</td>
<td>87cefa</td>
</tr>
<tr>
<td>Steel Blue</td>
<td>70-130-180</td>
<td>4682b4</td>
</tr>
<tr>
<td>Light Steel Blue</td>
<td>176-196-222</td>
<td>b0c4de</td>
</tr>
<tr>
<td>Light Blue</td>
<td>173-216-230</td>
<td>add8e6</td>
</tr>
<tr>
<td>Powder Blue</td>
<td>176-224-230</td>
<td>b0e0e6</td>
</tr>
<tr>
<td>Pale Turquoise</td>
<td>175-238-238</td>
<td>afeeee</td>
</tr>
<tr>
<td>Dark Turquoise</td>
<td>0-206-209</td>
<td>00ced1</td>
</tr>
<tr>
<td>Medium Turquoise</td>
<td>72-209-204</td>
<td>48d1cc</td>
</tr>
<tr>
<td>Turquoise</td>
<td>64-224-208</td>
<td>40e0d0</td>
</tr>
<tr>
<td>Cyan</td>
<td>0-255-255</td>
<td>00ffff</td>
</tr>
<tr>
<td>Light Cyan</td>
<td>224-255-255</td>
<td>e0ffff</td>
</tr>
<tr>
<td>Cadet Blue</td>
<td>95-158-160</td>
<td>5f9ea0</td>
</tr>
</tbody>
</table>
<p><strong>Greens</strong></p>
<table border="1" cellpadding="0" width="350">
<tbody>
<tr>
<td><strong>Color Name</strong></td>
<td><strong>RGB CODE</strong></td>
<td><strong>HEX #</strong></td>
</tr>
<tr>
<td>Medium Aquamarine</td>
<td>102-205-170</td>
<td>66cdaa</td>
</tr>
<tr>
<td>Aquamarine</td>
<td>127-255-212</td>
<td>7fffd4</td>
</tr>
<tr>
<td>Dark Green</td>
<td>0-100-0</td>
<td>006400</td>
</tr>
<tr>
<td>Dark Olive Green</td>
<td>85-107-47</td>
<td>556b2f</td>
</tr>
<tr>
<td>Dark Sea Green</td>
<td>143-188-143</td>
<td>8fbc8f</td>
</tr>
<tr>
<td>Sea Green</td>
<td>46-139-87</td>
<td>2e8b57</td>
</tr>
<tr>
<td>Medium Sea Green</td>
<td>60-179-113</td>
<td>3cb371</td>
</tr>
<tr>
<td>Light Sea Green</td>
<td>32-178-170</td>
<td>20b2aa</td>
</tr>
<tr>
<td>Pale Green</td>
<td>152-251-152</td>
<td>98fb98</td>
</tr>
<tr>
<td>Spring Green</td>
<td>0-255-127</td>
<td>00ff7f</td>
</tr>
<tr>
<td>Lawn Green</td>
<td>124-252-0</td>
<td>7cfc00</td>
</tr>
<tr>
<td>Chartreuse</td>
<td>127-255-0</td>
<td>7fff00</td>
</tr>
<tr>
<td>Medium Spring Green</td>
<td>0-250-154</td>
<td>00fa9a</td>
</tr>
<tr>
<td>Green Yellow</td>
<td>173-255-47</td>
<td>adff2f</td>
</tr>
<tr>
<td>Lime Green</td>
<td>50-205-50</td>
<td>32cd32</td>
</tr>
<tr>
<td>Yellow Green</td>
<td>154-205-50</td>
<td>9acd32</td>
</tr>
<tr>
<td>Forest Green</td>
<td>34-139-34</td>
<td>228b22</td>
</tr>
<tr>
<td>Olive Drab</td>
<td>107-142-35</td>
<td>6b8e23</td>
</tr>
<tr>
<td>Dark Khaki</td>
<td>189-183-107</td>
<td>bdb76b</td>
</tr>
<tr>
<td>Khaki</td>
<td>240-230-140</td>
<td>f0e68c</td>
</tr>
</tbody>
</table>
<p><strong>Yellow</strong></p>
<table border="1" cellpadding="0" width="353">
<tbody>
<tr>
<td><strong>Color Name</strong></td>
<td><strong>RGB CODE</strong></td>
<td><strong>HEX #</strong></td>
</tr>
<tr>
<td>Pale Goldenrod</td>
<td>238-232-170</td>
<td>eee8aa</td>
</tr>
<tr>
<td>Light Goldenrod Yellow</td>
<td>250-250-210</td>
<td>fafad2</td>
</tr>
<tr>
<td>Light Yellow</td>
<td>255-255-224</td>
<td>ffffe0</td>
</tr>
<tr>
<td>Yellow</td>
<td>255-255-0</td>
<td>ffff00</td>
</tr>
<tr>
<td>Gold</td>
<td>255-215-0</td>
<td>ffd700</td>
</tr>
<tr>
<td>Light Goldenrod</td>
<td>238-221-130</td>
<td>eedd82</td>
</tr>
<tr>
<td>Goldenrod</td>
<td>218-165-32</td>
<td>daa520</td>
</tr>
<tr>
<td>Dark Goldenrod</td>
<td>184-134-11</td>
<td>b8860b</td>
</tr>
</tbody>
</table>
<p><strong>Browns</strong></p>
<table border="1" cellpadding="0" width="338">
<tbody>
<tr>
<td><strong>Color Name</strong></td>
<td><strong>RGB CODE</strong></td>
<td><strong>HEX #</strong></td>
</tr>
<tr>
<td>Rosy Brown</td>
<td>188-143-143</td>
<td>bc8f8f</td>
</tr>
<tr>
<td>Indian Red</td>
<td>205-92-92</td>
<td>cd5c5c</td>
</tr>
<tr>
<td>Saddle Brown</td>
<td>139-69-19</td>
<td>8b4513</td>
</tr>
<tr>
<td>Sienna</td>
<td>160-82-45</td>
<td>a0522d</td>
</tr>
<tr>
<td>Peru</td>
<td>205-133-63</td>
<td>cd853f</td>
</tr>
<tr>
<td>Burlywood</td>
<td>222-184-135</td>
<td>deb887</td>
</tr>
<tr>
<td>Beige</td>
<td>245-245-220</td>
<td>f5f5dc</td>
</tr>
<tr>
<td>Wheat</td>
<td>245-222-179</td>
<td>f5deb3</td>
</tr>
<tr>
<td>Sandy Brown</td>
<td>244-164-96</td>
<td>f4a460</td>
</tr>
<tr>
<td>Tan</td>
<td>210-180-140</td>
<td>d2b48c</td>
</tr>
<tr>
<td>Chocolate</td>
<td>210-105-30</td>
<td>d2691e</td>
</tr>
<tr>
<td>Firebrick</td>
<td>178-34-34</td>
<td>b22222</td>
</tr>
<tr>
<td>Brown</td>
<td>165-42-42</td>
<td>a52a2a</td>
</tr>
</tbody>
</table>
<p><strong>Oranges</strong></p>
<table border="1" cellpadding="0" width="337">
<tbody>
<tr>
<td><strong>Color Name</strong></td>
<td><strong>RGB CODE</strong></td>
<td><strong>HEX #</strong></td>
</tr>
<tr>
<td>Dark Salmon</td>
<td>233-150-122</td>
<td>e9967a</td>
</tr>
<tr>
<td>Salmon</td>
<td>250-128-114</td>
<td>fa8072</td>
</tr>
<tr>
<td>Light Salmon</td>
<td>255-160-122</td>
<td>ffa07a</td>
</tr>
<tr>
<td>Orange</td>
<td>255-165-0</td>
<td>ffa500</td>
</tr>
<tr>
<td>Dark Orange</td>
<td>255-140-0</td>
<td>ff8c00</td>
</tr>
<tr>
<td>Coral</td>
<td>255-127-80</td>
<td>ff7f50</td>
</tr>
<tr>
<td>Light Coral</td>
<td>240-128-128</td>
<td>f08080</td>
</tr>
<tr>
<td>Tomato</td>
<td>255-99-71</td>
<td>ff6347</td>
</tr>
<tr>
<td>Orange Red</td>
<td>255-69-0</td>
<td>ff4500</td>
</tr>
<tr>
<td>Red</td>
<td>255-0-0</td>
<td>ff0000</td>
</tr>
</tbody>
</table>
<p><strong>Pinks/Violets</strong></p>
<table border="1" cellpadding="0" width="387">
<tbody>
<tr>
<td><strong>Color Name</strong></td>
<td width="130"><strong>RGB CODE</strong></td>
<td width="87"><strong>HEX #</strong></td>
</tr>
<tr>
<td>Hot Pink</td>
<td width="130">255-105-180</td>
<td width="87">ff69b4</td>
</tr>
<tr>
<td>Deep Pink</td>
<td width="130">255-20-147</td>
<td width="87">ff1493</td>
</tr>
<tr>
<td>Pink</td>
<td width="130">255-192-203</td>
<td width="87">ffc0cb</td>
</tr>
<tr>
<td>Light Pink</td>
<td width="130">255-182-193</td>
<td width="87">ffb6c1</td>
</tr>
<tr>
<td>Pale Violet Red</td>
<td width="130">219-112-147</td>
<td width="87">db7093</td>
</tr>
<tr>
<td>Maroon</td>
<td width="130">176-48-96</td>
<td width="87">b03060</td>
</tr>
<tr>
<td>Medium Violet Red</td>
<td width="130">199-21-133</td>
<td width="87">c71585</td>
</tr>
<tr>
<td>Violet Red</td>
<td width="130">208-32-144</td>
<td width="87">d02090</td>
</tr>
<tr>
<td>Violet</td>
<td width="130">238-130-238</td>
<td width="87">ee82ee</td>
</tr>
<tr>
<td>Plum</td>
<td width="130">221-160-221</td>
<td width="87">dda0dd</td>
</tr>
<tr>
<td>Orchid</td>
<td width="130">218-112-214</td>
<td width="87">da70d6</td>
</tr>
<tr>
<td>Medium Orchid</td>
<td width="130">186-85-211</td>
<td width="87">ba55d3</td>
</tr>
<tr>
<td>Dark Orchid</td>
<td width="130">153-50-204</td>
<td width="87">9932cc</td>
</tr>
<tr>
<td>Dark Violet</td>
<td width="130">148-0-211</td>
<td width="87">9400d3</td>
</tr>
<tr>
<td>Blue Violet</td>
<td width="130">138-43-226</td>
<td width="87">8a2be2</td>
</tr>
<tr>
<td>Purple</td>
<td width="130">160-32-240</td>
<td width="87">a020f0</td>
</tr>
<tr>
<td>Medium Purple</td>
<td width="130">147-112-219</td>
<td width="87">9370db</td>
</tr>
<tr>
<td>Thistle</td>
<td width="130">216-191-216</td>
<td width="87">d8bfd8</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sushilshirbhate.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sushilshirbhate.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sushilshirbhate.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sushilshirbhate.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sushilshirbhate.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sushilshirbhate.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sushilshirbhate.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sushilshirbhate.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sushilshirbhate.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sushilshirbhate.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sushilshirbhate.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sushilshirbhate.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sushilshirbhate.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sushilshirbhate.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=62&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sushilshirbhate.wordpress.com/2010/08/10/rgb-color-chart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ae8e1eb0f1f91568558c9766e5a694c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sushilshirbhate</media:title>
		</media:content>
	</item>
		<item>
		<title>Date function in PHP</title>
		<link>http://sushilshirbhate.wordpress.com/2010/08/09/date-function-in-php/</link>
		<comments>http://sushilshirbhate.wordpress.com/2010/08/09/date-function-in-php/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 09:44:48 +0000</pubDate>
		<dc:creator>sushilshirbhate</dc:creator>
				<category><![CDATA[PHP tutorial]]></category>

		<guid isPermaLink="false">http://sushilshirbhate.wordpress.com/?p=52</guid>
		<description><![CDATA[Date function in PHP Definition and Usage: The date() function formats a local time/date. Syntax : date(format,timestamp) Example: &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#60;?php echo(&#8220;Result with date():&#60;br /&#62;&#8221;); echo(date(&#8220;l&#8221;) . &#8220;&#60;br /&#62;&#8221;); echo(date(&#8220;l dS \of F Y h:i:s A&#8221;) . &#8220;&#60;br /&#62;&#8221;); echo(&#8220;Oct 3,1975 was on a &#8220;.date(&#8220;l&#8221;, mktime(0,0,0,10,3,1975)).&#8221;&#60;br /&#62;&#8221;); echo(date(DATE_RFC822) . &#8220;&#60;br /&#62;&#8221;); echo(date(DATE_ATOM,mktime(0,0,0,10,3,1975)) . &#8220;&#60;br /&#62;&#60;br /&#62;&#8221;); echo(&#8220;Result [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=52&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2><strong>Date function in PHP</strong></h2>
<p><strong>Definition and Usage: </strong>The date() function formats a local time/date.</p>
<p><em><strong> Syntax : <span style="font-style:normal;"><span style="color:#ffff00;">date(format,timestamp)</span></span></strong></em></p>
<p><strong>Example:</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>&lt;?php<br />
echo(&#8220;Result with date():&lt;br /&gt;&#8221;);<br />
echo(date(&#8220;l&#8221;) . &#8220;&lt;br /&gt;&#8221;);<br />
echo(date(&#8220;l dS \of F Y h:i:s A&#8221;) . &#8220;&lt;br /&gt;&#8221;);<br />
echo(&#8220;Oct 3,1975 was on a &#8220;.date(&#8220;l&#8221;, mktime(0,0,0,10,3,1975)).&#8221;&lt;br /&gt;&#8221;);<br />
echo(date(DATE_RFC822) . &#8220;&lt;br /&gt;&#8221;);<br />
echo(date(DATE_ATOM,mktime(0,0,0,10,3,1975)) . &#8220;&lt;br /&gt;&lt;br /&gt;&#8221;);</p>
<p>echo(&#8220;Result with gmdate():&lt;br /&gt;&#8221;);<br />
echo(gmdate(&#8220;l&#8221;) . &#8220;&lt;br /&gt;&#8221;);<br />
echo(gmdate(&#8220;l dS \of F Y h:i:s A&#8221;) . &#8220;&lt;br /&gt;&#8221;);<br />
echo(&#8220;Oct 3,1975 was on a &#8220;.gmdate(&#8220;l&#8221;, mktime(0,0,0,10,3,1975)).&#8221;&lt;br /&gt;&#8221;);<br />
echo(gmdate(DATE_RFC822) . &#8220;&lt;br /&gt;&#8221;);<br />
echo(gmdate(DATE_ATOM,mktime(0,0,0,10,3,1975)) . &#8220;&lt;br /&gt;&#8221;);<br />
?&gt;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong>Output:</strong></p>
<p>Result with date():<br />
Tuesday<br />
Tuesday 24th of January 2006 02:41:22 PM<br />
Oct 3,1975 was on a Friday<br />
Tue, 24 Jan 2006 14:41:22 CET<br />
1975-10-03T00:00:00+0100</p>
<p>Result with gmdate():<br />
Tuesday<br />
Tuesday 24th of January 2006 01:41:22 PM<br />
Oct 3,1975 was on a Thursday<br />
Tue, 24 Jan 2006 13:41:22 GMT<br />
1975-10-02T23:00:00+0000</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p><strong>Format:</strong></p>
<p>Required. Specifies how to return the result:</p>
<ul>
<li>d &#8211; The day of the month (from 01 to 31)</li>
<li>D &#8211; A textual representation of a day (three letters)</li>
<li>j &#8211; The day of the month without leading zeros (1 to 31)</li>
<li>l (lowercase &#8216;L&#8217;) &#8211; A full textual representation of a day</li>
<li>N &#8211; The ISO-8601 numeric representation of a day (1 for Monday  		through 7 for Sunday)</li>
<li>S &#8211; The English ordinal suffix for the day of the month (2  		characters st, nd, rd or th. Works well with j)</li>
<li>w &#8211; A numeric representation of the day (0 for Sunday through 6 for  		Saturday)</li>
<li>z &#8211; The day of the year (from 0 through 365)</li>
<li>W &#8211; The ISO-8601 week number of year (weeks starting on Monday)</li>
<li>F &#8211; A full textual representation of a month (January through  		December)</li>
<li>m &#8211; A numeric representation of a month (from 01 to 12)</li>
<li>M &#8211; A short textual representation of a month (three letters)</li>
<li>n &#8211; A numeric representation of a month, without leading zeros (1 to  		12)</li>
<li>t &#8211; The number of days in the given month</li>
<li>L &#8211; Whether it&#8217;s a leap year (1 if it is a leap year, 0 otherwise)</li>
<li>o &#8211; The ISO-8601 year number</li>
<li>Y &#8211; A four digit representation of a year</li>
<li>y &#8211; A two digit representation of a year</li>
<li>a &#8211; Lowercase am or pm</li>
<li>A &#8211; Uppercase AM or PM</li>
<li>B &#8211; Swatch Internet time (000 to 999)</li>
<li>g &#8211; 12-hour format of an hour (1 to 12)</li>
<li>G &#8211; 24-hour format of an hour (0 to 23)</li>
<li>h &#8211; 12-hour format of an hour (01 to 12)</li>
<li>H &#8211; 24-hour format of an hour (00 to 23)</li>
<li>i &#8211; Minutes with leading zeros (00 to 59)</li>
<li>s &#8211; Seconds, with leading zeros (00 to 59)</li>
<li>e &#8211; The timezone identifier (Examples: UTC, Atlantic/Azores)</li>
<li>I (capital i) &#8211; Whether the date is in daylights savings time (1 if  		Daylight Savings Time, 0 otherwise)</li>
<li>O &#8211; Difference to Greenwich time (GMT) in hours (Example: +0100)</li>
<li>T &#8211; Timezone setting of the PHP machine (Examples: EST, MDT)</li>
<li>Z &#8211; Timezone offset in seconds. The offset west of UTC is negative,  		and the offset east of UTC is positive (-43200 to 43200)</li>
<li>c &#8211; The ISO-8601 date (e.g. 2004-02-12T15:19:21+00:00)</li>
<li>r &#8211; The RFC 2822 formatted date (e.g. Thu, 21 Dec 2000 16:01:07  		+0200)</li>
<li>U &#8211; The seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sushilshirbhate.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sushilshirbhate.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sushilshirbhate.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sushilshirbhate.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sushilshirbhate.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sushilshirbhate.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sushilshirbhate.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sushilshirbhate.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sushilshirbhate.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sushilshirbhate.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sushilshirbhate.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sushilshirbhate.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sushilshirbhate.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sushilshirbhate.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=52&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sushilshirbhate.wordpress.com/2010/08/09/date-function-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ae8e1eb0f1f91568558c9766e5a694c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sushilshirbhate</media:title>
		</media:content>
	</item>
		<item>
		<title>Kokan Photos, Maharastra</title>
		<link>http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/</link>
		<comments>http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 11:57:31 +0000</pubDate>
		<dc:creator>sushilshirbhate</dc:creator>
				<category><![CDATA[sushilshirbhate]]></category>

		<guid isPermaLink="false">http://sushilshirbhate.wordpress.com/?p=30</guid>
		<description><![CDATA[Kokan Photos, Maharastra<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=30&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Kokan Photos, Maharastra</strong></p>
<p><strong>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image001/' title='Bhimashankar'><img data-attachment-id='31' data-orig-size='891,668' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/image001.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Bhimashankar" title="Bhimashankar" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image002/' title='Maleshvar waterfall '><img data-attachment-id='32' data-orig-size='886,665' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/image002.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Maleshvar waterfall" title="Maleshvar waterfall" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image009/' title='Maleshvar waterfall '><img data-attachment-id='33' data-orig-size='874,1166' data-liked='0'width="112" height="150" src="http://sushilshirbhate.files.wordpress.com/2010/08/image009.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="Maleshvar waterfall" title="Maleshvar waterfall" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image010/' title='Mumbai pune highway'><img data-attachment-id='34' data-orig-size='874,657' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/image010.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Mumbai pune highway" title="Mumbai pune highway" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image011/' title='karavar sea'><img data-attachment-id='35' data-orig-size='870,580' data-liked='0'width="150" height="100" src="http://sushilshirbhate.files.wordpress.com/2010/08/image011.jpg?w=150&#038;h=100" class="attachment-thumbnail" alt="karavar sea" title="karavar sea" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image012/' title='Malvan'><img data-attachment-id='36' data-orig-size='869,652' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/image012.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Malvan" title="Malvan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image013/' title='Kokan railway '><img data-attachment-id='37' data-orig-size='864,649' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/image013.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Kokan railway" title="Kokan railway" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image014/' title='Ganpatipule'><img data-attachment-id='38' data-orig-size='860,574' data-liked='0'width="150" height="100" src="http://sushilshirbhate.files.wordpress.com/2010/08/image014.jpg?w=150&#038;h=100" class="attachment-thumbnail" alt="Ganpatipule" title="Ganpatipule" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image015/' title='Ganpatipule'><img data-attachment-id='39' data-orig-size='860,574' data-liked='0'width="150" height="100" src="http://sushilshirbhate.files.wordpress.com/2010/08/image015.jpg?w=150&#038;h=100" class="attachment-thumbnail" alt="Ganpatipule" title="Ganpatipule" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image016/' title='image016'><img data-attachment-id='40' data-orig-size='857,642' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/image016.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="image016" title="image016" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image003/' title='Sindhudurg'><img data-attachment-id='41' data-orig-size='887,576' data-liked='0'width="150" height="97" src="http://sushilshirbhate.files.wordpress.com/2010/08/image003.jpg?w=150&#038;h=97" class="attachment-thumbnail" alt="Sindhudurg" title="Sindhudurg" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image004/' title='kokan'><img data-attachment-id='42' data-orig-size='889,666' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/image004.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="kokan" title="kokan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image005/' title='kokan'><img data-attachment-id='43' data-orig-size='887,665' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/image005.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="kokan" title="kokan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image006/' title='kokan'><img data-attachment-id='44' data-orig-size='881,585' data-liked='0'width="150" height="99" src="http://sushilshirbhate.files.wordpress.com/2010/08/image006.jpg?w=150&#038;h=99" class="attachment-thumbnail" alt="kokan" title="kokan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image007/' title='kokan'><img data-attachment-id='45' data-orig-size='878,658' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/image007.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="kokankokan" title="kokan" /></a>
<a href='http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/image008/' title='kokan'><img data-attachment-id='46' data-orig-size='876,655' data-liked='0'width="150" height="112" src="http://sushilshirbhate.files.wordpress.com/2010/08/image008.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="kokan" title="kokan" /></a>
</p>
<p></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sushilshirbhate.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sushilshirbhate.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sushilshirbhate.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sushilshirbhate.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sushilshirbhate.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sushilshirbhate.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sushilshirbhate.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sushilshirbhate.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sushilshirbhate.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sushilshirbhate.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sushilshirbhate.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sushilshirbhate.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sushilshirbhate.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sushilshirbhate.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sushilshirbhate.wordpress.com&amp;blog=9753652&amp;post=30&amp;subd=sushilshirbhate&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sushilshirbhate.wordpress.com/2010/08/07/kokan-photos-maharastra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ae8e1eb0f1f91568558c9766e5a694c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sushilshirbhate</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image001.jpg?w=150" medium="image">
			<media:title type="html">Bhimashankar</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image002.jpg?w=150" medium="image">
			<media:title type="html">Maleshvar waterfall</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image009.jpg?w=112" medium="image">
			<media:title type="html">Maleshvar waterfall</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image010.jpg?w=150" medium="image">
			<media:title type="html">Mumbai pune highway</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image011.jpg?w=150" medium="image">
			<media:title type="html">karavar sea</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image012.jpg?w=150" medium="image">
			<media:title type="html">Malvan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image013.jpg?w=150" medium="image">
			<media:title type="html">Kokan railway</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image014.jpg?w=150" medium="image">
			<media:title type="html">Ganpatipule</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image015.jpg?w=150" medium="image">
			<media:title type="html">Ganpatipule</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image016.jpg?w=150" medium="image">
			<media:title type="html">image016</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image003.jpg?w=150" medium="image">
			<media:title type="html">Sindhudurg</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image004.jpg?w=150" medium="image">
			<media:title type="html">kokan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image005.jpg?w=150" medium="image">
			<media:title type="html">kokan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image006.jpg?w=150" medium="image">
			<media:title type="html">kokan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image007.jpg?w=150" medium="image">
			<media:title type="html">kokan</media:title>
		</media:content>

		<media:content url="http://sushilshirbhate.files.wordpress.com/2010/08/image008.jpg?w=150" medium="image">
			<media:title type="html">kokan</media:title>
		</media:content>
	</item>
	</channel>
</rss>
