<?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>Arjun Mehta's Paramparam</title>
	<atom:link href="http://www.arjunmehta.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.arjunmehta.net</link>
	<description>Visual interaction design for screen based products</description>
	<lastBuildDate>Fri, 06 Dec 2013 03:37:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>The Monster at the End of This Book</title>
		<link>http://www.arjunmehta.net/the-monster-at-the-end-of-this-book/</link>
		<comments>http://www.arjunmehta.net/the-monster-at-the-end-of-this-book/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 06:54:20 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Children's Education]]></category>
		<category><![CDATA[User Experience]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=1171</guid>
		<description><![CDATA[True mastery of user experience design is often demonstrated at its best in the simplest forms of children&#8217;s entertainment. The Monster at the End of This Book]]></description>
			<content:encoded><![CDATA[<p>True mastery of user experience design is often demonstrated at its best in the simplest forms of children&#8217;s entertainment.<br />
<a href="http://smollin.com/michael/tmonstr/mon003.html">The Monster at the End of This Book</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/the-monster-at-the-end-of-this-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dotted and Dashed Circles using ActionScript 3</title>
		<link>http://www.arjunmehta.net/dotted-and-dashed-circles-using-actionscript-3/</link>
		<comments>http://www.arjunmehta.net/dotted-and-dashed-circles-using-actionscript-3/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 23:39:19 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Idea]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[Circles]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[constructor]]></category>
		<category><![CDATA[dashed circle]]></category>
		<category><![CDATA[dotted circle]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=1037</guid>
		<description><![CDATA[While working on a design recently I realized that I was in need of programmatically producing circles with dotted and dashed strokes. Much to my surprise, I found that Actionscript 3 with Flash CS4 cannot draw using a dashed or dotted lineStyle. After searching online for a solution, I came across a few attempts at [...]]]></description>
			<content:encoded><![CDATA[<p>While working on a design recently I realized that I was in need of programmatically producing circles with dotted and dashed strokes. Much to my surprise, I found that Actionscript 3 with Flash CS4 cannot draw using a dashed or dotted <code>lineStyle</code>.</p>
<p>After searching online for a solution, I came across a few attempts at drawing dashed and dotted lines, but none (that I could find) enabled the drawing of curves and, more specifically, none of them enabled the drawing of circles with a dotted or a dashed line.</p>
<p>So I decided to tackle the problem using some simple trigonometry and my own limited ability to code. I created my own custom Actionscript classes (<code>dottedCircle.as</code> and <code>dashedCircle.as</code>), which is something I have never attempted before! One of the most useful things I found on my journey making this was <a href="http://theflashblog.com/?p=429">Lee Brimelow&#8217;s custom arc class</a>, which I used for drawing segments in the dashedCircle class.</p>
<div class="hr"></div>
<p><script type="text/javascript">
		var vars = {};
		var params = {scale:'noScale', salign:'lt', wmode:'transparent' };
		var attributes = { id:'testObject', name:'testObject'}; // give an id to the flash object
		swfobject.embedSWF("/notebookCase/circles.swf", "circlesContainer", "100%", "250", "9.0.0", "/wp-content/themes/Paramparam/js/expressInstall.swf", vars, params, attributes );
</script></p>
<div id="circlesContainer" ></div>
<div class="hr"></div>
<p>The constructor for the <strong>dashed circle</strong> looks like this: <code>dashedCircle(radius:Number, thickness:Number, dashLength:Number, gapLenth:Number, color:uint, autoSpace:Boolean);</code>.</p>
<p>And the constructor for the <strong>dotted circle</strong> looks like this: <code>dottedCircle(radius:Number, thickness:Number, gap:Number, color:uint, autoSpace:Boolean);</code></p>
<p>I should mention that the <code>dashedCircle</code> doesn&#8217;t quite render as it should when dash sizes are too small. Surprisingly, this is actually due to the flash renderer having problems rendering small curves accurately. In this case, I should be using straight lines instead of minute curves for the dashes. But for now I&#8217;m going to put the classes up as is.</p>
<p>I hope this is helpful for you all! I&#8217;m not much of a programmer, but if you have some suggestions, comments or anything more to add, please don&#8217;t hesitate.</p>
<p>Also, be on the lookout for a little game that came up while working on these. It&#8217;s a simple game that I hope I&#8217;ll get to work on a bit over the holiday season!</p>
<p><a href="/assets/dottedDashedCircleClass-AS3.zip" class="buttonLinkWithText" target="_blank"><img src="/wp-content/themes/Paramparam/images/buttonDownload.png" alt="download" title="download"/><span>Download dottedCircle and dashedCircle AS3 Classes</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/dotted-and-dashed-circles-using-actionscript-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MIT&#8217;s Copenhagen Wheel</title>
		<link>http://www.arjunmehta.net/mits-copenhagen-wheel/</link>
		<comments>http://www.arjunmehta.net/mits-copenhagen-wheel/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 15:00:55 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Link]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=1139</guid>
		<description><![CDATA[This is absolutely brilliant. Like Nike+ but for cyclists! Scroll down to the bottom for the concept video. MIT&#8217;s Copenhagen Wheel]]></description>
			<content:encoded><![CDATA[<p>This is absolutely brilliant. Like <a href="http://www.nikeplus.com/">Nike+</a> but for cyclists! Scroll down to the bottom for the concept video.</p>
<p><a href="http://web.mit.edu/press/2009/copenhagen-wheel.html">MIT&#8217;s Copenhagen Wheel</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/mits-copenhagen-wheel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Climate Change &amp; Human Change</title>
		<link>http://www.arjunmehta.net/climate-change_human-change/</link>
		<comments>http://www.arjunmehta.net/climate-change_human-change/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 05:34:58 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Idea]]></category>
		<category><![CDATA[Blog Action Day]]></category>
		<category><![CDATA[Climate Change]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Human]]></category>
		<category><![CDATA[Human Change]]></category>
		<category><![CDATA[Psychology]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[sociology]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=989</guid>
		<description><![CDATA[Humans are changing beings; adaptive and responsive. History constantly shows us that our psychology, society and culture are not static. This indicates to designers that we need to be able to adapt and design experiences that can adapt to the way humanity changes. I&#8217;d like to explore how understanding the concept of Climate Change can [...]]]></description>
			<content:encoded><![CDATA[<p>Humans are changing beings; adaptive and responsive. History constantly shows us that our psychology, society and culture are not static. This indicates to designers that we need to be able to adapt and design experiences that can adapt to the way humanity changes.</p>
<p>I&#8217;d like to explore how understanding the concept of Climate Change can be applied to understanding how Humans Change.</p>
<p>There is an important distinction to be made between Climate, Seasons and Weather. These are certainly three closely interrelated phenomena, hierarchically encompassed, while also existing unique in their own domain.</p>
<p>I would like to define <span class="blue"><strong>Climate</strong></span> as the archetypical <strong>pattern</strong> of weather and seasons encompassing a particular region over an indefinite period of time. This pattern is mediated by <span class="red"><strong>Seasons</strong></span>, which are <strong>cyclical phases</strong> of weather which repeat themselves over a definite period of time in regular frequency. <span class="green"><strong>Weather</strong></span> is the <strong>behaviour</strong> of a variable combination and collection of conditions that exist at a specific time.</p>
<p><a href="/notebookCase/2009.10.15-ClimateChangeHumanChange-01.gif"><img src="/notebookCase/2009.10.15-ClimateChangeHumanChange-01.gif" alt="ClimatesSeasonsAndWeather" title="Climates Seasons and Weather" width="100%"/></a></p>
<h5>Climate Change</h5>
<p>When the weather patterns within the seasons start to shift, we can define this as climate change. The fundamental properties/archetype that defines the climate starts to shift, and the climate no longer resembles what it used to.</p>
<p><a href="/notebookCase/2009.10.15-ClimateChangeHumanChange-02.gif"><img src="/notebookCase/2009.10.15-ClimateChangeHumanChange-02.gif" alt="Climate Change" title="Climates Change" width="100%"/></a></p>
<h5>Behaviour &#8211; The Connection.</h5>
<p>Thus, climate can be seen as the <strong>behavioural nature</strong> of the weather within a particular region, based on consistent and expected weather behaviour over cyclical seasons. And <em>climate change</em> can be seen as the change in this behavioural nature of weather within a particular region. That is, over time, the behaviour of weather begins to deviate from an expected pattern in the seasons.</p>
<p>What is interesting is that Human Change can be seen in much the same light!</p>
<h5>Human Behaviour</h5>
<p>Just like the weather, human individuals exhibit a specific <span class="green"><strong>Behaviour</strong></span> (which is the combination and collection of a large number of human factors) at each moment in time. And like seasons, human behaviour does go through cyclical phases, or <span class="red"><strong>Behaviour Sets</strong></span>, which repeat themselves over a definite period of time usually at regular frequency (ie. sleeping at night, waking during the day, shorts in the summer, coats in the winter, etc.). It would then be only natural to conclude that there is an overlying &#8220;behavioural climate&#8221; that defines particular groups of humans as well as individuals. Perhaps in society this is what we call <span class="blue"><strong>Culture</strong></span> which I explored in a <a href="/resonance">previous post</a>, or perhaps it can be defined as <strong>personality</strong> in individuals.</p>
<p><a href="/notebookCase/2009.10.15-ClimateChangeHumanChange-03.gif"><img src="/notebookCase/2009.10.15-ClimateChangeHumanChange-03.gif" alt="BehaviourSeasonsAndPersonalityAndCulture" title="Behaviour, Seasons and Personality/Culture" width="100%"/></a></p>
<h5>Conclusion &#8211; Climates Do Change. Let&#8217;s Adapt.</h5>
<p>Just like humans must adapt to the changes in climate that are occurring and will continue to occur throughout our existence, us designers must adapt to the changing human &#8220;climate&#8221; of culture and personality.</p>
<p><em>Today is <a href="http://www.blogactionday.org/" target="_blank">Blog Action Day</a>. This post was done as a contribution to the collaborative effort to raise awareness on the issue of Climate Change. It&#8217;s a humble attempt, though my intent was actually to direct attention to Human Change as well!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/climate-change_human-change/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Albert Einstein</title>
		<link>http://www.arjunmehta.net/albert-einstein/</link>
		<comments>http://www.arjunmehta.net/albert-einstein/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 00:48:30 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Quote]]></category>
		<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Einstein]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=982</guid>
		<description><![CDATA[Everything that is really great and inspiring is created by the individual who can labor in freedom.]]></description>
			<content:encoded><![CDATA[<p>Everything that is really great and inspiring is created by the individual who can labor in freedom.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/albert-einstein/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 020</title>
		<link>http://www.arjunmehta.net/daily-do-020/</link>
		<comments>http://www.arjunmehta.net/daily-do-020/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 02:45:01 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[RGB]]></category>
		<category><![CDATA[triangle]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=977</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h800" src="/notebookCase/dailyDo/arjunMehta-DailyDo020large.png" alt="DailyDo-020" title="DailyDo-020" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-020/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Francesco Franchi</title>
		<link>http://www.arjunmehta.net/francesco-franchi/</link>
		<comments>http://www.arjunmehta.net/francesco-franchi/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 17:00:49 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Circles]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[infographics]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=975</guid>
		<description><![CDATA[WOW. I don&#8217;t think I&#8217;ve ever seen anything like it. Francesco Franchi]]></description>
			<content:encoded><![CDATA[<p>WOW. I don&#8217;t think I&#8217;ve ever seen anything like it.</p>
<p><a href="http://www.flickr.com/photos/ffranchi/collections/72157620676924153/">Francesco Franchi</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/francesco-franchi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 019</title>
		<link>http://www.arjunmehta.net/daily-do-019/</link>
		<comments>http://www.arjunmehta.net/daily-do-019/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 02:57:41 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Circles]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[RGB]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=973</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h800" src="/notebookCase/dailyDo/arjunMehta-DailyDo019large.png" alt="DailyDo-019" title="DailyDo-019" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-019/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 018</title>
		<link>http://www.arjunmehta.net/daily-do-018/</link>
		<comments>http://www.arjunmehta.net/daily-do-018/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 03:04:10 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Circles]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[RGB]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=970</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h800" src="/notebookCase/dailyDo/arjunMehta-DailyDo018large.png" alt="DailyDo-018" title="DailyDo-018" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-018/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 017</title>
		<link>http://www.arjunmehta.net/daily-do-017/</link>
		<comments>http://www.arjunmehta.net/daily-do-017/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 22:14:30 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Marker]]></category>
		<category><![CDATA[RGB]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=967</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h800" src="/notebookCase/dailyDo/arjunMehta-DailyDo017large.png" alt="DailyDo-017" title="DailyDo-017" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-017/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LAB &#124; Mathieu Badimon</title>
		<link>http://www.arjunmehta.net/lab-mathieu-badimon/</link>
		<comments>http://www.arjunmehta.net/lab-mathieu-badimon/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 18:44:10 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Link]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=954</guid>
		<description><![CDATA[Wow. I think I have found a good justification to upgrade to CS4. http://lab.mathieu-badimon.com/]]></description>
			<content:encoded><![CDATA[<p>Wow. I think I have found a good justification to upgrade to CS4.</p>
<p><a href="http://lab.mathieu-badimon.com/">http://lab.mathieu-badimon.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/lab-mathieu-badimon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 016</title>
		<link>http://www.arjunmehta.net/daily-do-016/</link>
		<comments>http://www.arjunmehta.net/daily-do-016/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 16:24:30 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Circles]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[RGB]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=926</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h730" src="/notebookCase/dailyDo/arjunMehta-DailyDo016large.png" alt="DailyDo-016" title="DailyDo-016" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-016/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resonance; A Look at Culture and Form &amp; Colour</title>
		<link>http://www.arjunmehta.net/resonance/</link>
		<comments>http://www.arjunmehta.net/resonance/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 15:07:41 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Idea]]></category>
		<category><![CDATA[carleton university]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Industrial Design]]></category>
		<category><![CDATA[interaction design]]></category>
		<category><![CDATA[sociology]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[User Experience]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=905</guid>
		<description><![CDATA[As we decidedly call ourselves &#8220;designers&#8221;, it is important to realize that we are always designing for someone. That someone (the user), being human and existing within nature, perpetually exists within the context of culture. These existing cultures have a heavy influence on the user&#8217;s experience when relating to the material and non-material cultural elements [...]]]></description>
			<content:encoded><![CDATA[<p>As we decidedly call ourselves &#8220;designers&#8221;, it is important to realize that we are always <strong>designing for someone</strong>. That someone (the user), being human and existing within nature, perpetually exists within the context of <strong>culture</strong>. These existing cultures have a heavy influence on the user&#8217;s experience when relating to the material and non-material cultural elements that we as designers create. What&#8217;s more, <strong>culture is ever changing</strong>.</p>
<p><img src="/notebookCase/2009.07.16-Resonance.gif" alt="resonance" title="What Arjun Does" width="100%"/></p>
<p>I wrote this simple report <strong>over 3 years ago</strong> on a whim for my Advanced Form and Colour class. It attempts to describe the <strong>Relationships Between Culture and Form &#038; Colour</strong> and the inherent roles that designers must take on when designing for culture. The conclusion may seem relatively obvious, but the content of the report does touch on some basic, but important, sociological topics that could assist us in our understanding of the users within the cultures we design for.</p>
<p>This is being released under the Creative Commons with some rights reserved.</p>
<p>Please forgive my horrible lack of proper footnoting, image referencing and visual styling (and likely proper spelling and grammar!). I would like to change my ways in subsequent reports and would also very much like to <strong>revisit this report to bring it up to my standards.</strong></p>
<p><a href="/assets/resonance-ArjunMehta-Spring2006.pdf" class="buttonLinkWithText" target="_blank"><img src="/wp-content/themes/Paramparam/images/buttonDownload.png" alt="download" title="download"/><span>Read the PDF Report</span></a> <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/ca/"><img class="middleInline" src="/wp-content/themes/Paramparam/images/creativeCommons.png" alt="Creative Commons License"/></a></p>
<div class="hidden"><a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/2.5/ca/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-nd/2.5/ca/88x31.png" /></a><br /><span xmlns:dc="http://purl.org/dc/elements/1.1/" href="http://purl.org/dc/dcmitype/Text" property="dc:title" rel="dc:type">Resonance; The Relationship Between Culture and Form &amp; Colour</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.arjunmehta.net/resonance/" property="cc:attributionName" rel="cc:attributionURL">Arjun Mehta</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/2.5/ca/">Creative Commons Attribution-Noncommercial-No Derivative Works 2.5 Canada License</a>.<br />Permissions beyond the scope of this license may be available at <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.arjunmehta.net" rel="cc:morePermissions">http://www.arjunmehta.net</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/resonance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 015</title>
		<link>http://www.arjunmehta.net/daily-do-015/</link>
		<comments>http://www.arjunmehta.net/daily-do-015/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 20:06:17 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[Circles]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Marker]]></category>
		<category><![CDATA[Red]]></category>
		<category><![CDATA[RGB]]></category>
		<category><![CDATA[Scribbles]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=884</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h730" src="/notebookCase/dailyDo/arjunMehta-DailyDo015large.png" alt="DailyDo-015" title="DailyDo-015" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-015/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 014</title>
		<link>http://www.arjunmehta.net/daily-do-014/</link>
		<comments>http://www.arjunmehta.net/daily-do-014/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 13:51:46 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Marker]]></category>
		<category><![CDATA[RGB]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=877</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h730" src="/notebookCase/dailyDo/arjunMehta-DailyDo014large.png" alt="DailyDo-014" title="DailyDo-014" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-014/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 013</title>
		<link>http://www.arjunmehta.net/daily-do-013/</link>
		<comments>http://www.arjunmehta.net/daily-do-013/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 13:02:43 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Marker]]></category>
		<category><![CDATA[RGB]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=874</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h583" src="/notebookCase/dailyDo/arjunMehta-DailyDo013large.png" alt="DailyDo-013" title="DailyDo-013" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 012</title>
		<link>http://www.arjunmehta.net/daily-do-012/</link>
		<comments>http://www.arjunmehta.net/daily-do-012/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 22:56:49 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Green]]></category>
		<category><![CDATA[Red]]></category>
		<category><![CDATA[RGB]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=872</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h732" src="/notebookCase/dailyDo/arjunMehta-DailyDo012large.png" alt="DailyDo-012" title="DailyDo-012" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 011</title>
		<link>http://www.arjunmehta.net/daily-do-011/</link>
		<comments>http://www.arjunmehta.net/daily-do-011/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 16:19:26 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[RGB]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=868</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h800" title="DailyDo-011" src="/notebookCase/dailyDo/arjunMehta-DailyDo011large.png" alt="DailyDo-011" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 010</title>
		<link>http://www.arjunmehta.net/daily-do-010/</link>
		<comments>http://www.arjunmehta.net/daily-do-010/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 14:48:47 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Green]]></category>
		<category><![CDATA[Red]]></category>
		<category><![CDATA[RGB]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=864</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer"><img class="dailyDoLarge h732" title="DailyDo-010" src="/notebookCase/dailyDo/arjunMehta-DailyDo010large.png" alt="DailyDo-010" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 009</title>
		<link>http://www.arjunmehta.net/daily-do-009/</link>
		<comments>http://www.arjunmehta.net/daily-do-009/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 16:56:02 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[Circles]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Green]]></category>
		<category><![CDATA[Red]]></category>
		<category><![CDATA[RGB]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=859</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer"><img class="dailyDoLarge h732" title="DailyDo-009" src="/notebookCase/dailyDo/arjunMehta-DailyDo009large.png" alt="DailyDo-009" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Library of Congress&#8217; Flickr Stream</title>
		<link>http://www.arjunmehta.net/library-of-congress-flickr-stream/</link>
		<comments>http://www.arjunmehta.net/library-of-congress-flickr-stream/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 14:41:32 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Link]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=856</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/library-of-congress-flickr-stream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 008</title>
		<link>http://www.arjunmehta.net/daily-do-008/</link>
		<comments>http://www.arjunmehta.net/daily-do-008/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 13:14:18 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[daily do]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Green]]></category>
		<category><![CDATA[Red]]></category>
		<category><![CDATA[RGB]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=841</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h750" src="/notebookCase/dailyDo/arjunMehta-DailyDo008large.png" alt="DailyDo-008" title="DailyDo-008" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-008/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Yann Martel</title>
		<link>http://www.arjunmehta.net/yann-martel/</link>
		<comments>http://www.arjunmehta.net/yann-martel/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 12:29:20 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Quote]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=839</guid>
		<description><![CDATA[There were many seas. The sea roared like a tiger. The sea whispered in your ear like a friend telling you secrets. The sea clinked like small change in a pocket. The sea thundered like avalanches. The sea hissed like sandpaper working on wood. The sea sounded like someone vomiting. The sea was dead silent.]]></description>
			<content:encoded><![CDATA[<p>There were many seas. The sea roared like a tiger. The sea whispered in your ear like a friend telling you secrets. The sea clinked like small change in a pocket. The sea thundered like avalanches. The sea hissed like sandpaper working on wood. The sea sounded like someone vomiting. The sea was dead silent.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/yann-martel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 007</title>
		<link>http://www.arjunmehta.net/daily-do-007/</link>
		<comments>http://www.arjunmehta.net/daily-do-007/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 13:47:53 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Green]]></category>
		<category><![CDATA[Red]]></category>
		<category><![CDATA[RGB]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=837</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h750" src="/notebookCase/dailyDo/arjunMehta-DailyDo007large.png" alt="DailyDo-007" title="DailyDo-007" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nonsense Info Graphics</title>
		<link>http://www.arjunmehta.net/nonsense-info-graphics/</link>
		<comments>http://www.arjunmehta.net/nonsense-info-graphics/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 13:39:51 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Link]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=829</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/nonsense-info-graphics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 006</title>
		<link>http://www.arjunmehta.net/daily-do-006/</link>
		<comments>http://www.arjunmehta.net/daily-do-006/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 13:24:03 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Green]]></category>
		<category><![CDATA[Red]]></category>
		<category><![CDATA[RGB]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=826</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h750" src="/notebookCase/dailyDo/arjunMehta-DailyDo006large.png" alt="DailyDo-006" title="DailyDo-006" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-006/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 005</title>
		<link>http://www.arjunmehta.net/daily-do-005/</link>
		<comments>http://www.arjunmehta.net/daily-do-005/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 14:37:29 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[Smudge]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=794</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h750" src="/notebookCase/dailyDo/arjunMehta-DailyDo005large.png" alt="DailyDo-005" title="DailyDo-005" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I Do: A Diagram</title>
		<link>http://www.arjunmehta.net/what-i-do-a-diagram/</link>
		<comments>http://www.arjunmehta.net/what-i-do-a-diagram/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 15:46:02 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[feltron]]></category>
		<category><![CDATA[good]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[ia]]></category>
		<category><![CDATA[infographics]]></category>
		<category><![CDATA[information visualization]]></category>
		<category><![CDATA[infoviz]]></category>
		<category><![CDATA[profession]]></category>
		<category><![CDATA[prototyping]]></category>
		<category><![CDATA[transparency]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[user interface design]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=695</guid>
		<description><![CDATA[I&#8217;ve been very inspired by infographics these days. I suppose I&#8217;ve always found them particularly interesting, but recently I&#8217;ve been more compelled to design information visualizations myself. I think it is a great skill to develop. In an attempt to visualize my professional self, I&#8217;ve developed the humble infographic: What I Do, Revision 1. I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been <a href="http://www.flickr.com/photos/formforce/3664507020/" target="_blank">very</a> <a href="http://www.good.is/post/transparency-the-largest-bankruptcies-in-history/" target="_blank">inspired</a> <a href="http://athleticsnyc.com/print/smart-models-infographics" target="_blank">by</a> <a href="http://informationarchitects.jp/wtm4/" target="_blank">infographics</a> <a href="http://feltron.com/index.php?/content/2008_annual_report/P2/" target="_blank">these</a> <a href="http://www.kickerstudio.com/blog/2008/12/the-disciplines-of-user-experience/" target="_blank">days</a>. I suppose I&#8217;ve always found them particularly interesting, but recently I&#8217;ve been more compelled to design information visualizations myself. I think it is a great skill to develop.</p>
<p>In an attempt to visualize my professional self, I&#8217;ve developed the humble infographic:<br />
<strong>What I Do, Revision 1</strong>.</p>
<div class="hr"></div>
<p><a href="http://www.arjunmehta.net/wp-content/uploads/2009/04/whatArjunDoes-r01.gif"><img src="http://www.arjunmehta.net/wp-content/uploads/2009/04/whatArjunDoes-r01.gif" alt="whatArjunDoes-r01" title="What Arjun Does" width="100%"/></a></p>
<div class="hr"></div>
<p>I&#8217;m hoping it&#8217;s self-explanatory. Nonetheless please do leave your comments. Constructive criticism is always welcome.</p>
<p>This is essentially a first version framework that I think could be applied to anybody in the User Experience field. So I&#8217;ve decided to allow anyone who may want to use, modify and/or reuse it (under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/ca/">creative commons license</a>) to communicate their professional strengths and positions.</p>
<p><a href="/assets/whatIdo-R1-ArjunMehta.pdf" class="buttonLinkWithText" target="_blank"><img src="/wp-content/themes/Paramparam/images/buttonDownload.png" alt="download" title="download"/><span>Download the editable PDF Framework</span></a> <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/ca/"><img class="middleInline" src="/wp-content/themes/Paramparam/images/creativeCommons.png" alt="Creative Commons License"/></a></p>
<div class="hidden"><a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/ca/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/2.5/ca/80x15.png" /></a><br /><span xmlns:dc="http://purl.org/dc/elements/1.1/" href="http://purl.org/dc/dcmitype/StillImage" property="dc:title" rel="dc:type">What I Do</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.arjunmehta.net" property="cc:attributionName" rel="cc:attributionURL">Arjun Mehta</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/ca/">Creative Commons Attribution-Share Alike 2.5 Canada License</a>.<br />Permissions beyond the scope of this license may be available at <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.arjunmehta.net/" rel="cc:morePermissions">http://www.arjunmehta.net/</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/what-i-do-a-diagram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 004</title>
		<link>http://www.arjunmehta.net/daily-do-004/</link>
		<comments>http://www.arjunmehta.net/daily-do-004/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 13:12:52 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[Smudge]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=770</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h750" src="/notebookCase/dailyDo/arjunMehta-DailyDo004large.png" alt="DailyDo-004" title="DailyDo-004" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-004/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 003</title>
		<link>http://www.arjunmehta.net/daily-do-003/</link>
		<comments>http://www.arjunmehta.net/daily-do-003/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 18:31:01 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[Smudge]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=766</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h749" src="/notebookCase/dailyDo/arjunMehta-DailyDo003large.png" alt="DailyDo-003" title="DailyDo-003" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 002</title>
		<link>http://www.arjunmehta.net/daily-do-002/</link>
		<comments>http://www.arjunmehta.net/daily-do-002/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 16:20:26 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[Smudge]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=747</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h750" src="/notebookCase/dailyDo/arjunMehta-DailyDo002large.png" alt="DailyDo-002" title="DailyDo-002" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-002/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer and Untrue Assumptions</title>
		<link>http://www.arjunmehta.net/internet-explorer-and-untrue-assumptions/</link>
		<comments>http://www.arjunmehta.net/internet-explorer-and-untrue-assumptions/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 16:08:36 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Assumptions]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Truth]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web layout]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=776</guid>
		<description><![CDATA[As most anyone who has tried to design and develop for the web will tell you, Internet Explorer does not have a good reputation among web designers, primarily for its lack of standards compliance and its incompatibility with emerging web innovations. Internet explorer users are definitely losing out on new and intended experiences. As much [...]]]></description>
			<content:encoded><![CDATA[<p>As most anyone who has tried to design and develop for the web will tell you, Internet Explorer does not have a good reputation among web designers, primarily for its lack of standards compliance and its incompatibility with emerging web innovations. Internet explorer users are definitely losing out on new and intended experiences.</p>
<p>As much as I appreciate Microsoft taking steps toward developing a much more compliant browser with the introduction of Internet explorer 8, there are still many established and emerging standards that Microsoft fails to recognize.</p>
<p>A lot of this is caused by how <a href="http://www.microsoft.com" target="_blank">the company</a> that develops Internet Explorer makes many <strong>untrue assumptions</strong>.</p>
<h5>Untrue Assumptions</h5>
<p>Untrue assumptions often come out of mid-air. They are often used to convince a person that what is being assumed is actually true. And they are often used as a method to ignore glaring facts that prove their own fallacy.</p>
<p>A basic example of this is reflected by the Windows Update description for Internet Explorer 8:</p>
<div class="imgContainer right" style="background-image:url(/notebookCase/2009.06.29-IEAssumptions.gif)"><img src="/notebookCase/2009.06.29-IEAssumptions.gif" height="186" /></div>
<blockquote><p>Internet Explorer 8 is the latest version of the familiar Web browser that you are most comfortable using.</p></blockquote>
<p>That I &#8220;am most comfortable using&#8221;? NOT TRUE. In fact, it is quite the opposite. Internet Explorer is probably the browser I am LEAST comfortable using. For numerous reasons which I won&#8217;t go into yet. <a href="http://www.microsoft.com/windows/internet-explorer/get-the-facts/browser-comparison.aspx" target="_blank">Read some more UNTRUE assumptions</a> that are made by the company.</p>
<p>My suggestion is that the IE development team (and especially the marketing team) need to stop making untrue assumptions and become a bit more understanding and, dare I say, humble, about their own product.</p>
<h5>A True Assumption</h5>
<p>I recently saw a great example of a very humble assumption.</p>
<div class="imgContainer left" style="background-image:url(/notebookCase/2009.06.29-flickrAssumption.gif)"><a href="http://blog.flickr.net/en/" target="_blank"><img src="/notebookCase/2009.06.29-flickrAssumption.gif" height="186" /></a></div>
<blockquote><p>&#8230;almost certainly the best online photo management and sharing application in the world.</p></blockquote>
<p>You can&#8217;t go wrong with that, and you know what? <a href="http://www.flickr.com/" target="_blank">It&#8217;s TRUE</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/internet-explorer-and-untrue-assumptions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Do; 001</title>
		<link>http://www.arjunmehta.net/daily-do-001/</link>
		<comments>http://www.arjunmehta.net/daily-do-001/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 14:43:38 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Daily Do]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[Smudge]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=737</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="dailyDoContainer">
<img class="dailyDoLarge h750" src="/notebookCase/dailyDo/arjunMehta-DailyDo001large.png" alt="DailyDo-001" title="DailyDo-001" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/daily-do-001/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buckminster Fuller</title>
		<link>http://www.arjunmehta.net/buckminster-fuller/</link>
		<comments>http://www.arjunmehta.net/buckminster-fuller/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 15:50:42 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Quote]]></category>
		<category><![CDATA[buckminster fuller]]></category>
		<category><![CDATA[bucky]]></category>
		<category><![CDATA[doing]]></category>
		<category><![CDATA[duties]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=590</guid>
		<description><![CDATA[The Things to do are: the things that need doing, that you see need to be done, and that no one else seems to see need to be done.]]></description>
			<content:encoded><![CDATA[<p>The Things to do are: the things that need doing, that you see need to be done, and that no one else seems to see need to be done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/buckminster-fuller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GOOD Magazine; Transparency</title>
		<link>http://www.arjunmehta.net/good-magazine-transparency/</link>
		<comments>http://www.arjunmehta.net/good-magazine-transparency/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 02:36:10 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Link]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=583</guid>
		<description><![CDATA[I know at least a few of these have been posted to pretty much every single blog on the world wide web (in the whole wide world), but the purpose of these favourites is to favourite them. They are definitely a favourite. http://www.good.is/departments/transparency]]></description>
			<content:encoded><![CDATA[<p>I know at least a few of these have been posted to pretty much every single blog on the world wide web (in the whole wide world), but the purpose of these favourites is to favourite them. They are definitely a favourite.</p>
<p><a href="http://www.good.is/departments/transparency">http://www.good.is/departments/transparency</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/good-magazine-transparency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xandros</title>
		<link>http://www.arjunmehta.net/xandros/</link>
		<comments>http://www.arjunmehta.net/xandros/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 19:50:01 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Software Projects]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[colours]]></category>
		<category><![CDATA[Icon Design]]></category>
		<category><![CDATA[metal]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Visual Interaction Design]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=481</guid>
		<description><![CDATA[Summary Xandros is a leading provider of Linux-based desktop and server operating systems with an office here in Ottawa. I&#8217;ve been fortunate to be able to work with the nice people over at Xandros designing and building application and system icons for their new linux-based operating system initially targeted towards the Asian market. This is [...]]]></description>
			<content:encoded><![CDATA[<div class="aboutContent left">
<h3>Summary</h3>
<p><a href="http://www.xandros.com" target="_blank">Xandros</a> is a leading provider of Linux-based desktop and server operating systems with an office here in Ottawa.</p>
<p>I&#8217;ve been fortunate to be able to work with the nice people over at Xandros designing and building application and system icons for their <a href="http://www.xandros.com/news/press_releases/Xandros_Creates_Enhanced_User_Experience.html" target="_blank">new linux-based operating system</a> initially targeted towards the Asian market. This is an ongoing project and will continue to be developed through to September.
</div>
<div class="aboutContent right">
<p>Above is just a sample of the icons that have been produced to date.</p>
<h3 class="preceeding">Project Highlights</h3>
<ul class="projectHighlights">
<li>Icon Conceptualization</li>
<li>Iconography for Desktop Applications</li>
<li>Iconography for Application Groups</li>
<li>Icon Production and Packaging</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/xandros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla 16&#215;16 Application Icons</title>
		<link>http://www.arjunmehta.net/mozilla16x16icons/</link>
		<comments>http://www.arjunmehta.net/mozilla16x16icons/#comments</comments>
		<pubDate>Sun, 24 May 2009 14:30:54 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Idea]]></category>
		<category><![CDATA[16x16]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Icon Design]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Sunbird]]></category>
		<category><![CDATA[Thunderbird]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[user interface design]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=24</guid>
		<description><![CDATA[From what I understand, consistency of brand image is a pretty important thing to maintain across any product line. I respect Mozilla for their products, their overall ideology and their great community. It&#8217;s probably safe to say Firefox is easily the #1 most used application on my computer. And Thunderbird doesn&#8217;t lag too far behind. [...]]]></description>
			<content:encoded><![CDATA[<p>From what I understand, consistency of brand image is a pretty important thing to maintain across any product line.</p>
<p>I respect Mozilla for their products, their overall ideology and their great community. It&#8217;s probably safe to say Firefox is easily the #1 most used application on my computer. And Thunderbird doesn&#8217;t lag too far behind. I started using Sunbird a while ago as well, but stopped when Lightning became better integrated into Thunderbird.</p>
<div class="imgContainer middle" style="background-image:url(/notebookCase/2009.05.24-MozillaIconsLarge.jpg)"><img src="/notebookCase/2009.05.24-MozillaIconsLarge.jpg" height="126" /></div>
<p>The logos/icons for each of these applications are well crafted, extremely iconic, and work well together as a &#8220;suite&#8221;, contributing to a consistent overall brand image.</p>
<p>That said, I am somewhat perplexed by a really small detail that has gone unfixed for years: The Mozilla 16&#215;16 Windows application icons.</p>
<h5><em>A Small Thing</em></h5>
<p>Take a look at the Mozilla icons lined up in the Windows quick launch bar below. </p>
<div class="imgContainer left" style="background-image:url(/notebookCase/2009.05.24-MozillaIconsOldTaskBar.png)"><img src="/notebookCase/2009.05.24-MozillaIconsOldTaskBar.png" height="28" /></div>
<p>Though minute in differentiation, <strong>the icons lack a consistent size and alignment</strong>. In addition to this, the icons (especially for Sunbird) have not been scaled down too well, causing a loss of detail.</p>
<h5><em>Making Small Things Consistent</em></h5>
<p>As simple as it is, all I&#8217;ve really done here is scaled the original larger icons down to 16 pixels and ensured that they all line up and appear to be the same size.</p>
<div class="imgContainer left" style="background-image:url(/notebookCase/2009.05.24-MozillaIconsComparison.gif)"><img src="/notebookCase/2009.05.24-MozillaIconsComparison.gif" height="202" /></div>
<p><strong>The result: a much cleaner, visually consistent set of icons for your Windows quick launch bar.</strong></p>
<p>Feel free to download the new set and use them for your quick launch bar. I&#8217;m going to see if the folks over at Mozilla might have any use for these.</p>
<p><a href="/notebookCase/16x16-MozillaIcons.zip" class="buttonLinkWithText" target="_blank"><img src="/wp-content/themes/Paramparam/images/buttonDownload.png" alt="download" title="download"/><span>Download the Mozilla 16&#215;16 Application Icon Set (zipped)</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/mozilla16x16icons/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>An Image Presentation Method for Fluid XHTML/CSS Layouts</title>
		<link>http://www.arjunmehta.net/maximizing-image-size-for-fluid-layouts-without-scaling/</link>
		<comments>http://www.arjunmehta.net/maximizing-image-size-for-fluid-layouts-without-scaling/#comments</comments>
		<pubDate>Tue, 12 May 2009 01:03:33 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[alignment]]></category>
		<category><![CDATA[center]]></category>
		<category><![CDATA[cropping]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[fluid]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[left align]]></category>
		<category><![CDATA[liquid]]></category>
		<category><![CDATA[overflow:hidden]]></category>
		<category><![CDATA[right align]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=259</guid>
		<description><![CDATA[As designers, we usually need to be extremely specific in how we present our ideas to our audiences. The way we visually present our ideas naturally affects how well they are communicated. As I&#8217;ve been writing posts for the Paramparam notebook, I&#8217;ve encountered the need for a method of displaying images that allows me to [...]]]></description>
			<content:encoded><![CDATA[<p>As designers, we usually need to be extremely specific in how we present our ideas to our audiences. The way we visually present our ideas naturally affects how well they are communicated.</p>
<p>As I&#8217;ve been writing posts for the Paramparam notebook, I&#8217;ve encountered the need for <strong>a method of displaying images that allows me to specify what area of an image has greater priority within a dynamic width web layout</strong>. This is to ensure that when the width of the site is reduced (on smaller screen resolutions for example), the less important edges of an image are being cropped.</p>
<p>Within the limits of CSS and XHTML and ensuring cross-browser compatability, I will share this method with <em>you</em>, the reader of this humble notebook.</p>
<h5><em>The Method</em></h5>
<p>This is a clean and simple trick that maintains expected <code>img</code> tag functionality, while allowing for greater control over the way images are displayed across various browser widths for fluid XHTML/CSS layouts.</p>
<p><strong>The secret is to replicate the image in the background of the container</strong> inline within the HTML using <code>style="background-image:url();"</code> and making the <code>img</code> itself transparent. It&#8217;s not really as goofy as it seems because you keep the original <code>img</code>, which allows standard drag and drop/save image functionality, the ability to be hyperlinked AND maintains the original height of the image block (Though you do need to set the <code>height</code> of the <code>img</code> inline because of a bug in IE7).</p>
<p>The below example HTML block is calling up the <code>imgContainer.center</code> class for the <code>div</code>. Note that we specifiy the <code>height</code> attribute of the image.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;imgContainer center&quot; style=&quot;background-image:url(/notebookCase/imageAlignment.gif)&quot;&gt;
   &lt;img src=&quot;/notebookCase/imageAlignment.gif&quot; height=&quot;135&quot;/&gt;
&lt;/div&gt;</pre></td></tr></table></div>

<p>The different classes for the container coordinate the different locations that the image will be aligned/cropped by using the <code>background-position</code> style. Using the following CSS styles for the various class selectors, we can left align, right align or center an image inside any containing block element, while hiding any overflowing content.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.imgContainer</span> <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#0083cb</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* not necessary, but used to outline the block */</span>
   <span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* hides all that goes outside of its edges */</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.imgContainer</span><span style="color: #6666ff;">.center</span> <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">background-position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* centers the background image specified inline */</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.imgContainer</span><span style="color: #6666ff;">.left</span> <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">background-position</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* left aligns the background image specified inline */</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.imgContainer</span><span style="color: #6666ff;">.right</span> <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">background-position</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* right aligns the background image specified inline */</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.imgContainer</span> img <span style="color: #00AA00;">&#123;</span>
   opacity<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* hides the image to make the background appear as the image */</span>
   filter<span style="color: #00AA00;">:</span> alpha<span style="color: #00AA00;">&#40;</span>opacity<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* and of course something non-standard for IE */</span>
   <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* makes the image the same width as its container, for IE compatibility */</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>The addition of <code>width: 100%;</code> to the style for <code>.imgContainer img</code>, which sets the width of the (transparent) image to the width of the container, is the reason why we need to specify the height inline within the HTML. This is all necessary to ensure that the method works in Internet Explorer as well as the more standards compliant browsers.</p>
<p>I can now ensure that when the browser is scaled down, the <span class="red"><strong>red triangle</strong></span> is kept in view, the <span class="blue"><strong>blue circle</strong></span> is kept in view, and the <span class="green"><strong>green square</strong></span> is kept in view, respectively, all by simply modifying the class name of the containing <code>div</code>. <strong>(Try resizing your browser to see it work)</strong>:</p>
<p><code>class="imgContainer center"</code></p>
<div class="imgContainer middle" style="background-image:url(/notebookCase/2009.05.12-Image-Alignment-CSS.gif);"><img src="/notebookCase/2009.05.12-Image-Alignment-CSS.gif" height="135" /></div>
<p><code>class="imgContainer right"</code></p>
<div class="imgContainer right" style="background-image:url(/notebookCase/2009.05.12-Image-Alignment-CSS.gif);"><img src="/notebookCase/2009.05.12-Image-Alignment-CSS.gif" height="135" /></div>
<p><code>class="imgContainer left"</code></p>
<div class="imgContainer left" style="background-image:url(/notebookCase/2009.05.12-Image-Alignment-CSS.gif);"><img src="/notebookCase/2009.05.12-Image-Alignment-CSS.gif" height="135" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/maximizing-image-size-for-fluid-layouts-without-scaling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>While I&#8217;m Working On It</title>
		<link>http://www.arjunmehta.net/while-im-working-on-it/</link>
		<comments>http://www.arjunmehta.net/while-im-working-on-it/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 12:44:29 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=64</guid>
		<description><![CDATA[There&#8217;s is something about the site design and development process that I find particularly fascinating, especially knowing that it doesn&#8217;t have to all happen at once. It&#8217;ll be a fluid process and will keep getting better and more refined over time, but the first step is to make all the divs and spans and margins [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s is something about the site design and development process that I find particularly fascinating, especially knowing that <strong>it doesn&#8217;t have to all happen at once</strong>.</p>
<p>It&#8217;ll be a fluid <strong>process</strong> and will <strong>keep getting better and more refined over time</strong>, but the first step is to make all the divs and spans and margins and padding all line up into perfect harmony.</p>
<p>In case you&#8217;re still interested, you can view my old flash based website at <a href="http://www.arjunmehta.net/pf2005a.html">this new location</a>.</p>
<p>Until next time, have a wonderful spring day!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/while-im-working-on-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magor Communications</title>
		<link>http://www.arjunmehta.net/magor-communications/</link>
		<comments>http://www.arjunmehta.net/magor-communications/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 18:31:40 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Software Projects]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Icon Design]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Visual Interaction Design]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=20</guid>
		<description><![CDATA[Summary Magor Communications is a start-up provider of high definition, cost effective, video collaboration systems. I designed and conceptualized for Magor an aesthetic and usable user interaction model and visual design for a projected software release, while coordinating with the lead project manager and collaborating with an enthusiastic software development team. New features were conceptualized [...]]]></description>
			<content:encoded><![CDATA[<div class="aboutContent left">
<h3>Summary</h3>
<p><strong>Magor Communications</strong> is a start-up provider of high definition, cost effective, video collaboration systems.</p>
<p>I designed and conceptualized for Magor an aesthetic and usable user interaction model and visual design for a projected software release, while coordinating with the lead project manager and collaborating with an enthusiastic software development team. New features were conceptualized and integrated into the proposed  product model, while existing features were refined and made much more usable and integrated.</p></div>
<div class="aboutContent right">
<p>Garnering feedback from the development group and target audiences was a natural part of the process, culminating with a final annotated and complete presentation for the company&#8217;s reference.</p>
<h3 class="preceeding">Project Highlights</h3>
<ul class="projectHighlights">
<li>Desktop Application Visual Design</li>
<li>Interaction/Use Flow</li>
<li>Feature Integration</li>
<li>Iconography</li>
<li>Marketing Assets &amp; Datasheets</li>
<li>On-site and Remote Collaboration</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/magor-communications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Isca Networks</title>
		<link>http://www.arjunmehta.net/isca-networks/</link>
		<comments>http://www.arjunmehta.net/isca-networks/#comments</comments>
		<pubDate>Fri, 23 May 2008 20:50:16 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Software Projects]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Icon Design]]></category>
		<category><![CDATA[touchscreen]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Visual Interaction Design]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=53</guid>
		<description><![CDATA[Summary I had a great time working with Isca Networks designing custom touchscreen visual design and interaction for their highly versatile Interact Platform kiosk system. In addition to this, a series of marketing assets were also produced, including a flash presentation of the product. Project Highlights Visual Design of Touchscreen Interface Use Flow Iconography Product [...]]]></description>
			<content:encoded><![CDATA[<div class="aboutContent left">
<h3>Summary</h3>
<p>I had a great time working with <a href="http://www.iscanetworks.com" target="_blank">Isca Networks</a> designing custom touchscreen visual design and interaction for their highly versatile <a href="http://www.iscanetworks.com/interact-platform" target="_blank">Interact Platform</a> kiosk system.</p>
<p>In addition to this, a series of marketing assets were also produced, including a <a href="http://www.iscanetworks.com" target="_blank">flash presentation</a> of the product.
</div>
<div class="aboutContent right">
<h3>Project Highlights</h3>
<ul class="projectHighlights">
<li>Visual Design of Touchscreen Interface</li>
<li>Use Flow</li>
<li>Iconography</li>
<li>Product Datasheets and Marketing Assets</li>
<li>On-site Collaboration</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/isca-networks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parmar-Serafini</title>
		<link>http://www.arjunmehta.net/parmar-serafini/</link>
		<comments>http://www.arjunmehta.net/parmar-serafini/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 15:34:55 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[corporate]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web layout]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=439</guid>
		<description><![CDATA[Summary Parmar-Serafini Graphic Designers are a small, very talented duo of graphic designers here in Ottawa. To coordinate with their revamped simple and straightforward corporate identity, they wanted a simple and straightforward website, while maintaining visual impact and a focus on content. Working in close collaboration with the firm, I designed and developed the website&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<div class="aboutContent left">
<h3>Summary</h3>
<p><a href="http://www.parmar-serafini.com">Parmar-Serafini Graphic Designers</a> are a small, very talented duo of graphic designers here in Ottawa.</p>
<p>To coordinate with their revamped simple and straightforward corporate identity, they wanted a simple and straightforward website, while maintaining visual impact and a focus on content.</p>
<p>Working in close collaboration with the firm, I designed and developed the website&#8217;s interactivity, backend and structure while using a developed visual guideline based on the company&#8217;s new corporate identity.
</p></div>
<div class="aboutContent right">
<h3>Project Highlights</h3>
<ul class="projectHighlights">
<li>Flash Based Webdesign</li>
<li>On-Site Collaboration</li>
<li>Interaction Design</li>
<li>Actionscript 3 Development</li>
<li>PHP Development</li>
</ul>
<p><a href="http://www.parmar-serafini.com" class="buttonLinkWithText" target="_blank"><img src="/wp-content/themes/Paramparam/images/buttonViewLink.png" alt="download" title="download"/><span>Visit the Parmar-Serafini Website</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/parmar-serafini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Lowe-Martin Group</title>
		<link>http://www.arjunmehta.net/the-lowe-martin-group/</link>
		<comments>http://www.arjunmehta.net/the-lowe-martin-group/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 16:37:48 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[corporate]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[printing]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web layout]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=451</guid>
		<description><![CDATA[Summary The Lowe-Martin Group is an established Ottawa-based company that provides for industries a wide range of primary services including; digital printing, commercial printing, logistics &#038; warehousing, direct mail and e-Business solutions. Working with an extremely tight timeline, and working closely with their communications department, I was able to provide The Lowe-Martin Group with a [...]]]></description>
			<content:encoded><![CDATA[<div class="aboutContent left">
<h3>Summary</h3>
<p><a href="http://www.lmgroup.com">The Lowe-Martin Group</a> is an established Ottawa-based company that provides for industries a wide range of primary services including; digital printing, commercial printing, logistics &#038; warehousing, direct mail and e-Business solutions.</p>
<p>Working with an extremely tight timeline, and working closely with their communications department, I was able to provide The Lowe-Martin Group with a full featured and fully functional CMS-based website in less than 2 weeks.</p>
<p>The company was then able to add and manage the written content, job postings, news events and featured content all on their own after a brief tutorial.
</p></div>
<div class="aboutContent right">
<h3>Project Highlights</h3>
<ul class="projectHighlights">
<li>CSS/HTML-Based Webdesign</li>
<li>PHP Development</li>
<li>CMS Integration (WordPress)</li>
<li>Short Timeline</li>
<li>Active Collaboration</li>
</ul>
<p>It was a pleasure working with such an enthusiastic and committed client. Their dedication and responsive attitude allowed for the project&#8217;s success.</p>
<p><a href=""http://www.lmgroup.com" class="buttonLinkWithText" target="_blank"><img src="/wp-content/themes/Paramparam/images/buttonViewLink.png" alt="download" title="download"/><span>Visit the Website</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/the-lowe-martin-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LeadToClose</title>
		<link>http://www.arjunmehta.net/leadtoclose/</link>
		<comments>http://www.arjunmehta.net/leadtoclose/#comments</comments>
		<pubDate>Sun, 18 Nov 2007 20:08:01 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Software Projects]]></category>
		<category><![CDATA[Icon Design]]></category>
		<category><![CDATA[mockups]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Visual Interaction Design]]></category>
		<category><![CDATA[web application]]></category>
		<category><![CDATA[web layout]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=486</guid>
		<description><![CDATA[Summary I was contacted by a small but growing Prince Edward Island based software group to provide usability analysis, as well as interaction and visual design services to help improve one of their products: LeadToClose. The project provided the opportunity to work collaboratively with users, project managers, sales managers and developers alike. LeadToClose was a [...]]]></description>
			<content:encoded><![CDATA[<div class="aboutContent left">
<h3>Summary</h3>
<p>I was contacted by a small but growing Prince Edward Island based software group to provide usability analysis, as well as interaction and visual design services to help improve one of their products: <strong>LeadToClose</strong>. The project provided the opportunity to work collaboratively with users, project managers, sales managers and developers alike.</p>
<p>LeadToClose was a highly functional web application that allowed agents and <a href="http://en.wikipedia.org/wiki/Virtual_assistant" target="_blank">virtual assistants</a> from many diverse fields (mostly real estate) to track leads, manage tasks and potential client relations and most importantly, understand which of their marketing collateral was most effective at producing new leads.
</div>
<div class="aboutContent right">
<p>User focus groups were held with virtual assistants that provided direct input on features and usability of the product, as well as an opportunity to pose questions relating to the effectiveness of new features and design enhancements.</p>
<h3 class="preceeding">Project Highlights</h3>
<ul class="projectHighlights">
<li>Task Flow Analysis</li>
<li>Information Architecture Analysis</li>
<li>Usability Analysis</li>
<li>Competitive Analysis</li>
<li>Remote Collaboration</li>
<li>Phased Visual Design Recommendations</li>
<li>Web Application Mockups/Visual Design</li>
<li>Mobile Application Mockups/Visual Design</li>
<li>Screen-to-Screen Interaction Design</li>
<li>User Focus Groups</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/leadtoclose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arco</title>
		<link>http://www.arjunmehta.net/arco/</link>
		<comments>http://www.arjunmehta.net/arco/#comments</comments>
		<pubDate>Sat, 19 May 2007 11:51:14 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Industrial Design]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[carleton university]]></category>
		<category><![CDATA[model making]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[User Interface]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=512</guid>
		<description><![CDATA[Summary An accessible, sharable and usable industrial design solution that allows individuals with severe single arm dysfunction to learn and practice competitive archery. The project began with thorough and immersive product, market, user and environmental research, leading to the conceptualization of some key product concepts. These concepts focused on accessibility and sharability to reduce overall [...]]]></description>
			<content:encoded><![CDATA[<div class="aboutContent left">
<h3>Summary</h3>
<p>An accessible, sharable and usable industrial design solution that allows individuals with severe <abbr title="caused by amputation or paralysis">single arm dysfunction</abbr> to learn and practice competitive archery.</p>
<p>The project began with thorough and immersive product, market, <abbr title="Interviews with Paralympic athletes, archery program instructors and students">user</abbr> and <abbr title="I joined an archery class and learned how to shoot!">environmental</abbr> research, leading to the conceptualization of some key product concepts. These concepts focused on accessibility and sharability to reduce overall costs for instructional facilities which rely on equipment sharing to educate new students and get individuals involved.</p>
<p>Test models were developed and test plans were executed on targeted populations, ensuring key usability issues were addressed and eventually resolved.</p>
<p>Once the structural integrity and usability of the device was validated, the design was further refined with a focus on visual styling for the targeted market.
</p></div>
<div class="aboutContent right">
<h3>Project Highlights</h3>
<ul class="projectHighlights">
<li>Interdisciplinary Collaboration</li>
<li>Direct Field/User Research</li>
<li>Use Analysis</li>
<li>Design Conceptualization</li>
<li>Prototyping and Usability Testing</li>
<li>Final Display Model Making</li>
<li>Exhibition and Presentation</li>
</ul>
<p>The project was done with advisory input and assistance from the <a href="http://www.paralympic.ca/foundation" target="_blank">Canadian Paralympic Foundation</a>, Kevin Evans (Gold Medal Paralympic Archer) and Ketivan Natsvlishvilli (Carleton Archery Program Instructor).</p>
<p>This project was awarded with the Dean&#8217;s Award for Innovation Through Collaboration, as well as the honourable Wim Gilles Memorial Award for Form Giving.</p>
<p><a href="/assets/arjunMehta-Arco.pdf" class="buttonLinkWithText" target="_blank"><img src="/wp-content/themes/Paramparam/images/buttonDownload.png" alt="download" title="download"/><span>Download the Full Report (9MB)</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/arco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueContext</title>
		<link>http://www.arjunmehta.net/truecontext/</link>
		<comments>http://www.arjunmehta.net/truecontext/#comments</comments>
		<pubDate>Fri, 23 Feb 2007 20:47:41 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Software Projects]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Icon Design]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Visual Interaction Design]]></category>
		<category><![CDATA[web application]]></category>
		<category><![CDATA[web layout]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=49</guid>
		<description><![CDATA[Summary TrueContext was a company that produced highly capable mobile forms applications. Being the in-house visual designer at TrueContext was a great experience. There were so many opportunities to contribute to all aspects of the product suite offered, and that is exactly what I did. Working in the company&#8217;s &#8220;Human Factors Lab&#8221; enabled me to [...]]]></description>
			<content:encoded><![CDATA[<div class="aboutContent left">
<h3>Summary</h3>
<p><strong>TrueContext</strong> was a company that produced highly capable mobile forms applications.</p>
<p>Being the in-house visual designer at TrueContext was a great experience. There were so many opportunities to contribute to all aspects of the product suite offered, and that is exactly what I did. Working in the company&#8217;s &#8220;<strong>Human Factors Lab</strong>&#8221; enabled me to help bring to life a plethora of Interaction Design innovations specific to the applications being developed.</p>
<p>I was very privileged to work intimately with the development and marketing teams to provide high quality visual assets and specifications for practically all areas of the company&#8217;s operations.
</p></div>
<div class="aboutContent right">
<h3>Position Highlights</h3>
<ul class="projectHighlights">
<li>Mobile Application Visual Design</li>
<li>Desktop Application Visual Design</li>
<li>Web Application Visual Design</li>
<li>Iconography</li>
<li>Marketing Assets &#038; Branding</li>
<li>Visual Specifications</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/truecontext/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Promotional Robot Design</title>
		<link>http://www.arjunmehta.net/promotional-robot-design/</link>
		<comments>http://www.arjunmehta.net/promotional-robot-design/#comments</comments>
		<pubDate>Sun, 19 Jun 2005 11:51:14 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Industrial Design]]></category>
		<category><![CDATA[acroname]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[carleton university]]></category>
		<category><![CDATA[promotional design]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[servos]]></category>
		<category><![CDATA[systems engineering]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=505</guid>
		<description><![CDATA[Summary Over the summer of 2005 I was presented with a unique opportunity to collaborate with a very talented systems engineering student at Carleton University, designing and building a pair of promotional kit-based robots for the Office of the Dean of Engineering and Design. The project provided great opportunities to build and work with dynamic [...]]]></description>
			<content:encoded><![CDATA[<div class="aboutContent left">
<h3>Summary</h3>
<p>Over the summer of 2005 I was presented with a unique opportunity to collaborate with <a href="http://www.linkedin.com/pub/jevin-maltais/14/56/446" target="_blank">a very talented systems engineering student</a> at Carleton University, designing and building a pair of promotional kit-based robots for the Office of the Dean of Engineering and Design.</p>
<p>The project provided great opportunities to build and work with dynamic electronic systems. <abbr title="3 weeks, start to finish!">Limitations on time</abbr> meant for quick decision making and provided direction and reasoning for specific building methods, where rapid-prototyping tools, thermoforming and other building techniques revealed themselves as most appropriate.
</div>
<div class="aboutContent right">
<h3>Project Highlights</h3>
<ul class="projectHighlights">
<li>Interdisciplinary Collaboration</li>
<li>An Extremely Short Timeline</li>
<li>CAD Modelling and Rapid-Prototyping</li>
<li>Physical Prototyping/Build</li>
<li>Structural and Formal Design Solutions</li>
</ul>
<p>The project was a hit within the department and was used to further educate high school students about the University&#8217;s offerings. It was a great collaborative experience that was fluid, productive and, most of all, FUN!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/promotional-robot-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Electric Chainsaw</title>
		<link>http://www.arjunmehta.net/an-electric-chainsaw/</link>
		<comments>http://www.arjunmehta.net/an-electric-chainsaw/#comments</comments>
		<pubDate>Sat, 18 Dec 2004 20:20:36 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Industrial Design]]></category>
		<category><![CDATA[BID]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[carleton university]]></category>
		<category><![CDATA[electric chainsaw]]></category>
		<category><![CDATA[husqvarna]]></category>
		<category><![CDATA[School of Industrial Design]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=494</guid>
		<description><![CDATA[Summary A safe, easy to handle, easy to maintain and approachable electric chainsaw redesign. The primary aim of this industrial design studio project was to redesign an existing power tool product. I chose to specifically concentrate on the electric chainsaw and make direct usability and aesthetic enhancements that could be applied to the majority of [...]]]></description>
			<content:encoded><![CDATA[<div class="aboutContent left">
<h3>Summary</h3>
<p>A safe, easy to handle, easy to maintain and approachable electric chainsaw redesign.</p>
<p>The primary aim of this industrial design studio project was to redesign an existing power tool product. I chose to specifically concentrate on the electric chainsaw and make direct usability and aesthetic enhancements that could be applied to the majority of existing electric chainsaw products on the market today.</p>
<p>In-depth market, user, product and usability analysis was done, which lead to conceptual visual exploration of solutions to key issues revealed through research.
</p></div>
<div class="aboutContent right">
<p>Eventually ergonomic and formal test models were build and tested to ensure design feasibility.</p>
<p>The final model embodied innovative usability/egonomic and aesthetic enhancements and was extremely well received.</p>
<h3 class="preceeding">Project Highlights</h3>
<ul class="projectHighlights">
<li>Market Analysis and Synthesis</li>
<li>Detailed Product Analysis</li>
<li>User Observation</li>
<li>Product Usability Innovation</li>
<li>Ergonomic Test Modelling</li>
<li>Initial Formal (blue foam) Modelling</li>
<li>Product Finalization and Modelling</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/an-electric-chainsaw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media Player Skins</title>
		<link>http://www.arjunmehta.net/media-player-skins/</link>
		<comments>http://www.arjunmehta.net/media-player-skins/#comments</comments>
		<pubDate>Sun, 29 Apr 2001 21:27:32 +0000</pubDate>
		<dc:creator>arjun mehta</dc:creator>
				<category><![CDATA[Software Projects]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Visual Interaction Design]]></category>

		<guid isPermaLink="false">http://www.arjunmehta.net/?p=155</guid>
		<description><![CDATA[Summary In my early years, I had the privilege to be contracted by clients such as Real Networks, Microsoft, and Lycos, designing skins for their media player software. In most cases I was designing with and programming with newly developed UI engines alongside those that were developing them. I was known as &#8220;doodle&#8221; within the [...]]]></description>
			<content:encoded><![CDATA[<div class="aboutContent left">
<h3>Summary</h3>
<p>In my early years, I had the privilege to be contracted by clients such as Real Networks, Microsoft, and Lycos, designing <abbr title="Custom and exchangable user interfaces">skins</abbr> for their media player software. In most cases I was designing with and programming with newly developed UI engines alongside those that were developing them.</p>
<p>I was known as &#8220;doodle&#8221; within the community. You can call me <a href="http://www.arjunmehta.net/dv3" title="A usability nightmare, I know">mr. Doodlebugg</a> if that pleases you. (I was pretty young back then)
</div>
<div class="aboutContent right">
<h3>Project Highlights</h3>
<ul class="projectHighlights">
<li>User Interface Design</li>
<li>Interaction Programming</li>
<li>Visual Asset Production</li>
<li>Community Distribution</li>
<li>Incorporated Brand Identity</li>
<li>Direct Collaboration with Developers</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.arjunmehta.net/media-player-skins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
