<?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"
	>

<channel>
	<title>ckunte.com &#187; Blog</title>
	<atom:link href="http://ckunte.com/archives/category/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://ckunte.com</link>
	<description>Life, dreams, technology, perfection, rhythm and melody.</description>
	<pubDate>Thu, 09 Oct 2008 15:37:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Feed address update request</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ffeed-address-update-request&amp;seed_title=Feed+address+update+request</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ffeed-address-update-request&amp;seed_title=Feed+address+update+request#comments</comments>
		<pubDate>Wed, 30 Apr 2008 21:30:37 +0000</pubDate>
		<dc:creator>Chyetanya Kunte</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://ckunte.com/?p=1808</guid>
		<description><![CDATA[My FeedBurner1 woes appear out of nowhere. The cause, I suspect, must be due to those screwed-up settings&#8212;both on FeedBurner, as well as on my own host&#8212;well beyond being able to fix.
If you read this blog via feed2, then please update this blog&#8217;s feed address in your software or service as follows: http://ckunte.com/feed/atom
Thank you.

FeedBurner&#8212;a statistical [...]]]></description>
			<content:encoded><![CDATA[<p>My FeedBurner<sup>1</sup> woes appear out of nowhere. The cause, I suspect, must be due to those screwed-up settings&#8212;both on FeedBurner, as well as on my own host&#8212;well beyond being able to fix.</p>
<p>If you read this blog via feed<sup>2</sup>, then please update this blog&#8217;s feed address in your software or service as follows: <a href="http://ckunte.com/feed/atom">http://ckunte.com/feed/atom</a></p>
<p>Thank you.
<ol class="footnotes">
<li id="footnote_0_1808" class="footnote">FeedBurner&#8212;a statistical service by Google, which serves feed to readers of this blog.</li>
<li id="footnote_1_1808" class="footnote">Via feed reader software FeedDemon, NetNewsWire, or others, or via services such as Google Reader, Bloglines, or others.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ffeed-address-update-request&amp;seed_title=Feed+address+update+request/feed</wfw:commentRss>
		</item>
		<item>
		<title>Site backup using rsync over ssh</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fsite-backup-rsync&amp;seed_title=Site+backup+using+rsync+over+ssh</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fsite-backup-rsync&amp;seed_title=Site+backup+using+rsync+over+ssh#comments</comments>
		<pubDate>Wed, 30 Jan 2008 20:49:20 +0000</pubDate>
		<dc:creator>Chyetanya Kunte</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Server side]]></category>

		<category><![CDATA[backup]]></category>

		<category><![CDATA[restore]]></category>

		<category><![CDATA[rsync]]></category>

		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://ckunte.com/archives/site-backup-rsync</guid>
		<description><![CDATA[I use rsync over ssh to backup files&#8212;including my entire WordPress installation&#8212;from my site to my local machine (and back). Having these tools natively in Ubuntu makes it a lot easier&#8212;not to mention similar file paths on both local machine as well as on my webhost. Here&#8217;s how I do it. 
This to backup1 all [...]]]></description>
			<content:encoded><![CDATA[<p>I use <a href="http://samba.anu.edu.au/rsync/">rsync</a> over <a href="http://www.openssh.com/">ssh</a> to backup files&#8212;including my entire WordPress installation&#8212;from my site to my local machine (and back). Having these tools natively in Ubuntu makes it a lot easier&#8212;not to mention similar file paths on both local machine as well as on my webhost. Here&#8217;s how I do it. <span id="more-1727"></span></p>
<p>This to backup<sup>1</sup> all files from my site to my local machine:</p>
<p><code>rsync -avz -e ssh remoteuserid@mysite.com:<em>remotepath</em> <em>localpath</em></code></p>
<p>And from my local machine to my site:</p>
<p><code>rsync -avz -e ssh <em>localpath</em> remoteuserid@mysite.com:<em>remotepath</em></code></p>
<p><em>remotepath</em> would be something like this: <code>/home/remoteuserid/public_html</code>, and <em>localpath</em> would be like this: <code>/home/localuserid/backup/public_html</code>.</p>
<p>Damn it&#8217;s fast.
<ol class="footnotes">
<li id="footnote_0_1727" class="footnote">I don&#8217;t do a cron job of a file backup and restore&#8212;I get knots in my stomach. Call it personal preference, but I prefer it manual; and this is mostly because of my file-scatter, and the state of my files, which are usually in various levels of edit&#8212;at any given point of time.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fsite-backup-rsync&amp;seed_title=Site+backup+using+rsync+over+ssh/feed</wfw:commentRss>
		</item>
		<item>
		<title>Twitter badge</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftwitter-badge&amp;seed_title=Twitter+badge</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftwitter-badge&amp;seed_title=Twitter+badge#comments</comments>
		<pubDate>Tue, 16 Oct 2007 22:24:06 +0000</pubDate>
		<dc:creator>Chyetanya Kunte</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://ckunte.com/archives/twitter-badge</guid>
		<description><![CDATA[After contemplating a bit, I decided that a Twitter badge would do no harm on this site; it now appears in the root, and on my about page. 
If you&#8217;re using the badge code, be sure to correct the typo in the second script line from text="text/javascript" to type="text/javascript".
]]></description>
			<content:encoded><![CDATA[<p>After contemplating a bit, I decided that a Twitter badge would do no harm on this site; it now appears in the <a href="http://ckunte.com/">root</a>, and on my <a href="http://ckunte.com/colophon/about">about</a> page. </p>
<p>If you&#8217;re using the <a href="http://twitter.com/badges/html">badge code</a>, be sure to correct the typo in the second script line from <code>text="text/javascript"</code> to <code>type="text/javascript"</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftwitter-badge&amp;seed_title=Twitter+badge/feed</wfw:commentRss>
		</item>
		<item>
		<title>Tag scratch</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftag-scratch&amp;seed_title=Tag+scratch</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftag-scratch&amp;seed_title=Tag+scratch#comments</comments>
		<pubDate>Tue, 25 Sep 2007 20:48:50 +0000</pubDate>
		<dc:creator>Chyetanya Kunte</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Weblog]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ckunte.com/archives/tag-scratch</guid>
		<description><![CDATA[The very obvious feature in this latest release of Wordpress (v2.3) is the ability to tag posts natively. I consciously refrained from adding tag support to posts earlier because of a couple of reasons:

The feature itself was via a plugin, and I wasn&#8217;t sure how it would get integrated in the future.
I let a set [...]]]></description>
			<content:encoded><![CDATA[<p>The very obvious feature in this latest release of Wordpress (v2.3) is the ability to <a href="http://wordpress.org/development/2007/09/wordpress-23/">tag posts natively</a>. I consciously refrained from adding tag support to posts earlier because of a couple of reasons:</p>
<ol>
<li>The feature itself was via a plugin, and I wasn&#8217;t sure how it would get integrated in the future.</li>
<li>I let a set of categories (or topics) develop first over a period of time.</li>
</ol>
<p>Seeing my del.ici.ous account grow quickly into a dust of tags in horror reminded me of not having another chaos in the name of classification. Tagging is addictive and tends to grow out of control and very fast in number. </p>
<p>To me, tags compliment and extend a category&#8217;s context, not replace it. As an example, every time I wrote about Wordpress, Movabletype or some weblog software, I made a decision to put those posts under the category: <a href="http://ckunte.com/archives/category/software/">software</a> &rarr; <a href="http://ckunte.com/archives/category/software/weblog/">weblog</a>. A better way to extend those posts, thus categorized, now would be to consider the actual names (like wordpress, movabletype, for example) as tags.</p>
<p>With that in mind, while I am not about to unleash tags en masse on this site just because the feature is now natively in, I might consider for select posts. In addition, whenever tags debut on this website, the plan is to display them only on post pages (or permalink pages). Adding them on main page, to me, is like adding textual noise. A <a href="http://codex.wordpress.org/Template_Tags/wp_tag_cloud">tag cloud</a>, in addition, may appear on archives page in future.</p>
<p><strong>Update:</strong> Okay, so they&#8217;re now on. <a href='http://ckunte.com/archives'>Archives</a> section shows how, as well as the individual posts, where tags are used. Template tags <code>the_tags()</code> and <code>wp_tag_cloud()</code> make them all look so easy to implement. However, I am yet to see conditional functions for tagging in Wordpress like <code>is_tag()</code> and <code>single_tag()</code> to better use these new features.</p>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftag-scratch&amp;seed_title=Tag+scratch/feed</wfw:commentRss>
		</item>
		<item>
		<title>Embedding Google Maps</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fembedding-google-maps&amp;seed_title=Embedding+Google+Maps</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fembedding-google-maps&amp;seed_title=Embedding+Google+Maps#comments</comments>
		<pubDate>Wed, 15 Aug 2007 19:00:12 +0000</pubDate>
		<dc:creator>Chyetanya Kunte</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Maps]]></category>

		<guid isPermaLink="false">http://ckunte.com/archives/embedding-google-maps</guid>
		<description><![CDATA[I am both thrilled and worried about Google releasing a simple way to &#60;embed&#62;1 Maps into our web pages and blog posts. 
Thrilled obviously because I get to include maps of our excursions2. Maps, narration and pictures when presented together give readers an amazing sense of completeness of, say, a travelogue for example.
Worried because embedding [...]]]></description>
			<content:encoded><![CDATA[<p>I am both thrilled and worried about <a title='APC Mag: Google launches YouTube-style embeddable maps' href="http://www.apcmag.com/6954/google_launches_youtube_style_embeddable_maps">Google releasing</a> a simple way to <code>&lt;embed&gt;</code><sup>1</sup> Maps into our web pages and blog posts. </p>
<p>Thrilled obviously because I get to include maps of our excursions<sup>2</sup>. Maps, narration and pictures when presented together give readers an amazing sense of completeness of, say, a travelogue for example.</p>
<p>Worried because embedding or inserting objects come with <a title='A List Apart: Flash Embedding Cage Match' href='http://www.alistapart.com/articles/flashembedcagematch'>their own headaches</a>&#8212;in terms of site validation. If it is going to be like the Youtube insert code, then I&#8217;d rather continue with what I&#8217;ve been doing all along&#8212;just link to the long URL instead.</p>
<p>So here&#8217;s hoping that Google Maps inserts are going to validate by default.
<ol class="footnotes">
<li id="footnote_0_1569" class="footnote">Or insert <code>&lt;object&gt;</code>, whichever Google pushes by default.</li>
<li id="footnote_1_1569" class="footnote">A habit I have picked-up in recent times.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fembedding-google-maps&amp;seed_title=Embedding+Google+Maps/feed</wfw:commentRss>
		</item>
		<item>
		<title>Table tweak for a faster blog</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftable-tweak-for-a-faster-blog&amp;seed_title=Table+tweak+for+a+faster+blog</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftable-tweak-for-a-faster-blog&amp;seed_title=Table+tweak+for+a+faster+blog#comments</comments>
		<pubDate>Tue, 24 Jul 2007 20:58:58 +0000</pubDate>
		<dc:creator>Chyetanya Kunte</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Geekspeak]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ckunte.com/archives/table-tweak-for-a-faster-blog</guid>
		<description><![CDATA[This is what happens when you&#8217;re busy shifting base&#8212;you lose track of useful signal. I was out of sync when Mr Wordpress slipped-in this gem last December. I found it while Googling for Matt&#8217;s notes from MySQL Camp at Google. 
While I have no access to MySQL conf on my host to incorporate all the [...]]]></description>
			<content:encoded><![CDATA[<p>This is what happens when you&#8217;re busy <a href="http://ckunte.com/archives/the-wish">shifting base</a>&#8212;you lose track of useful signal. I was out of sync when <a href="http://photomatt.net/">Mr Wordpress</a> slipped-in <a href="http://comox.textdrive.com/pipermail/wp-hackers/2006-December/009809.html">this gem</a> last December. I found it while Googling for Matt&#8217;s <a href="http://photomatt.net/2006/11/10/mysql-camp-google-notes/">notes from MySQL Camp at Google</a>. <span id="more-1550"></span></p>
<p>While I have no access to MySQL conf on my host to incorporate all the recommended changes, I could still speed this site up a bit just by setting most of the tables to InnoDB engine (with the exception of <code>wp_posts</code> table, which still needs to be set to MyISAM engine due to <a href="http://dev.mysql.com/tech-resources/articles/storage-engine/part_3.html">lack of <code>FULLTEXT</code> index features in InnoDB</a>). In fact, <code>wp_posts</code> table refuses to be set to InnoDB when you try this&#8212;at least on my host:</p>
<p><code>ALTER TABLE wp_posts ENGINE = INNODB;</code></p>
<p>(Remember to replace the default <code>wp_</code> table suffix to whatever you&#8217;re using; I don&#8217;t use the default by the way.)</p>
<p>Honestly, I would be happy to see MyISAM++ out soon and supported on my host<sup>1</sup>, now that InnoDB&#8212;as a technology&#8212;is exclusively Oracle&#8217;s baby.
<ol class="footnotes">
<li id="footnote_0_1550" class="footnote">MyISAM++ is prophesied to have InnoDB&#8217;s features and more.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftable-tweak-for-a-faster-blog&amp;seed_title=Table+tweak+for+a+faster+blog/feed</wfw:commentRss>
		</item>
		<item>
		<title>Twitter on homepage</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftwitter-on-homepage&amp;seed_title=Twitter+on+homepage</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftwitter-on-homepage&amp;seed_title=Twitter+on+homepage#comments</comments>
		<pubDate>Mon, 02 Jul 2007 13:55:00 +0000</pubDate>
		<dc:creator>Chyetanya Kunte</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://ckunte.com/archives/twitter-on-homepage</guid>
		<description><![CDATA[
I wanted to capture something live on a near static homepage. Twitter best complements my presence, my activity and adds a curious twist to an otherwise dull static page&#8212;making people (who care enough) aware that I&#8217;m alive and kicking somewhere.
The best part, of course, is the simplicity of Twittering&#8212;one liners, no formatting needed and no [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/chetan/801490924/" title="Photo Sharing"><img class="centered" src="http://farm2.static.flickr.com/1142/801490924_2617741b21.jpg" width="500" height="250" alt="ckunte.com homepage july 2007" /></a></p>
<p>I wanted to capture something <em>live</em> on a near static <a href="http://ckunte.com/archives/homepage-again">homepage</a>. <a href="http://twitter.com/">Twitter</a> best complements my presence, my activity and adds a curious twist to an otherwise dull static page&#8212;making people (who care enough) aware that I&#8217;m alive and kicking somewhere.</p>
<p>The best part, of course, is the simplicity of Twittering&#8212;one liners, no formatting needed and no need to reach for a computer to update something. I can be in another country, on the road, and one SMS, updates my homepage. I think that&#8217;s a fantastic idea.<br />
<strong><br />
Update [12.Aug.2007]:</strong> Reverted back to normal view, for Sneha, my wife, who hated clicking multiple links to get to new posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ftwitter-on-homepage&amp;seed_title=Twitter+on+homepage/feed</wfw:commentRss>
		</item>
		<item>
		<title>Homepage again</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fhomepage-again&amp;seed_title=Homepage+again</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fhomepage-again&amp;seed_title=Homepage+again#comments</comments>
		<pubDate>Sat, 30 Jun 2007 20:37:22 +0000</pubDate>
		<dc:creator>Chyetanya Kunte</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://ckunte.com/archives/homepage-again</guid>
		<description><![CDATA[A little change of landscape around here&#8212;the homepage has undergone some surgery. I promise this one will linger-on longer than the previous one. 

As to why I have cut the intestines and stitched it backwards, let&#8217;s just say it&#8217;s a personal preference&#8212;no plans to offer any plausible explanation. So for better or worse, this is [...]]]></description>
			<content:encoded><![CDATA[<p>A little change of landscape around here&#8212;<a href="http://ckunte.com/">the homepage</a> has undergone some surgery. I promise this one will linger-on longer than <a href="http://ckunte.com/archives/homepage-or-a-blog">the previous one</a>. </p>
<p><a href="http://www.flickr.com/photos/chetan/801490924/" title="ckunte.com homepage july 2007 by chetan, on Flickr"><img class="centered" src="http://farm2.static.flickr.com/1142/801490924_2617741b21.jpg" width="500" height="250" alt="ckunte.com homepage july 2007" /></a></p>
<p>As to why I have cut the intestines and stitched it backwards, let&#8217;s just say it&#8217;s a personal preference&#8212;no plans to offer any plausible explanation. So for better or worse, <a href="http://ckunte.com/">this is how</a> the grass on my lawn is going to look from now on.</p>
<p><em>Is this homepage any good or is it just another one of your idiotic ideas?</em></p>
<p>Well, let me just add that&#8212;with the exception of pagination&#8212;this homepage hasn&#8217;t lost any of its predecessor&#8217;s functionality.</p>
<p><em>Huh? What? Where? How?</em></p>
<p>If you have noticed carefully, the primary links that lead you further inside are all there. In addition, this homepage retains all its Google juice, its Technorati rank and my Open ID. It is also feed intelligent<sup>1</sup>, <a href="http://ckunte.com/archives/site-search-autodiscovery">open search intelligent</a><sup>2</sup>, and because it&#8217;s powered by <a href="http://wordpress.org/">Wordpress</a>, it allows you to explore just about everything via the address bar<sup>3</sup>.</p>
<p><em>So what did change here?</em></p>
<p>Other than the obvious list of chronological posts missing, this site makes feed its primary access point for updated information. You can, of course, access individual posts via either the <a href="http://ckunte.com/archives/">archives</a> page or via the <a href="http://ckunte.com/atom">updated feed</a><sup>4</sup>. The comments and pingbacks are open too&#8212;if you&#8217;re compelled enough to share something&#8212;agree, disagree, a different point of view and pingback&#8212;here, nothing on this site prevents you from doing so.</p>
<p>In short, this site is as much transparent to a geek (and a search engine spider<sup>5</sup>) as opaque it is to a casual surfer. I&#8217;d like to think I&#8217;ve captured that idea well here.
<ol class="footnotes">
<li id="footnote_0_1525" class="footnote">All modern browsers and feed readers can auto-discover XML feeds on this site. For more variety, look up <a href="http://ckunte.com/colophon/">colophon</a> page.</li>
<li id="footnote_1_1525" class="footnote">Firefox can auto-discover ckunte.com&#8217;s search. Load the homepage in Firefox and then pull down the search menu&#8212;next to the address bar. You&#8217;ll notice that there&#8217;s an Add &#8220;ckunte.com&#8221;. Add and begin searching this site. Yes, that simple.</li>
<li id="footnote_2_1525" class="footnote">Look up the <a href="http://ckunte.com/archives/">archives</a> page for more details.</li>
<li id="footnote_3_1525" class="footnote">There&#8217;s also <a href="http://pipes.yahoo.com/pipes/lllfiQW92xGzfhBhE5PZnA/">a master feed</a> combining everything, if you&#8217;re interested.</li>
<li id="footnote_4_1525" class="footnote">Because over 70% of access to this site is via search.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fhomepage-again&amp;seed_title=Homepage+again/feed</wfw:commentRss>
		</item>
		<item>
		<title>Site search autodiscovery</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fsite-search-autodiscovery&amp;seed_title=Site+search+autodiscovery</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fsite-search-autodiscovery&amp;seed_title=Site+search+autodiscovery#comments</comments>
		<pubDate>Mon, 11 Jun 2007 21:48:51 +0000</pubDate>
		<dc:creator>Chyetanya Kunte</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Browser]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Geekspeak]]></category>

		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[opensearch]]></category>

		<guid isPermaLink="false">http://ckunte.com/archives/site-search-autodiscovery</guid>
		<description><![CDATA[I&#8217;m down with Conjunctivitis, and doing all the things I am forbidden to do&#8212;surfing the internet, watching TV, reading a book and if that wasn&#8217;t enough, updating some code. And I just finished implementing search auto-discovery on this site1.
Much like auto-discovering feeds2, an Opensearch-standard compliant browser now auto-discovers the availability of search on this site.

Try [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m down with <a href="http://en.wikipedia.org/wiki/Conjunctivitis">Conjunctivitis</a>, and doing all the things I am forbidden to do&#8212;surfing the internet, watching TV, reading a book and if that wasn&#8217;t enough, updating some code. And I just finished implementing search auto-discovery on this site<sup>1</sup>.</p>
<p>Much like auto-discovering feeds<sup>2</sup>, an <a href="http://www.opensearch.org/Home">Opensearch</a>-standard compliant browser now auto-discovers the availability of search on this site.</p>
<p><img class='centered' src='http://ckunte.com/wp-content/uploads/2007/10/ckuntexml.png' alt='Open search' /></p>
<p>Try loading this site in a supported<sup>3</sup> browser. You&#8217;ll either notice a subtle search icon highlighted in the default browser theme&#8212;suggesting that there&#8217;s something you can add to your list of search plugins or more visibly via a &#8220;+&#8221; sign, if you use a theme like <a href="https://addons.mozilla.org/en-US/firefox/addon/3479">Winstripe</a>. Pull the search menu down and you&#8217;ll notice this: Add &#8220;ckunte.com&#8221;.</p>
<p>Enabling this on any site is easy. You&#8217;ll need to add the following<sup>4</sup> in your site&#8217;s header part of XHTML code. I&#8217;m using my (this) site&#8217;s code for example:</p>
<p><code>&lt;link rel="search" type="application/opensearchdescription+xml" href="/ckuntecom.xml" title="ckunte.com" /&gt;</code></p>
<p>(I had <a href="http://ckunte.com/archives/firefox-search-plugin-update">previously explained</a> the construction of Opensearch XML file&#8212;<code>ckuntecom.xml</code>, which enables search auto-discovery.)</p>
<p>As a user, for sites that do not offer this feature, you can always use <a href="http://ckunte.com/archives/opensearchfox">OpensearchFox</a>. But if you&#8217;re a site owner, it is probably a good idea to provide this option to your regular readers and referrers.
<ol class="footnotes">
<li id="footnote_0_1497" class="footnote">I am beginning to test Sneha&#8217;s patience now.</li>
<li id="footnote_1_1497" class="footnote">Via the orange feed icon on the right end of the address or location bar.</li>
<li id="footnote_2_1497" class="footnote">Available in Opensearch supported browsers&#8212;Firefox and Internet Explorer 7.</li>
<li id="footnote_3_1497" class="footnote">Change file location, file name and title as applicable.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fsite-search-autodiscovery&amp;seed_title=Site+search+autodiscovery/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
