<?xml version="1.0" encoding="UTF-8"?>
<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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>binary</title>
	
	<link>http://www.amit.me</link>
	<description>A walk along technology river</description>
	<lastBuildDate>Wed, 17 Feb 2010 09:08:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/amitv" /><feedburner:info uri="amitv" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Assign Categories to Pages in Wordpress</title>
		<link>http://feedproxy.google.com/~r/amitv/~3/It9E8pu0-1Q/</link>
		<comments>http://www.amit.me/assign-categories-to-pages-in-wordpress/545/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 04:59:29 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[map categories to pages]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.amit.me/?p=545</guid>
		<description><![CDATA[Wordpress has different options for organizing posts. One of them is Categories. The categories can only be assigned to posts, not to pages in Wordpress. But sometime you might want to categorize the pages as well. Here are a few cases.

To display related posts on a page.
To display pages and categories in navigation menu in [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/8Ni6EzhTIlPw0b-F6PXvak93k_g/0/da"><img src="http://feedads.g.doubleclick.net/~a/8Ni6EzhTIlPw0b-F6PXvak93k_g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/8Ni6EzhTIlPw0b-F6PXvak93k_g/1/da"><img src="http://feedads.g.doubleclick.net/~a/8Ni6EzhTIlPw0b-F6PXvak93k_g/1/di" border="0" ismap="true"></img></a></p><p></p><p><a href="http://wordpress.org" target="_blank">Wordpress</a> has different options for organizing posts. One of them is <a href="http://codex.wordpress.org/Posts_Categories_SubPanel" target="_blank">Categories</a>. The categories can only be assigned to posts, not to pages in <a href="http://wordpress.org/" target="_blank">Wordpress</a>. But sometime you might want to categorize the pages as well. Here are a few cases.</p>
<ol>
<li>To display related posts on a page.</li>
<li>To display pages and categories in navigation menu in mixed order. Wordpress provides the two different functions to display a list of  <a href="http://codex.wordpress.org/Template_Tags/wp_list_pages" target="_blank">Pages</a> and <a href="http://codex.wordpress.org/Template_Tags/wp_list_categories" target="_blank">Categories</a>. But it doesn’t give the option to setup a navigation menu mixed with pages and categories, like the example given below. In such a case you can  map pages to categories and use them as category pages. Obviously it  will need some changes in the template.
<ul>
<li> Page 1</li>
<li> Page 2</li>
<li> Category 1</li>
<li> Page 3</li>
<li> Category 2</li>
</ul>
</li>
<li>To display pages on the category pages with the posts.</li>
</ol>
<h3>How to map Categories to pages</h3>
<p>Add following lines of code in the <em>function.php </em>of your theme directory. If you don’t have a function.php in the theme directory then you can add it using any text editor. You can also download the plugin which I have made from <a href="http://wordpress.org/extend/plugins/map-categories-to-pages/" target="_blank">http://wordpress.org/extend/plugins/map-categories-to-pages/</a>.</p>
<pre class="brush: php;">
function add_category_box_on_page(){
//add meta box
add_meta_box('categorydiv', __('Categories'), 'post_categories_meta_box', 'page', 'side', 'low');
}

add_action('admin_menu', 'add_category_box_on_page');
</pre>
<p>It will show the category selection box on the right side on &#8220;Edit Page&#8221; page.</p>
<h3>Template changes</h3>
<p>You will also have to edit the <a href="http://codex.wordpress.org/Pages#Page_Templates" target="_blank">page template</a> to use categories. You can use standard category code on your page template. Take a look at <a href="http://codex.wordpress.org/Function_Reference/get_the_category" target="_blank">http://codex.wordpress.org/Function_Reference/get_the_category</a> and <a href="http://codex.wordpress.org/Template_Tags/the_category" target="_blank">http://codex.wordpress.org/Template_Tags/the_category</a>.</p>
<p>Here is a small piece of code to build a page of posts. This example uses the styles from Wordpress default theme.</p>
<pre class="brush: php;">
&lt;?php
global $post;
$categories = get_the_category($post-&gt;ID);
$showposts = -1; // -1 shows all posts
$do_not_show_stickies = 1; // 0 to show stickies
$args=array(
   'category__in' =&gt; $categories,
   'showposts' =&gt; $showposts,
   'caller_get_posts' =&gt; $do_not_show_stickies
   );
$my_query = new WP_Query($args);

?&gt;

	&lt;?php if( $my_query-&gt;have_posts() ) : ?&gt;

		&lt;?php while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post(); ?&gt;
			&lt;?php
			//necessary to show the tags
			global $wp_query;
			$wp_query-&gt;in_the_loop = true;
			?&gt;
			&lt;div &lt;?php post_class() ?&gt; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
				&lt;h2&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
				&lt;small&gt;&lt;?php the_time('F jS, Y') ?&gt; &lt;!-- by &lt;?php the_author() ?&gt; --&gt;&lt;/small&gt;

				&lt;div class=&quot;entry&quot;&gt;
					&lt;?php the_content('Read the rest of this entry »'); ?&gt;
				&lt;/div&gt;

				&lt;p class=&quot;postmetadata&quot;&gt;&lt;?php the_tags('Tags: ', ', ', '
'); ?&gt; Posted in &lt;?php the_category(', ') ?&gt; | &lt;?php edit_post_link('Edit', '', ' | '); ?&gt;  &lt;?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?&gt;&lt;/p&gt;
			&lt;/div&gt;

		&lt;?php endwhile; ?&gt;

	&lt;?php else : ?&gt;

		&lt;h2 class=&quot;center&quot;&gt;Not Found&lt;/h2&gt;
		&lt;p class=&quot;center&quot;&gt;Sorry, but you are looking for something that isn't here.&lt;/p&gt;

	&lt;?php endif; ?&gt;
</pre>
<h3>Displaying pages on Category pages</h3>
<p>When Wordpress fetches the posts from database, the default post type is &#8216;post&#8217;. So even when you have mapped a page to a category, it won&#8217;t display the page on that category page. The post type needs to be changed explicitly on the category page. To change the post type, add following code in <code>function.php</code>.</p>
<pre class="brush: php;">
//call a function just before the query runs to fetch posts
add_action('pre_get_posts','change_post_type');

function change_post_type($var) {
	if(is_category()) {
    	    	$var-&gt;query_vars['post_type'] = 'any';
            	//it will change the value to 'any' from the default value of ;post';
            	//can be any, attachment,  page, post, or revision.
            	//'any' retrieves any type except revisions.
	}
}
</pre>
<img src="http://feeds.feedburner.com/~r/amitv/~4/It9E8pu0-1Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.amit.me/assign-categories-to-pages-in-wordpress/545/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://www.amit.me/assign-categories-to-pages-in-wordpress/545/</feedburner:origLink></item>
		<item>
		<title>A few posts to share from the year 2009 and 2008</title>
		<link>http://feedproxy.google.com/~r/amitv/~3/FfPJRfdTiQo/</link>
		<comments>http://www.amit.me/a-few-posts-to-share-from-the-year-2009-and-2008/538/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 17:02:24 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.amit.me/?p=538</guid>
		<description><![CDATA[I would like to share a few posts which I think are useful.

Tip : Do more with Format Painter
You can be a victim of phishing by blindly following a link in an email
Access dictionary quickly from Apple applications on Mac
Obscene comments on your blog can put you behind the bars
Use Computer in Eco-friendly manner
Useful keyboard [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/qcvz5Ohsg-4dmUyTuEuA3jIU4Z8/0/da"><img src="http://feedads.g.doubleclick.net/~a/qcvz5Ohsg-4dmUyTuEuA3jIU4Z8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qcvz5Ohsg-4dmUyTuEuA3jIU4Z8/1/da"><img src="http://feedads.g.doubleclick.net/~a/qcvz5Ohsg-4dmUyTuEuA3jIU4Z8/1/di" border="0" ismap="true"></img></a></p><p></p><p>I would like to share a few posts which I think are useful.</p>
<ul>
<li><a href="http://www.amit.me/tip-do-more-with-format-painter/447/">Tip : Do more with Format Painter</a></li>
<li><a href="http://www.amit.me/you-can-be-a-victim-of-phishing-by-blindly-following-a-link-in-an-email/421/">You can be a victim of phishing by blindly following a link in an email</a></li>
<li><a href="http://www.amit.me/access-dictionary-quickly-from-apple-applications-on-mac/396/">Access dictionary quickly from Apple applications on Mac</a></li>
<li><a href="http://www.amit.me/obscene-comments-on-your-blog-can-put-you-behind-the-bars/342/">Obscene comments on your blog can put you behind the bars</a></li>
<li><a href="http://www.amit.me/use-computer-in-eco-friendly-manner/326/">Use Computer in Eco-friendly manner</a></li>
<li><a href="http://www.amit.me/useful-keyboard-shortcuts-for-finder/240/">Useful keyboard shortcuts for Finder</a></li>
<li><a href="http://www.amit.me/tip-to-quickly-close-dashboard-widget/223/">Tip to quickly close dashboard widget</a></li>
</ul>
<img src="http://feeds.feedburner.com/~r/amitv/~4/FfPJRfdTiQo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.amit.me/a-few-posts-to-share-from-the-year-2009-and-2008/538/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.amit.me/a-few-posts-to-share-from-the-year-2009-and-2008/538/</feedburner:origLink></item>
		<item>
		<title>Merry Christmas and Happy New Year ‘09</title>
		<link>http://feedproxy.google.com/~r/amitv/~3/Ga-_D2wvV7E/</link>
		<comments>http://www.amit.me/merry-christmas-and-happy-new-year-09/533/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 17:46:30 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.amit.me/?p=533</guid>
		<description><![CDATA[Wishing all of you a very Happy New Year and Merry Christmas &#8216;09.
This year was full of changes and very busy for me. I was too occupied with many projects. I couldn&#8217;t even blog after June 3rd.
I will try to blog regularly in the year 2010. I am also planning to include more topics.
Once again [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/VE-9fuR43bbv567WdDvraRVqx9o/0/da"><img src="http://feedads.g.doubleclick.net/~a/VE-9fuR43bbv567WdDvraRVqx9o/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/VE-9fuR43bbv567WdDvraRVqx9o/1/da"><img src="http://feedads.g.doubleclick.net/~a/VE-9fuR43bbv567WdDvraRVqx9o/1/di" border="0" ismap="true"></img></a></p><p></p><p>Wishing all of you a very Happy New Year and Merry Christmas &#8216;09.</p>
<div id="attachment_535" class="wp-caption aligncenter" style="width: 430px">
	<img class="size-full wp-image-535" title="xmas-new-year-09" src="http://www.amit.me/wp-content/uploads/2009/12/xmas-new-year-09.png" alt="Merry Christmas and Happy New Year '09" width="430" height="133" />
	<p class="wp-caption-text">Merry Christmas and Happy New Year &#39;09</p>
</div>
<p>This year was full of changes and very busy for me. I was too occupied with many projects. I couldn&#8217;t even blog after June 3rd.</p>
<p>I will try to blog regularly in the year 2010. I am also planning to include more topics.</p>
<p>Once again Merry Christmas, Happy New Year and Happy Blogging.</p>
<img src="http://feeds.feedburner.com/~r/amitv/~4/Ga-_D2wvV7E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.amit.me/merry-christmas-and-happy-new-year-09/533/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.amit.me/merry-christmas-and-happy-new-year-09/533/</feedburner:origLink></item>
		<item>
		<title>Change photo capture date and time : iPhoto</title>
		<link>http://feedproxy.google.com/~r/amitv/~3/cgcE6vo8Ywo/</link>
		<comments>http://www.amit.me/change-photos-capture-date-time-iphoto/512/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 16:59:25 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[iPhoto]]></category>

		<guid isPermaLink="false">http://www.amit.me/?p=512</guid>
		<description><![CDATA[Clicked pictures with incorrect date and time? It become really hard to organize photos with wrong date and time.
Most of the picture editing software doesn&#8217;t allow to change photo capture date but iPhoto gives a convenient way to update this information.
Change date and time of only one picture
Select the picture and change the date &#38; [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/mnikcGPRxwgc0DOF7dKeGedbiMA/0/da"><img src="http://feedads.g.doubleclick.net/~a/mnikcGPRxwgc0DOF7dKeGedbiMA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/mnikcGPRxwgc0DOF7dKeGedbiMA/1/da"><img src="http://feedads.g.doubleclick.net/~a/mnikcGPRxwgc0DOF7dKeGedbiMA/1/di" border="0" ismap="true"></img></a></p><p></p><p>Clicked pictures with incorrect date and time? It become really hard to organize photos with wrong date and time.</p>
<p>Most of the picture editing software doesn&#8217;t allow to change photo capture date but <a href="http://www.apple.com/ilife/iphoto/">iPhoto</a> gives a convenient way to update this information.</p>
<h4>Change date and time of only one picture</h4>
<p>Select the picture and change the date &amp; time from Information Panel in the bottom-left corner of iPhoto window. If the Information Panel is not already open click on <span><img class="alignnone size-full wp-image-513" title="Show Information button" src="http://www.amit.me/images/2009/06/show-info-button.png" alt="Show Information button" width="20" height="18" style="display:inline;margin:0" /></span> button in the bottom-left corner.</p>
<div id="attachment_515" class="wp-caption aligncenter" style="width: 150px">
	<img class="size-full wp-image-515" title="Change capture date information panel iPhoto" src="http://www.amit.me/images/2009/06/change-capture-date-info-panel-iphoto.png" alt="Information Panel - iPhoto" width="150" height="125" />
	<p class="wp-caption-text">Information Panel - iPhoto</p>
</div>
<h4>Change date and time of multiple pictures</h4>
<p>Select the pictures and go to Photos menu -&gt; Adjust Date and Time. Here you can enter the new date &amp; time for all the images. iPhoto preserves the original photos and create a new copy for the edited files so select &#8220;Modify original files&#8221; option to update original files.</p>
<div id="attachment_514" class="wp-caption aligncenter" style="width: 450px">
	<img class="size-full wp-image-514" title="Adjust Date and time iPhoto" src="http://www.amit.me/images/2009/06/adjust-date-time-iphoto.png" alt="Adjust Date and time - iPhoto" width="450" height="204" />
	<p class="wp-caption-text">Adjust Date and time - iPhoto</p>
</div>
<h4><a href="http://localhost:8888/blog/wp-content/uploads/2009/06/adjust-date-time-iphoto.png"></a></h4>
<img src="http://feeds.feedburner.com/~r/amitv/~4/cgcE6vo8Ywo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.amit.me/change-photos-capture-date-time-iphoto/512/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.amit.me/change-photos-capture-date-time-iphoto/512/</feedburner:origLink></item>
		<item>
		<title>Online friends list in Orkut</title>
		<link>http://feedproxy.google.com/~r/amitv/~3/3U9wTrqXYJc/</link>
		<comments>http://www.amit.me/online-friends-list-orkut/501/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 17:48:31 +0000</pubDate>
		<dc:creator>Amit Verma</dc:creator>
				<category><![CDATA[Social Network]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[orkut]]></category>

		<guid isPermaLink="false">http://www.amit.me/?p=501</guid>
		<description><![CDATA[Orkut is well integrated with gmail chat. Now you may also notice &#8220;Online friends&#8221; tab in the left-bottom corner of orkut.
Click on the tab to expend and see the online gmail contacts.
]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/qsc7m29qOGvoRj7HtemUsS85CIw/0/da"><img src="http://feedads.g.doubleclick.net/~a/qsc7m29qOGvoRj7HtemUsS85CIw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qsc7m29qOGvoRj7HtemUsS85CIw/1/da"><img src="http://feedads.g.doubleclick.net/~a/qsc7m29qOGvoRj7HtemUsS85CIw/1/di" border="0" ismap="true"></img></a></p><p></p><p>Orkut is well integrated with gmail chat. Now you may also notice &#8220;Online friends&#8221; tab in the left-bottom corner of orkut.</p>
<div id="attachment_504" class="wp-caption aligncenter" style="width: 156px">
	<img class="size-full wp-image-504" title="Orkut: Online friends tab" src="http://www.amit.me/images/2009/04/online-friends-tab.png" alt="Orkut: Online friends tab" width="156" height="21" />
	<p class="wp-caption-text">Orkut: Online friends tab</p>
</div>
<p>Click on the tab to expend and see the online gmail contacts.</p>
<div id="attachment_502" class="wp-caption aligncenter" style="width: 100px">
	<img class="size-full wp-image-502" title="Orkut: Online friends list" src="http://www.amit.me/images/2009/04/orkut-friend-list.png" alt="Orkut: Online friends list" width="100" height="150" />
	<p class="wp-caption-text">Orkut: Online friends list</p>
</div>
<img src="http://feeds.feedburner.com/~r/amitv/~4/3U9wTrqXYJc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.amit.me/online-friends-list-orkut/501/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.amit.me/online-friends-list-orkut/501/</feedburner:origLink></item>
		<item>
		<title>Tip : Stop Gmail to sign into chat automatically</title>
		<link>http://feedproxy.google.com/~r/amitv/~3/wWjnYO-BWrI/</link>
		<comments>http://www.amit.me/tip-stop-gmail-to-sign-into-chat-automatically/497/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 13:02:12 +0000</pubDate>
		<dc:creator>Amit Verma</dc:creator>
				<category><![CDATA[email]]></category>
		<category><![CDATA[automatic sign in]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://www.amit.me/?p=497</guid>
		<description><![CDATA[Gmail automatically sign into chat when you logon to Gmail.
To avoid this sign out chat before you sign out the Gmail. It won’t automatically sign into chat next time you open Gmail.
]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/ZygYqLFFJMZFX7PWVuU4fgjjmOk/0/da"><img src="http://feedads.g.doubleclick.net/~a/ZygYqLFFJMZFX7PWVuU4fgjjmOk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ZygYqLFFJMZFX7PWVuU4fgjjmOk/1/da"><img src="http://feedads.g.doubleclick.net/~a/ZygYqLFFJMZFX7PWVuU4fgjjmOk/1/di" border="0" ismap="true"></img></a></p><p></p><p>Gmail automatically sign into chat when you logon to Gmail.</p>
<p>To avoid this sign out chat before you sign out the Gmail. It won’t automatically sign into chat next time you open Gmail.</p>
<div id="attachment_498" class="wp-caption aligncenter" style="width: 174px">
	<img class="size-full wp-image-498" title="Gmail automatic sign in" src="http://www.amit.me/images/2009/04/gmail-automatic-sign-in.jpg" alt="Stop Gmail to sign into chat automatically" width="174" height="106" />
	<p class="wp-caption-text">Stop Gmail to sign into chat automatically</p>
</div>
<img src="http://feeds.feedburner.com/~r/amitv/~4/wWjnYO-BWrI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.amit.me/tip-stop-gmail-to-sign-into-chat-automatically/497/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.amit.me/tip-stop-gmail-to-sign-into-chat-automatically/497/</feedburner:origLink></item>
		<item>
		<title>1 US dollar is equal to INR 1.419</title>
		<link>http://feedproxy.google.com/~r/amitv/~3/T1HYopVt68k/</link>
		<comments>http://www.amit.me/1-us-dollar-is-equal-to-inr-1419/485/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 15:46:15 +0000</pubDate>
		<dc:creator>Amit Verma</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[exchange rates]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[unit converter]]></category>
		<category><![CDATA[Yahoo Finance]]></category>

		<guid isPermaLink="false">http://www.amit.me/?p=485</guid>
		<description><![CDATA[Surprised!!!
According to Unit Convert widget in Mac OS X&#8217;s dashboard US$1 is equal to INR 1.419.
And one British Pound is equal to INR 22.649.
That is not all, INR 1 is equal to INR 0.222.
This isn&#8217;t only on one Mac. I have tried it on three other Mac&#8217;s on different locations in Delhi, India and the [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/qmXFboFdrfvJpYo7dSW_nl8OMTA/0/da"><img src="http://feedads.g.doubleclick.net/~a/qmXFboFdrfvJpYo7dSW_nl8OMTA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qmXFboFdrfvJpYo7dSW_nl8OMTA/1/da"><img src="http://feedads.g.doubleclick.net/~a/qmXFboFdrfvJpYo7dSW_nl8OMTA/1/di" border="0" ismap="true"></img></a></p><p></p><p>Surprised!!!</p>
<p>According to Unit Convert widget in Mac OS X&#8217;s dashboard US$1 is equal to INR 1.419.</p>
<div id="attachment_488" class="wp-caption aligncenter" style="width: 351px">
	<img class="size-full wp-image-488 " title="Unit Converter : Conversion of USD to INR" src="http://www.amit.me/images/2009/04/usd-to-inr.png" alt="Unit Converter : Conversion of USD to INR" width="351" height="163" />
	<p class="wp-caption-text">Unit Converter : Conversion of USD to INR</p>
</div>
<p>And one British Pound is equal to INR 22.649.</p>
<div id="attachment_487" class="wp-caption aligncenter" style="width: 351px">
	<img class="size-full wp-image-487" title="Unit Converter : Conversion of British Pound to INR" src="http://www.amit.me/images/2009/04/pound-to-inr.png" alt="Unit Converter : Conversion of British Pound to INR" width="351" height="163" />
	<p class="wp-caption-text">Unit Converter : Conversion of British Pound to INR</p>
</div>
<p>That is not all, INR 1 is equal to INR 0.222.</p>
<div id="attachment_486" class="wp-caption aligncenter" style="width: 351px">
	<img class="size-full wp-image-486" title="Unit Converter : Conversion of INR to INR" src="http://www.amit.me/images/2009/04/inr-to-inr.png" alt="Unit Converter : Conversion of INR to INR" width="351" height="163" />
	<p class="wp-caption-text">Unit Converter : Conversion of INR to INR</p>
</div>
<p>This isn&#8217;t only on one Mac. I have tried it on three other Mac&#8217;s on different locations in Delhi, India and the results were similar. The exchange rates are provided by <a href="http://finance.yahoo.com/" target="_blank">Yahoo Finance</a>.</p>
<div id="attachment_489" class="wp-caption aligncenter" style="width: 351px">
	<img class="size-full wp-image-489" title="Unit Converter : Exchange rates provided by Yahoo Finance" src="http://www.amit.me/images/2009/04/exchange-provider.png" alt="Unit Converter : Exchange rates provided by Yahoo Finance" width="351" height="163" />
	<p class="wp-caption-text">Unit Converter : Exchange rates provided by Yahoo Finance</p>
</div>
<p>Think what would be the impact on the economy if these exchange rates were correct&#8230;</p>
<img src="http://feeds.feedburner.com/~r/amitv/~4/T1HYopVt68k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.amit.me/1-us-dollar-is-equal-to-inr-1419/485/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.amit.me/1-us-dollar-is-equal-to-inr-1419/485/</feedburner:origLink></item>
		<item>
		<title>Gmail Labs : Undo send</title>
		<link>http://feedproxy.google.com/~r/amitv/~3/4Xeq4nVkl2U/</link>
		<comments>http://www.amit.me/gmail-labs-undo-send/479/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 16:56:28 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[gmail labs]]></category>
		<category><![CDATA[Undo Send]]></category>

		<guid isPermaLink="false">http://www.amit.me/?p=479</guid>
		<description><![CDATA[

Gmail adds a new labs feature to undo send mail. This feature can retrieve the sent message.
Gmail will hold the message for 5 seconds after hitting send button. This feature is quite useful when you press send button accidently before finishing your message or forget to attach file. You don&#8217;t have write a &#8220;Oops&#8221; message [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/9xQouk3pnfki27U81BdxE5JQwwA/0/da"><img src="http://feedads.g.doubleclick.net/~a/9xQouk3pnfki27U81BdxE5JQwwA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9xQouk3pnfki27U81BdxE5JQwwA/1/da"><img src="http://feedads.g.doubleclick.net/~a/9xQouk3pnfki27U81BdxE5JQwwA/1/di" border="0" ismap="true"></img></a></p><p><a class="post_image_link" href="http://www.amit.me/gmail-labs-undo-send/479/" title="Permanent link to Gmail Labs : Undo send"><img class="post_image alignnone" src="http://www.amit.me/images/2009/03/gmail_s.jpg" width="150" height="61" alt="Gmail" /></a>
</p><div>
<p>Gmail adds a new labs feature to undo send mail. This feature can retrieve the sent message.</p>
<div id="attachment_481" class="wp-caption aligncenter" style="width: 400px">
	<img class="size-medium wp-image-481" title="Gmail Labs : Undo Send" src="http://www.amit.me/images/2009/03/gmail_undo_send-400x75.png" alt="Gmail Labs : Undo Send" width="400" height="75" />
	<p class="wp-caption-text">Gmail Labs : Undo Send</p>
</div>
<p>Gmail will hold the message for 5 seconds after hitting send button. This feature is quite useful when you press send button accidently before finishing your message or forget to attach file. You don&#8217;t have write a &#8220;Oops&#8221; message because you can undo now. But remember that the message can be retrieve only with in 5 seconds.</p>
<p>It will also make your email to deliver in more then 5 seconds.</p>
<div id="attachment_480" class="wp-caption aligncenter" style="width: 400px">
	<img class="size-medium wp-image-480" title="Gmail Labs : Undo Send" src="http://www.amit.me/images/2009/03/gmail-undo-send-labs-400x74.jpg" alt="Gmail Labs : Undo Send" width="400" height="74" />
	<p class="wp-caption-text">Gmail Labs : Undo Send</p>
</div>
<p>Don&#8217;t forget to enable the &#8220;Undo Send&#8221; feature from Gmail Labs. It is turned off by default.</p></div>
<img src="http://feeds.feedburner.com/~r/amitv/~4/4Xeq4nVkl2U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.amit.me/gmail-labs-undo-send/479/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.amit.me/gmail-labs-undo-send/479/</feedburner:origLink></item>
		<item>
		<title>iPod Shuffle 3rd Generation – limited functionality without it’s headphone</title>
		<link>http://feedproxy.google.com/~r/amitv/~3/DUB1vUrPilc/</link>
		<comments>http://www.amit.me/ipod-shuffle-3rd-generation-limited-functionality-without-its-headphone/470/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 16:47:29 +0000</pubDate>
		<dc:creator>Amit Verma</dc:creator>
				<category><![CDATA[iPod]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPod Shuffle 3rd Generation]]></category>
		<category><![CDATA[VoiceOver]]></category>

		<guid isPermaLink="false">http://www.amit.me/?p=470</guid>
		<description><![CDATA[Apple recently launched iPod Shuffle with a new feature VoiceOver. It also has a big change, no control buttons except the Shuffle, Play in order and Off. The functionality is quite limited if not use with the default headphone. When you switch on the shuffle with anything plugged into headphone jack it starts playing but [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/WISIS26BRSXZqU6R9IKV8OmXCYw/0/da"><img src="http://feedads.g.doubleclick.net/~a/WISIS26BRSXZqU6R9IKV8OmXCYw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/WISIS26BRSXZqU6R9IKV8OmXCYw/1/da"><img src="http://feedads.g.doubleclick.net/~a/WISIS26BRSXZqU6R9IKV8OmXCYw/1/di" border="0" ismap="true"></img></a></p><p></p><p><a href="http://www.apple.com" target="_blank">Apple </a>recently launched <a href="http://www.apple.com/ipodshuffle" target="_blank">iPod Shuffle</a> with a new feature VoiceOver. It also has a big change, no control buttons except the Shuffle, Play in order and Off. The functionality is quite limited if not use with the default headphone. When you switch on the shuffle with anything plugged into headphone jack it starts playing but there is no way to navigate between the songs and playlists.</p>
<div id="attachment_471" class="wp-caption aligncenter" style="width: 150px">
	<img class="size-thumbnail wp-image-471" title="iPod Shuffle Controls" src="http://www.amit.me/images/2009/03/ipod_shuffle_controls-150x100.jpg" alt="iPod Shuffle 3rd Gen Controls" width="150" height="100" />
	<p class="wp-caption-text">iPod Shuffle 3rd Gen Controls</p>
</div>
<p>I have iPod Nano and iPhone. Sometimes I use them with external speakers using 3.5-mm stereo jack. But iPod Shuffle 3rd Generation can&#8217;t be used with other speakers because of lack of control panel. There is same compatibility problem with 3rd party headphones.</p>
<div id="attachment_473" class="wp-caption aligncenter" style="width: 258px">
	<img class="size-full wp-image-473" title="iPod Shuffle 3rd Gen" src="http://www.amit.me/images/2009/03/ipod_shuffle.jpg" alt="iPod Shuffle 3rd Gen" width="258" height="223" />
	<p class="wp-caption-text">iPod Shuffle 3rd Gen</p>
</div>
<img src="http://feeds.feedburner.com/~r/amitv/~4/DUB1vUrPilc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.amit.me/ipod-shuffle-3rd-generation-limited-functionality-without-its-headphone/470/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.amit.me/ipod-shuffle-3rd-generation-limited-functionality-without-its-headphone/470/</feedburner:origLink></item>
		<item>
		<title>Tip : Do more with Format Painter</title>
		<link>http://feedproxy.google.com/~r/amitv/~3/HMuboVC-YTs/</link>
		<comments>http://www.amit.me/tip-do-more-with-format-painter/447/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 12:30:57 +0000</pubDate>
		<dc:creator>Amit Verma</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Format Painter]]></category>
		<category><![CDATA[Formatting]]></category>
		<category><![CDATA[MS Excel]]></category>
		<category><![CDATA[MS Office]]></category>
		<category><![CDATA[MS Word]]></category>
		<category><![CDATA[Styling]]></category>

		<guid isPermaLink="false">http://www.amit.me/?p=447</guid>
		<description><![CDATA[Format Painter is a very good tool in MS office to copy and paste style. If you click only once on the Format Painter icon to copy the style, the Format Painter goes away after one application.
Double click on the format painter icon and you can use it on different part of the the document [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/NPUESXKTVhxHj-f7bid6qjBIpVY/0/da"><img src="http://feedads.g.doubleclick.net/~a/NPUESXKTVhxHj-f7bid6qjBIpVY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NPUESXKTVhxHj-f7bid6qjBIpVY/1/da"><img src="http://feedads.g.doubleclick.net/~a/NPUESXKTVhxHj-f7bid6qjBIpVY/1/di" border="0" ismap="true"></img></a></p><p></p><p>Format Painter is a very good tool in MS office to copy and paste style. If you click only once on the Format Painter icon to copy the style, the Format Painter goes away after one application.</p>
<p>Double click on the format painter icon and you can use it on different part of the the document until you click on the format painter icon again or press ESC.</p>
<p><object width="425" height="350" data="http://www.youtube.com/v/q5fHa831-TI" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/q5fHa831-TI" /></object></p>
<img src="http://feeds.feedburner.com/~r/amitv/~4/HMuboVC-YTs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.amit.me/tip-do-more-with-format-painter/447/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.amit.me/tip-do-more-with-format-painter/447/</feedburner:origLink></item>
	</channel>
</rss>
