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

<channel>
	<title>Musings - Abhay S. Kushwaha &#187; Internet</title>
	<atom:link href="http://blog.kushwaha.com/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kushwaha.com</link>
	<description>Things from, of and about the head on the shoulders.</description>
	<lastBuildDate>Mon, 22 Feb 2010 13:09:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML Image Maps Tutorial for Beginners</title>
		<link>http://blog.kushwaha.com/2009/11/09/html-image-maps-tutorial-for-beginners/</link>
		<comments>http://blog.kushwaha.com/2009/11/09/html-image-maps-tutorial-for-beginners/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 14:59:31 +0000</pubDate>
		<dc:creator>Abhay S</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://blog.kushwaha.com/?p=240</guid>
		<description><![CDATA[Once upon a time, I was a member of HTML Writer&#8217;s Guild and used to participate in their mailing list discussions as well. Here&#8217;s an old post I came across today while cleaning my system that&#8217;s probably still relevant.
Notice the date on which it was written. Ancient, huh? And yes, we did write the markup [...]]]></description>
			<content:encoded><![CDATA[<p>Once upon a time, I was a member of <a href="http://www.hwg.org/">HTML Writer&#8217;s Guild</a> and used to participate in their mailing list discussions as well. Here&#8217;s an old post I came across today while cleaning my system that&#8217;s probably still relevant.</p>
<p>Notice the date on which it was written. Ancient, huh? And yes, we did write the markup in CAPS back then.</p>
<p><strong>HTML Image Maps Tutorial for Beginners</strong><br />
<em>Written on Tue, 30 Dec 1997 01:55:49</em></p>
<p>When we use image maps, we are essentially defining areas of a picture as &#8220;hotspots&#8221; and the action to take when that &#8220;hotspot&#8221; is activated.</p>
<p>Let&#8217;s take an example. A car. You want it to be that when you click on the glass, it takes you to the page giving finer details of glass and when you click on the rest of the body, it takes you to finer details of how the car was painted. For this, we are going to &#8220;map&#8221; the image to different &#8220;HREF&#8221; links. How?</p>
<p>The standard, minimum recommended image tag is:<br />
<code &lt;IMG SRC="car.jpg" ALT="A car" WIDTH=100 HEIGHT=50&gt;</code></p>
<p>When we want the image to use a map, we add a "usemap" attribute. So, the image tag becomes:<br />
</code><code>&lt;IMG SRC="car.jpg" ALT="A car" WIDTH=100 HEIGHT=50 usemap="name"&gt;</code></p>
<p>Now, we are telling the image to use a map. But where is the map? We have to define it first. How do we do it? We use the &lt;MAP&gt; tag. We also have to give it a name which we will specify in the &#8220;usemap&#8221; attribute. Let&#8217;s see what I mean:</p>
<p><code>&lt;MAP NAME="CAR"&gt;<br />
&lt;/MAP&gt;</code></p>
<p>So, the image tag will be:<br />
<code>&lt;IMG SRC="car.jpg" ALT="A car" WIDTH=100 HEIGHT=50 usemap="#car"&gt;</code></p>
<p>As you might know, we use the &#8220;#&#8221; to tell the browser that the what we just referenced to exists in the same HTML document somewhere (usually people put the maps near the end of the document). So, it turns out that we use the &#8220;name&#8221; attribute in the &#8220;MAP&#8221; tag to bookmark the map and we can put a reference to this bookmark just as we would to any other standard &lt;A NAME=&#8221;name&#8221;&gt; bookmark in a HTML file. Notice something? The procedure remains the same. Only, since the content of the bookmark are mapping directions, we use &lt;MAP&gt; &#038; &lt;/MAP&gt; instead of the usual &lt;A&gt; &#038; &lt;/A&gt;. Easy till now? It gets simpler.</p>
<p>So now we know how to set a bookmark to mapping directions and we know how to call it for an image. Now we see how to &#8220;program&#8221; these directions for an image. Fine?</p>
<p>What comes between the &lt;MAP NAME=&#8221;name&#8221;&gt; &#038; &lt;/MAP&gt;? There is only one thing that can be used here &#8211; the &lt;AREA&gt; tag which defines areas on the image which refers to the map. Then we tell it which shape to use and what the coordinates,etc are for that shape. Then we specify what action to take. If no action is given, no action will be taken as a default. See? It&#8217;s simple.</p>
<p>Now you know it as well as I do that we can specify parts of an image like that only by addressing actual pixel values of the image. Let&#8217;s use our example here.</p>
<p>Remember the car image above? Its width is 100 pixels and height is 50 pixels. Let&#8217;s define two equal vertical bands. We do it by defining two rectangles using the &#8220;RECT&#8221; shape. The &#8220;COORDS&#8221; attribute is specified as left-x,top-y,right-x,down-y. Here is the map. See for yourself:</p>
<p><code>&lt;MAP NAME="car"&gt;<br />
&nbsp;&nbsp;&lt;AREA SHAPE="RECT" COORDS="1,1,50,50"   HREF="front.html"&gt;<br />
&nbsp;&nbsp;&lt;AREA SHAPE="RECT" COORDS="51,1,100,50" HREF="back.html"&gt;<br />
&lt;/MAP&gt;</code></p>
<p>Get it upto here? Let&#8217;s do it across now:</p>
<p><code>&lt;MAP NAME="car"&gt;<br />
&nbsp;&nbsp;&lt;AREA SHAPE="RECT" COORDS="1,1,100,25"  HREF="top.html"&gt;<br />
&nbsp;&nbsp;&lt;AREA SHAPE="RECT" COORDS="1,26,100,50" HREF="bottom.html"&gt;<br />
&lt;/MAP&gt;</p>
<p>Then you can map circles using SHAPE="CIRCLE" with the COORDS in the format "x-centre,y-centre,radius". A sample line:</p>
<p></code><code>&lt;MAP NAME="sample"&gt;<br />
&nbsp;&nbsp;...<br />
&nbsp;&nbsp;&lt;AREA SHAPE="CIRCLE" COORDS="10,10,10" HREF="abc.html"&gt;<br />
&nbsp;&nbsp;...<br />
&lt;/MAP&gt;</code></p>
<p>But what if you don&#8217;t want a rectangle or a circle but a triangle? To overcome this, the shape tag of &#8220;POLY&#8221; is used. It&#8217;s COORDS use pairs of x-y positions to form any shape you want.</p>
<p>For example, to make a diamond in our car and then to make is clickable, we use the map:</p>
<p><code>&lt;MAP NAME="car"&gt;<br />
&nbsp;&nbsp;&lt;AREA SHAPE="POLY" COORDS="50,1,1,25,50,50,100,25" HREF="abc.html"&gt;<br />
&lt;/MAP&gt;</code></p>
<p>The first pair, &#8220;50,1&#8243; means: 50 to the left (middle of the image) and pixel line 1 (the top of the image). The second pair, &#8220;1,25&#8243; means: 1 to the right (the extreme left of image) and 25 down (the middle of the image). And so on&#8230;</p>
<p>And if two areas overlap, the first defined takes preference. For example, if we were to make the flag of Japan clickable, we could use a map like this:</p>
<p><code>&lt;MAP NAME="JAPAN"&gt;<br />
&nbsp;&nbsp;&lt;AREA SHAPE="CIRCLE" COORDS="50,25,20"   HREF="red.html"&gt;<br />
&nbsp;&nbsp;&lt;AREA SHAPE="RECT"   COORDS="1,1,100,50" HREF="white.html"&gt;<br />
&lt;/MAP></code></p>
<p>Since we defined the circle first, on clicking that area, the action it specifies is taken.</p>
<p>Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kushwaha.com/2009/11/09/html-image-maps-tutorial-for-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Networks &#8211; The Final 3</title>
		<link>http://blog.kushwaha.com/2008/10/20/social-networks-the-final-3/</link>
		<comments>http://blog.kushwaha.com/2008/10/20/social-networks-the-final-3/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 04:17:59 +0000</pubDate>
		<dc:creator>Abhay S</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://blog.kushwaha.com/?p=232</guid>
		<description><![CDATA[After much back-and-forth, I have decided on the final 3 social networks I will be active on:

LinkedIn: It&#8217;s perhaps the only serious social network for professionals.
Orkut: It&#8217;s very popular in India and almost everybody I know outside work is on there.
Facebook: I have only recently started taking it seriously. However, it&#8217;s a good &#8216;missing-link&#8217; between [...]]]></description>
			<content:encoded><![CDATA[<p>After much back-and-forth, I have decided on the final 3 social networks I will be active on:</p>
<ul>
<li><strong><a href="http://www.linkedin.com/in/kushwaha">LinkedIn</a>:</strong> It&#8217;s perhaps the only serious social network for professionals.</li>
<li><strong><a href="http://www.orkut.co.in/Main#Profile.aspx?uid=3419226373443287666">Orkut</a>:</strong> It&#8217;s very popular in India and almost everybody I know outside work is on there.</li>
<li><strong><a href="http://www.facebook.com/profile.php?id=674716571">Facebook</a>:</strong> I have only recently started taking it seriously. However, it&#8217;s a good &#8216;missing-link&#8217; between a &#8216;meant-for-professionals&#8217; LinkedIn and totally-bindass Orkut.</li>
</ul>
<p><em>Aside:</em> I have also started Tweeting. <a href="http://twitter.com/kushwaha">Follow me</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kushwaha.com/2008/10/20/social-networks-the-final-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creative Commons Launches in India</title>
		<link>http://blog.kushwaha.com/2007/01/28/creative-commons-launches-in-india/</link>
		<comments>http://blog.kushwaha.com/2007/01/28/creative-commons-launches-in-india/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 16:46:16 +0000</pubDate>
		<dc:creator>Abhay S</dc:creator>
				<category><![CDATA[India]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.kushwaha.com/2007/01/28/creative-commons-launches-in-india/</guid>
		<description><![CDATA[Creative Commons has launched its India chapter, allowing localised versions of Creative Commons licenses to be available for Indians.
Best of luck guys!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://creativecommons.org" title="Visit Creative Commons website">Creative Commons</a> has <a href="http://creativecommons.org/press-releases/2007/01/creative-commons-licenses-launch-in-india/" title="Read press release">launched</a> its <a href="http://www.cc-india.org/" title="Visit Creative Commons India website">India chapter</a>, allowing localised versions of Creative Commons licenses to be available for Indians.</p>
<p>Best of luck guys!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kushwaha.com/2007/01/28/creative-commons-launches-in-india/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Loving &amp; Enjoying What I Do Gets Better?</title>
		<link>http://blog.kushwaha.com/2007/01/22/loving-enjoying-what-i-do-gets-better/</link>
		<comments>http://blog.kushwaha.com/2007/01/22/loving-enjoying-what-i-do-gets-better/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 06:58:50 +0000</pubDate>
		<dc:creator>Abhay S</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.kushwaha.com/2007/01/22/loving-enjoying-what-i-do-gets-better/</guid>
		<description><![CDATA[Three words that most people who know me know nearly run my life:

Computers
Internet
Music

How many people get a chance to do what they want to do, their hobby being their job, and their passion for something getting a chance to become something real &#038; practical? Not many. I&#8217;m one of the luckier few.
I can&#8217;t talk about [...]]]></description>
			<content:encoded><![CDATA[<p>Three words that most people who know me know nearly run my life:</p>
<ul>
<li>Computers</li>
<li>Internet</li>
<li>Music</li>
</ul>
<p>How many people get a chance to do what they want to do, their hobby being their job, and their passion for something getting a chance to become something real &#038; practical? Not many. I&#8217;m one of the luckier few.</p>
<p>I can&#8217;t talk about it right now but trust me, I&#8217;m <em>really</em> excited right now with the possibilities of what I&#8217;ve managed to get involved with! Watch this space for some info. <img src='http://blog.kushwaha.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kushwaha.com/2007/01/22/loving-enjoying-what-i-do-gets-better/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Slashdot Geeks Comment On WebVastu</title>
		<link>http://blog.kushwaha.com/2006/10/28/slashdot-geeks-comment-on-webvastu/</link>
		<comments>http://blog.kushwaha.com/2006/10/28/slashdot-geeks-comment-on-webvastu/#comments</comments>
		<pubDate>Sat, 28 Oct 2006 13:39:28 +0000</pubDate>
		<dc:creator>Abhay S</dc:creator>
				<category><![CDATA[Humour]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://blog.kushwaha.com/2006/10/28/slashdot-geeks-comment-on-webvastu/</guid>
		<description><![CDATA[Wired learns about Smita Narang applying principles of Vastu Shastra to web design (apparently The Register had covered her back in June) and asks her to review Slashdot. The geeks tear her to pieces. Precious.
]]></description>
			<content:encoded><![CDATA[<p><a title="Visit site" href="http://www.wired.com">Wired</a> learns about Smita Narang applying principles of <a title="Read more about the science" href="http://en.wikipedia.org/wiki/Vaastu_Shastra">Vastu Shastra</a> to web design (apparently The Register had <a title="Read The Register story" href="http://www.theregister.co.uk/2006/06/27/web_feng_shui/">covered her back in June</a>) and <a title="Read the article" href="http://www.wired.com/wired/archive/14.11/start.html?pg=21">asks her</a> to <a title="See the review graphic" href="http://www.wired.com/wired/images.html?issue=14.11&#038;topic=start&#038;img=1&#038;pg=21">review Slashdot</a>. The <a title="Read article on /. &#038; comments" href="http://developers.slashdot.org/article.pl?sid=06/10/28/0656210">geeks tear her to pieces</a>. Precious.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kushwaha.com/2006/10/28/slashdot-geeks-comment-on-webvastu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Site of the Day</title>
		<link>http://blog.kushwaha.com/2006/10/19/adobe-site-of-the-day/</link>
		<comments>http://blog.kushwaha.com/2006/10/19/adobe-site-of-the-day/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 05:39:57 +0000</pubDate>
		<dc:creator>Abhay S</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.kushwaha.com/2006/10/19/adobe-site-of-the-day/</guid>
		<description><![CDATA[The site for a new residential development by Jade Jagger in New York City developed by my team in Net Solutions with C-Cube is Adobe Site of the Day. Cool.
]]></description>
			<content:encoded><![CDATA[<p>The <a title="View site." href="http://www.jadenyc.com/">site for a new residential development by Jade Jagger in New York City</a> developed by my team in <a title="Visit Net Solutions" href="http://www.netsolutionsindia.com">Net Solutions</a> with <a title="Our client/partner." href="http://www.c3cube.com/">C-Cube</a> is <a title="Visit Adobe showcase." href="http://www.adobe.com/cfusion/showcase/index.cfm"><strong>Adobe Site of the Day</strong></a>. Cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kushwaha.com/2006/10/19/adobe-site-of-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did Google Buy YouTube So Yahoo Couldn&#8217;t?</title>
		<link>http://blog.kushwaha.com/2006/10/10/did-google-buy-youtube-so-yahoo-couldnt/</link>
		<comments>http://blog.kushwaha.com/2006/10/10/did-google-buy-youtube-so-yahoo-couldnt/#comments</comments>
		<pubDate>Tue, 10 Oct 2006 01:22:40 +0000</pubDate>
		<dc:creator>Abhay S</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.kushwaha.com/2006/10/10/did-google-buy-youtube-so-yahoo-couldnt/</guid>
		<description><![CDATA[So I ask, is this $1.65 billion more a stupid mistake or a very capable strategic decision for a cash-rich company to deny one of its biggest rivals a fast-track into the online video arena?]]></description>
			<content:encoded><![CDATA[<p>The channels are full of the big news: Google has bought YouTube. And as I read the commentaries, I wonder what&#8217;s going on. We have so many opinions and most of them are on similar lines&#8230;</p>
<ul>
<li>Google made a stupid mistake</li>
<li>Eric Schmidt is a moron</li>
<li>GoogTube</li>
<li>et al.</li>
</ul>
<p>What I find particularly missing are two core facts:</p>
<ol>
<li>Google&#8217;s total IQ is probably more than the GDP of some countries (it&#8217;s not my line, I read it somewhere ages ago). They don&#8217;t make stupid mistakes.</li>
<li>Yahoo has been on a roll recently with some very cool, strategic buys that are pushing them <em>hard</em> into a challenging position and they have been making some very bold decisions to get there (eg: making yahoo mail source open).</li>
</ol>
<p>So I ask, is this $1.65 billion purchase of YouTube more a stupid mistake by those who can do no wrong or a very capable strategic decision for a cash-rich company to deny one of its biggest rivals a fast-track into the competitive online video arena?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kushwaha.com/2006/10/10/did-google-buy-youtube-so-yahoo-couldnt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PU Hostels Go Without Connectivity</title>
		<link>http://blog.kushwaha.com/2006/07/20/pu-hostels-go-without-connectivity/</link>
		<comments>http://blog.kushwaha.com/2006/07/20/pu-hostels-go-without-connectivity/#comments</comments>
		<pubDate>Wed, 19 Jul 2006 20:25:31 +0000</pubDate>
		<dc:creator>Abhay S</dc:creator>
				<category><![CDATA[Chandigarh]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://blog.kushwaha.com/2006/07/20/pu-hostels-go-without-connectivity/</guid>
		<description><![CDATA[While many Indians are squirming in embarrassment while the other majority are feeling angry about the recent inept and callous blocking of some rather popular blog sites by Indian ISPs on Government orders, I came across a completely different report today much closer to home that made me read it again just to make sure [...]]]></description>
			<content:encoded><![CDATA[<p>While many Indians are <a href="http://www.business-standard.com/common/storypage.php?autono=98680">squirming</a> <a href="http://www.washingtonpost.com/wp-dyn/content/article/2006/07/19/AR2006071900343.html">in embarrassment</a> while the other majority are <a href="http://edition.cnn.com/2006/WORLD/asiapcf/07/19/india.blogging.ap/">feeling</a> <a href="http://news.bbc.co.uk/2/hi/south_asia/5194172.stm">angry</a> about the <a href="http://www.hindu.com/2006/07/19/stories/2006071902421300.htm">recent</a> <a href="http://www.guardian.co.uk/india/story/0,,1824137,00.html">inept and callous</a> <a href="http://www.ndtv.com/morenews/showmorestory.asp?id=90350">blocking</a> of some rather <a href="http://groups.google.com/group/BloggersCollective">popular blog sites</a> by <a href="http://www.hindustantimes.com/news/5922_1747505,0015002500000000.htm">Indian ISPs on Government orders</a>, I came across a completely different <a href="http://cities.expressindia.com/fullstory.php?newsid=193423">report</a> today much closer to home that made me read it again just to make sure I had understood it right. Digest this:</p>
<p>All hostels in <a href="http://pu.ac.in">Panjab University, Chandigarh</a> are disallowing independent access to the Net to residents, irrespective of their departments or level of education, because they are &#8220;not mature enough to access the Internet&#8221;. These pearls of wisdom belong to none other than the Dean, Student Welfare, Prof. Nirmal Singh, who opines that, &#8220;All they do is open bad sites.&#8221;</p>
<p>It makes me wonder if those in power to take such decisions and have them implemented are really so clueless, or is doing so more like an ego-trip for them, since whatever be the reason, in the end, only the end-user suffers and the organisation&#8217;s image (whether it be a University or a country) that takes a hit.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kushwaha.com/2006/07/20/pu-hostels-go-without-connectivity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TinyDisk</title>
		<link>http://blog.kushwaha.com/2005/11/11/tinydisk/</link>
		<comments>http://blog.kushwaha.com/2005/11/11/tinydisk/#comments</comments>
		<pubDate>Fri, 11 Nov 2005 05:00:13 +0000</pubDate>
		<dc:creator>Abhay S</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Privacy & Security]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.kushwaha.com/2005/10/25/tinydisk/</guid>
		<description><![CDATA[TinyDisk blows my mind by how it works.

 TinyDisk is a program from saving and retrieving files from TinyURL and TinyURL-like services such as Nanourl. It overlays a write-once-read-many anonymous, persistent and globally shared filesystem. Once something is uploaded, only the database admin can delete it. Everyone can read it. No one can know who [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.msblabs.org/tinydisk/index.php">TinyDisk</a> blows my mind by <a href="http://www.msblabs.org/tinydisk/how-it-works.txt">how it works</a>.</p>
<blockquote><p>
 TinyDisk is a program from saving and retrieving files from <a href="http://tinyurl.com/">TinyURL</a> and TinyURL-like services such as <a href="http://www.msblabs.org/nanourl/index.php">Nanourl</a>. It overlays a write-once-read-many anonymous, persistent and globally shared filesystem. Once something is uploaded, only the database admin can delete it. Everyone can read it. No one can know who created it. Think of it as a magical CD-R that gets burned and placed on a network.
</p></blockquote>
<p>Yeah, I know it&#8217;s not very useful in practical sense but as a concept, it&#8217;s a great example of <em>out-of-the-box-thinking</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kushwaha.com/2005/11/11/tinydisk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Latest Jakob&#8217;s Alertbox: Top 10 Design Mistakes in Weblog Usability</title>
		<link>http://blog.kushwaha.com/2005/10/17/top-10-weblog-usability-mistakes-guide-to-improvement/</link>
		<comments>http://blog.kushwaha.com/2005/10/17/top-10-weblog-usability-mistakes-guide-to-improvement/#comments</comments>
		<pubDate>Mon, 17 Oct 2005 15:31:05 +0000</pubDate>
		<dc:creator>Abhay S</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[UI & Usability]]></category>

		<guid isPermaLink="false">http://blog.kushwaha.com/2005/10/17/top-10-weblog-usability-mistakes-guide-to-improvement/</guid>
		<description><![CDATA[Jakob Nielsen writes about Weblog Usability Design Mistakes and makes a mistake he lists himself. My take on his list.]]></description>
			<content:encoded><![CDATA[<p>I respect <a href="http://www.useit.com/jakob/">Jakob Nielsen</a> a lot and mostly he makes a lot of sense. Especially, he stands for improvement in, and therefore talks a lot about, two topics that&#8217;ve been close to my heart: <abbr title="User Interface">UI</abbr> &#038; Usability.</p>
<p>His latest <a href="http://www.useit.com/alertbox/">Alertbox</a> column titled &#8220;<a href="http://www.useit.com/alertbox/weblogs.html">Weblog Usability: The Top Ten Design Mistakes</a>&#8221; surprised me by its appearance; wasn&#8217;t expecting him to write on the subject this early. The introduction at the top really does make sense and clearly shows he understands the unique nature of blogs.</p>
<p>When I started reading the list of mistakes, I started nodding my head. </p>
<ol>
<li><strong>No Author Biographies</strong>: Okay, I&#8217;m guilty of this and i&#8217;m going to correct this immediately. <a href="http://blog.kushwaha.com/about/">My About page</a> has needed the edit for a long time anyway.</li>
<li><strong>No Author Photo</strong>: Guilty again but I don&#8217;t think this is going to change for me.</li>
<li><strong>Nondescript Posting Titles</strong>: Not guilty. <img src='http://blog.kushwaha.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li><strong>Links Don&#8217;t Say Where They Go</strong>: Not guilty (mostly). <img src='http://blog.kushwaha.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  However, though I agree that such links do indeed bring the usability of the blog down, it is usually taken for granted by the users. They want the commentary and not names to links and where they encounter strange blogs and do not trust the author, they indeed do take the necessary care before clicking.</li>
<li><strong>Classic Hits are Buried</strong>: Partially guilty of this but largely due to the fact that I don&#8217;t know WordPress hacking yet.</li>
<li><strong>The Calendar is the Only Navigation</strong>: Agree. WordPress provides categories though and therefore, not guilty. <img src='http://blog.kushwaha.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li><strong>Irregular Publishing Frequency</strong>: Very guilty. <img src='http://blog.kushwaha.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  However, this is a slightly borderline thing. I don&#8217;t think that the publishing frequency is such a big <em>usability</em> issue. In a way, if you think about it, it does bring the overall usability down of a blog but is it so much that it be listed as Mistake #6 in Weblog Usability Designs Mistakes list? I disagree. <abbr title="By The Way">BTW</abbr>, is it even a design issue?</li>
<li><strong>Mixing Topics</strong>: This is something that is slightly controversial. Perhaps partially true for a narrow segment, mixing topics is not really such a big usability issue with blogs. They are supposed to mix topics unless they&#8217;re subject-specific blogs. Most people who post different subjects on such blogs do it <em>very</em> intentionally and fully knowing that it&#8217;s going to be for the better of their blog and themselves. In a way, this is not much of a usability issue either, especially in light of the discussion in #6&#8212;the Categories feature that is in use in almost all blogs now very efficiently takes care of this issue.</li>
</ol>
<p>But <abbr title="In My Humble Opinion">IMHO</abbr>, #9 (<strong>Forgetting That You Write for Your Future Boss</strong>) and #10 (<strong>Having a Domain Name Owned by a Weblog Service</strong>) are nothing but pure advice on content. Whether or not somebody will be able to attribute a certain piece of information to me decades after I&#8217;ve written has nothing to do with the usability of my blog. Similarly, having a certain provider&#8217;s name in the URL of my blog has no effect either and is purely a non-affecting cosmetic that, if it makes a difference, does so only because of a psychological bias in the user&#8217;s mind.</p>
<p>This article is going to get a lot of press in the <em>Blogosphere</em> (heh) and I&#8217;m looking forward to reading other people&#8217;s opinions and rants.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kushwaha.com/2005/10/17/top-10-weblog-usability-mistakes-guide-to-improvement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
