<?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>idhana.com</title>
	<atom:link href="http://idhana.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://idhana.com</link>
	<description>Making happy users!</description>
	<lastBuildDate>Wed, 23 Nov 2011 06:58:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Design Pattern: Template in PHP</title>
		<link>http://idhana.com/2011/11/22/design-pattern-template-in-php/</link>
		<comments>http://idhana.com/2011/11/22/design-pattern-template-in-php/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 06:18:40 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Object Oriented Programming]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=568</guid>
		<description><![CDATA[<img class="imgleft" src="http://idhana.com/wp-content/uploads/2011/11/template.png" />Next in the <a href="http://www.amazon.com/First-Design-Patterns-Elisabeth-Freeman/dp/0596007124/ref=sr_1_1?ie=UTF8&#038;qid=1316043112&#038;sr=8-1">Head First Design Patterns</a> series is the Template Pattern.  The template pattern defines the skeleton of an algorithm in a method and defers some of the implementation of the steps to the subclasses.  The subclasses can redefine certain steps of the algorithm without changing the algorithm's structure.]]></description>
		<wfw:commentRss>http://idhana.com/2011/11/22/design-pattern-template-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Pattern: State in PHP</title>
		<link>http://idhana.com/2011/11/18/design-pattern-state-in-php/</link>
		<comments>http://idhana.com/2011/11/18/design-pattern-state-in-php/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 06:19:25 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Object Oriented Programming]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=572</guid>
		<description><![CDATA[<img src="http://idhana.com/wp-content/uploads/2011/11/state.png" class="imgleft" />Next on from the <a href="http://www.amazon.com/First-Design-Patterns-Elisabeth-Freeman/dp/0596007124/ref=sr_1_1?ie=UTF8&#038;qid=1316043112&#038;sr=8-1">Head First Design Patterns</a> is the "State Pattern". The State Pattern allows an object to alter its behavior when its internal state changes.  By altering its behavior, the object can perform a different set of operations.  To truly understand this pattern, let's take a look at an example.  A sales order can have many different states such as "New Order", "Invoicing",  "Processing", "Shipped".  Before the sales order can be moved forward to a different state, there are strict rules that need to be obeyed.]]></description>
		<wfw:commentRss>http://idhana.com/2011/11/18/design-pattern-state-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Pattern: Decorator in PHP</title>
		<link>http://idhana.com/2011/11/16/design-pattern-decorator-in-php/</link>
		<comments>http://idhana.com/2011/11/16/design-pattern-decorator-in-php/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 05:08:03 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Object Oriented Programming]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=560</guid>
		<description><![CDATA[<img class="imgleft" src="http://idhana.com/wp-content/uploads/2011/11/decorator.png" />Now, on the next series from the <a href="http://www.amazon.com/First-Design-Patterns-Elisabeth-Freeman/dp/0596007124/ref=sr_1_1?ie=UTF8&#038;qid=1316043112&#038;sr=8-1">Head First Design Patterns</a> book - the decorator pattern.  The decorator pattern is used to attach additional responsibilities to an object dynamically. This provides a more flexible alternative to subclassing in order to add on more functionality.  ]]></description>
		<wfw:commentRss>http://idhana.com/2011/11/16/design-pattern-decorator-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Pattern: Facade in PHP</title>
		<link>http://idhana.com/2011/11/10/design-pattern-facade-in-php/</link>
		<comments>http://idhana.com/2011/11/10/design-pattern-facade-in-php/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 05:32:55 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Object Oriented Programming]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=564</guid>
		<description><![CDATA[<img class="imgleft" src="http://idhana.com/wp-content/uploads/2011/11/facade.png" />Continuing with the <a href="http://www.amazon.com/First-Design-Patterns-Elisabeth-Freeman/dp/0596007124/ref=sr_1_1?ie=UTF8&#038;qid=1316043112&#038;sr=8-1">Head First Design Patterns</a> book is the facade pattern. Facade is another design pattern in PHP.  The facade pattern is used to provide a simplified interface and to hide the complexity of the actual work going on behind.  When does the facade get used?  The most basic example is your computer.  Say you have Windows 7.  Windows 7 provides an interface for you to find your files, to change your background and so forth.  But beneath Windows 7, there are multiple independent applications that actually do the work, but Windows 7 provides a unified theme for all these interactions.]]></description>
		<wfw:commentRss>http://idhana.com/2011/11/10/design-pattern-facade-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Pattern: Adapter in PHP</title>
		<link>http://idhana.com/2011/11/07/design-pattern-adapter-in-php/</link>
		<comments>http://idhana.com/2011/11/07/design-pattern-adapter-in-php/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 05:06:00 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Object Oriented Programming]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=555</guid>
		<description><![CDATA[<img class="imgleft" src="http://idhana.com/wp-content/uploads/2011/11/adapterBig.png" alt="" />The next part in the <a href="http://www.amazon.com/First-Design-Patterns-Elisabeth-Freeman/dp/0596007124/ref=sr_1_1?ie=UTF8&#038;qid=1316043112&#038;sr=8-1 " target="_blank">Head First Design Pattern</a> series covers the "Adapter Pattern".  Say for example you worked on an API.  The API is out in the wild and is being used widely.  Then the changes for the API comes rolling in and you have to redesign the implementation.  But, since you already have users using the API, you need to resort to a less disruptive solution.  What do you do?  Rewrite the old functions?  An easier way would be to create an interface that would convert the old public interface of your API to the new interface. 
<!--more-->]]></description>
		<wfw:commentRss>http://idhana.com/2011/11/07/design-pattern-adapter-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Pattern: Command in PHP</title>
		<link>http://idhana.com/2011/10/31/design-pattern-command-in-php/</link>
		<comments>http://idhana.com/2011/10/31/design-pattern-command-in-php/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 03:57:14 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Head First Design Patterns]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Object Oriented Programming]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=551</guid>
		<description><![CDATA[<img class="imgleft" src="http://idhana.com/wp-content/uploads/2011/10/commandBig.png" alt="" />
The next pattern from the  <a title="Head First Design Patterns" href="http://www.amazon.com/First-Design-Patterns-Elisabeth-Freeman/dp/0596007124/ref=sr_1_1?ie=UTF8&#38;qid=1316043112&#38;sr=8-1" target="_blank"> Head First Design Patterns</a> book is the Command Pattern.  The command pattern allows decoupling of an action's requester and the actual object that performs the action.]]></description>
		<wfw:commentRss>http://idhana.com/2011/10/31/design-pattern-command-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Pattern: Singleton in PHP</title>
		<link>http://idhana.com/2011/10/26/design-pattern-singleton-in-php/</link>
		<comments>http://idhana.com/2011/10/26/design-pattern-singleton-in-php/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 05:43:38 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Head First Design Patterns]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Object Oriented Programming]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=544</guid>
		<description><![CDATA[<img src="http://idhana.com/wp-content/uploads/2011/10/singleton.png" alt="" class="imgleft" />This is the third of my Head First Design Pattern post.  This time, I am going to be porting the Singleton pattern from Java to PHP.

The Singleton pattern is used to create one of a kind object where there should only be a single instance. i.e. thread pools, logging, caching and etc.  It also gives a global point of access to the rest of the application to access the instance. ]]></description>
		<wfw:commentRss>http://idhana.com/2011/10/26/design-pattern-singleton-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Pattern: Observer in PHP</title>
		<link>http://idhana.com/2011/10/17/design-pattern-observer-in-php/</link>
		<comments>http://idhana.com/2011/10/17/design-pattern-observer-in-php/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 05:33:01 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Head First Design Patterns]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Object Oriented Programming]]></category>
		<category><![CDATA[Observer]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=537</guid>
		<description><![CDATA[<img src="http://idhana.com/wp-content/uploads/2011/10/observerBig.png" alt="" class="imgleft" />My second design pattern is the observer.  As mentioned in the <a href="http://idhana.com/2011/10/12/design-pattern-strategy-in-php/" title="Strategy Pattern" target="_blank">first design blog entry</a>, the code comes from<a href="http://www.amazon.com/First-Design-Patterns-Elisabeth-Freeman/dp/0596007124/ref=sr_1_1?ie=UTF8&#038;qid=1316043112&#038;sr=8-1" title="Head First Design Patterns" target="_blank"> Head First Design Patterns</a>.]]></description>
		<wfw:commentRss>http://idhana.com/2011/10/17/design-pattern-observer-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Pattern: Strategy in PHP</title>
		<link>http://idhana.com/2011/10/12/design-pattern-strategy-in-php/</link>
		<comments>http://idhana.com/2011/10/12/design-pattern-strategy-in-php/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 06:37:00 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Head First Design Patterns]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=533</guid>
		<description><![CDATA[<img src="http://idhana.com/wp-content/uploads/2011/10/strategyThumb.png" alt="" class="imgleft" />As part of my ongoing self education, I decided to delve more into design patterns to fully appreciate the art of software design. My book of choice for this learning process was "<a href="http://www.amazon.com/First-Design-Patterns-Elisabeth-Freeman/dp/0596007124/ref=sr_1_1?ie=UTF8&#38;qid=1316043112&#38;sr=8-1" target="_blank">Head First Design Patterns</a>". As the code samples were in Java, I decided to port the code to PHP so that others who are interested in the book, but are more familiar with PHP can see how it could be achieved with equal ease.]]></description>
		<wfw:commentRss>http://idhana.com/2011/10/12/design-pattern-strategy-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BoostMe: An HTML5 Goal Tracking App</title>
		<link>http://idhana.com/2011/08/03/boost-me-an-html5-app-in-unbounded-programming/</link>
		<comments>http://idhana.com/2011/08/03/boost-me-an-html5-app-in-unbounded-programming/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 04:40:57 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[EJS]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=514</guid>
		<description><![CDATA[<a href="http://boostme.idhana.com/login.html" title="BoostMe" target="_blank"><img src="http://idhana.com/wp-content/uploads/2011/08/logo.png" class="imgleft" alt="" /></a>In my day job, I have to be pragmatic.  That means although I am eager to try out new things right away, I have to weigh the pros and cons and the impact it might cause my unsuspecting users.  I need to think about backward compatibility, about supporting browsers as old as Father Time and the list never ends.  Although those daily exercises provide challenging and intriguing ways of working with old and new technology, I admit I always dream about how it would be to work in a world where IE6 or even IE7 is merely a dream, where I could care less of using a library to achieve cross browser compatibility and blah blah blah &#8230;]]></description>
		<wfw:commentRss>http://idhana.com/2011/08/03/boost-me-an-html5-app-in-unbounded-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to do when &#8220;setAttribute&#8221; does not work on dropdowns</title>
		<link>http://idhana.com/2011/07/31/what-to-do-when-setattribute-does-not-work-on-dropdowns/</link>
		<comments>http://idhana.com/2011/07/31/what-to-do-when-setattribute-does-not-work-on-dropdowns/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 08:49:14 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=511</guid>
		<description><![CDATA[<img class="imgleft" alt="" src="http://idhana.com/wp-content/uploads/2011/07/dropdown.jpg"/>
While working on my personal project this weekend (a girl's got to have some fun sometimes), I discovered a rather peculiar behavior in a few different browsers I was testing my program with. I had a dropdown that I was setting a preselected value dynamically using Javascript using the <em>setAttribute</em> method.]]></description>
		<wfw:commentRss>http://idhana.com/2011/07/31/what-to-do-when-setattribute-does-not-work-on-dropdowns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook App Authorization In A Tab (Javascript)</title>
		<link>http://idhana.com/2011/02/15/facebook-javascript-app-authorization-iframe-tab-application/</link>
		<comments>http://idhana.com/2011/02/15/facebook-javascript-app-authorization-iframe-tab-application/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 05:46:20 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=505</guid>
		<description><![CDATA[<img class="imgleft" alt="" src="http://idhana.com/wp-content/uploads/2011/02/permission.gif"/>I have been working a lot recently with the Facebook API at work.  Unfortunately, I have been encountering a steep learning curve for Facebook API due to the lack of documentation and good sample code.  So, here I have decided to provide little snippets of code that will help someone in their Facebook journey.  This will hopefully be the first of many installations.]]></description>
		<wfw:commentRss>http://idhana.com/2011/02/15/facebook-javascript-app-authorization-iframe-tab-application/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>A Primer of CSS Specificity</title>
		<link>http://idhana.com/2010/12/09/a-primer-of-css-specificity/</link>
		<comments>http://idhana.com/2010/12/09/a-primer-of-css-specificity/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 06:11:26 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=502</guid>
		<description><![CDATA[<img src="http://idhana.com/wp-content/uploads/2010/12/css.gif" alt="" class="imgleft" />Ever get confused about CSS?  Wonder why certain style rules somehow override each other although you specified the rule later?  You spend hours commenting out code, then uncommenting it.  The problem still persists. How is that possible?  Well, here's a primer to get your head around CSS specificity.]]></description>
		<wfw:commentRss>http://idhana.com/2010/12/09/a-primer-of-css-specificity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brandcaster Savings Gallery</title>
		<link>http://idhana.com/2010/12/07/brandcaster-savings-gallery/</link>
		<comments>http://idhana.com/2010/12/07/brandcaster-savings-gallery/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 05:39:35 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=489</guid>
		<description><![CDATA[<img src="http://idhana.com/wp-content/uploads/2010/12/coupons.gif" alt="" class="imgleft"  />Brandcaster Savings Gallery is an Ajax based coupon delivery system for affiliates that allows end users to display coupons and earn money on their personal websites.  Compared to the traditional affiliate system at Coupons.com where an affiliate needs to be a large entity to actually get a custom microsite, any long tail affiliate can easily sign up for Brandcaster and place coupons on their site. ]]></description>
		<wfw:commentRss>http://idhana.com/2010/12/07/brandcaster-savings-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE Third Party Cookie Drama</title>
		<link>http://idhana.com/2010/11/11/ie-third-party-cookie-drama/</link>
		<comments>http://idhana.com/2010/11/11/ie-third-party-cookie-drama/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 07:06:07 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Cookies]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=479</guid>
		<description><![CDATA[<img class="imgleft" alt="" src="http://idhana.com/wp-content/uploads/2010/11/cookie.gif"/>I might lament that IE6 is still around after 9 years and IE's Javascript engine is just much much slower than the other browsers , but sometimes I still marvel at the ways it makes me work hard for my dough.]]></description>
		<wfw:commentRss>http://idhana.com/2010/11/11/ie-third-party-cookie-drama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save To Card</title>
		<link>http://idhana.com/2010/11/07/save-to-card/</link>
		<comments>http://idhana.com/2010/11/07/save-to-card/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 05:58:19 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=487</guid>
		<description><![CDATA[<img src="http://idhana.com/wp-content/uploads/2010/12/stc.gif" alt="" class="imgleft"  />The Save To Card feature is a offered by Coupons.com.  Users can add online coupons onto their store loyalty cards such as Safeway, Vons and Genuardi's.  To redeem, the user simply has to show the card when checking out and the coupons are automatically redeemed at checkout at the point of sale.]]></description>
		<wfw:commentRss>http://idhana.com/2010/11/07/save-to-card/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s New?</title>
		<link>http://idhana.com/2010/09/27/whats-new/</link>
		<comments>http://idhana.com/2010/09/27/whats-new/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 05:25:47 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Ruminations]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=478</guid>
		<description><![CDATA[Well, back after exactly a year. Hopefully, I am back this time with more goodies and less breaks. The last year has been extremely busy &#8211; here&#8217;s to hoping to a more toned down rest of 2010.]]></description>
		<wfw:commentRss>http://idhana.com/2010/09/27/whats-new/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Demand Javascript</title>
		<link>http://idhana.com/2010/09/27/on-demand-javascript/</link>
		<comments>http://idhana.com/2010/09/27/on-demand-javascript/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 05:10:59 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=473</guid>
		<description><![CDATA[<img src="http://idhana.com/wp-content/uploads/2010/09/clock.jpg" alt="" class="imgleft" />As Ajax application start becoming larger and larger, you will need to come up with ways to present a user interface to your users in a timely manner instead of making your users wait for all your code to download.  In today's fast moving world, slow loading applications have become a user's nightmare.]]></description>
		<wfw:commentRss>http://idhana.com/2010/09/27/on-demand-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finemoments</title>
		<link>http://idhana.com/2009/09/29/finemoments/</link>
		<comments>http://idhana.com/2009/09/29/finemoments/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 03:09:04 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=465</guid>
		<description><![CDATA[<img src="http://idhana.com/wp-content/uploads/2008/08/logo.gif" alt="" class="imgleft" />Finemoments is a site that sells baby announcement cards for those who appreciate aesthetic clean lines and classic styles.  Working with the owner and an independent SEO consulting company, the site's content and layout was improved to increase its ranking in search engines.  ]]></description>
		<wfw:commentRss>http://idhana.com/2009/09/29/finemoments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>InWithFitness Physical Tracking</title>
		<link>http://idhana.com/2009/08/29/inwithfitness-physical-tracking/</link>
		<comments>http://idhana.com/2009/08/29/inwithfitness-physical-tracking/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 02:56:10 +0000</pubDate>
		<dc:creator>Dhana</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://idhana.com/?p=459</guid>
		<description><![CDATA[<img src="http://idhana.com/wp-content/uploads/2009/08/iwf.gif" alt="" class="imgleft"  />When InWithFitness was first launched, the fitness tracking system used the traditional method of posting the data back to the server whenever a user added an exercise. Although this worked, we realize that we needed a better method to provide a more pleasant user experience to our members. One that didn’t always reload the page when drilling down for example. For instance, cardio workouts were divided into classes and each class had it’s own set of unique exercises. In the old way, when a member selected a class, the page would reload with the new dataset for the exercises.]]></description>
		<wfw:commentRss>http://idhana.com/2009/08/29/inwithfitness-physical-tracking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

