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

<channel>
	<title>finally{}</title>
	<atom:link href="http://www.jjude.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jjude.com</link>
	<description>In the end, everything will be fine; if it isn't fine, it is not the end</description>
	<pubDate>Sat, 02 May 2009 14:27:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Now you can create cases via Twitter</title>
		<link>http://www.jjude.com/2009/05/02/now-you-can-create-cases-via-twitter/</link>
		<comments>http://www.jjude.com/2009/05/02/now-you-can-create-cases-via-twitter/#comments</comments>
		<pubDate>Sat, 02 May 2009 14:27:45 +0000</pubDate>
		<dc:creator>Joseph Jude</dc:creator>
		
		<category><![CDATA[Programming]]></category>

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

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

		<guid isPermaLink="false">http://www.jjude.com/2009/05/02/now-you-can-create-cases-via-twitter/</guid>
		<description><![CDATA[With increasing popularity of social media, integrating Case Management Systems with social  media is inevitable]]></description>
			<content:encoded><![CDATA[<p>Traditionally, customer service was provided via phone, email or web. In the age of Twitters and Facebooks, those options seems so old age practice. Since youngsters spend so much time on the ubiquitous Twitter, they would eventually bring customer service to Twitter and other social media.</p>
<p>Here is how <a href="http://y-a-t-s-y.appspot.com/" target="_blank">YATSY</a> (a simple case management system for Google App Engine) is integrated with Twitter.</p>
<p><img title="twitter" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="137" alt="twitter" src="http://www.jjude.com/wp-content/uploads/twitter.jpg" width="481" border="0" /></p>
<p>Isn’t that simple? Follow @<a href="http://twitter.com/yatsy" target="_blank">yatsy</a>; once yatsy follows back, send a direct message to yatsy to create a case. YATSY system will read this DM and create a case &amp; will respond back.</p>
<p>Having Twitter Integration is a double edge sword. If you provide a fantastic customer service it will be known in the social media. On the other hand, if you do a lousy job, it will spread like a wild fire. Yet, if you monitor Twitter Streams, you’ll be able to improve your products and customer service too.</p>
<p>Now for the techies. How did I implement Twitter Integration? YATSY itself is written using web2py, a web-framework in Python. Twitter streams are parsed using <a href="http://code.google.com/p/python-twitter/" target="_blank">python-twitter</a>, a simple &amp; efficient Python wrapper for Twitter API.</p>
<p><strong><u>Steps Forward</u></strong></p>
<ul>
<li>Use Google App Engine Cron to initiate twitter parsing &amp; case creation (now one need to explicitly execute the function) </li>
<li>Using the same Cron facility for auto-follow </li>
<li>Use a message queue for IN/OUT messages (if you know a good message queue implementation in Python, please leave a comment) </li>
<li>Integrate (case) notes with Twitter </li>
</ul>
<p>If your hands are itching to test this, go ahead and follow <a href="http://twitter.com/yatsy" target="_blank">yatsy</a> &amp; once yatsy follow you back, DM your case text.</p>
<p>If you are interested in checking out the code or want to do a code review, head to <a href="http://code.google.com/p/y-a-t-s-y" target="_blank">Google Code</a> page</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jjude.com/2009/05/02/now-you-can-create-cases-via-twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why I chose web2py for developing YATSY?</title>
		<link>http://www.jjude.com/2009/04/07/why-i-chose-web2py-for-developing-yatsy/</link>
		<comments>http://www.jjude.com/2009/04/07/why-i-chose-web2py-for-developing-yatsy/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 02:23:47 +0000</pubDate>
		<dc:creator>Joseph Jude</dc:creator>
		
		<category><![CDATA[Programming]]></category>

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

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

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

		<guid isPermaLink="false">http://www.jjude.com/2009/04/07/why-i-chose-web2py-for-developing-yatsy/</guid>
		<description><![CDATA[Here I discuss the reasons that I went with web2py for developing YATSY - an open source helpdesk application for google appengine.]]></description>
			<content:encoded><![CDATA[<p>Non-functional features are as important as functional features in determining the success of an open-source application. Users should be able to download and try most of the functionality, without complicated installation steps. Equally important is the ease with which it can be deployed. </p>
<p>While striving to keep these boundary conditions for end-users, developers prefer a language (and framework) that enable them to transform their brilliant ideas into working code quickly. </p>
<p>With such a thought process, I searched for a framework to develop YATSY - an open source helpdesk application for small businesses. As the title says, I settled on web2py because of the following reasons: </p>
<p><strong>It is on Python:</strong> If you didn&#8217;t know, Python can be learnt intuitively. In the recent years lots of Python-based frameworks have evolved improving developer&#8217;s productivity drastically. Python places minimal constraints on the developer; hence development is generally quick. </p>
<p><strong>It adapts to Schema Changes:</strong> Schema changes are an inherent part of development; especially if you follow the open-source mantra of &#8216;release early; release often&#8217;. Web2py automatically changes db schema if it detects a change in the underlying model. You don&#8217;t need to drop and recreate schema or issue alter table commands. One less head-ache for developers. </p>
<p><strong>Its a self-contained Framework:</strong> web2py is based on MVC pattern and it comes bundled with most of the components needed for web-development - authentication, authorization, form generation &amp; validation,&#160; internationalization, admin interface, ajax (jQuery) and so on. </p>
<p><strong>Its well documented:</strong> Yes it is a pity that the official manual has to be bought but Massimo, the lead developer, seems to have a <a href="http://groups.google.com/group/web2py/browse_thread/thread/5b62e3e58fee5421" target="_blank">justification</a> for it. I went ahead and bought the manual and I should it is fantastic - he explains each component of the stack pretty well. </p>
<p><strong>It can be installed easily:</strong> It is based on Python,&#160; but it is not a pre-requisite to run web2py. Download, Unzip, Execute are all that is needed to get started with web2py development - on any OS. </p>
<p><strong>It can be hosted on AppEngine:</strong> This is a big plus for me. Google AppEngine is the only cloud hosting that I am aware of that provides a free hosting for Python based applications. So potential users of YATSY can try free GAE hosting before moving to paid hosting. Deploying web2py application to AppEngine is a one-click affair. </p>
<p><strong>It can be hosted elsewhere too:</strong> Web2py provides the flexibility to host the developed application anywhere Python can be installed. This means that users are not tied to GAE. If they want to install in their own servers, it is no problem. </p>
<p>With web2py providing the basic blocks for non-functional requirements, I find it easy to develop YATSY. You can check out the code at <a href="http://code.google.com/p/y-a-t-s-y/" target="_blank">Google code</a> and try it at <a href="http://y-a-t-s-y.appspot.com/" target="_blank">Google AppEngine</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jjude.com/2009/04/07/why-i-chose-web2py-for-developing-yatsy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Are we demanding too much out of customer service?</title>
		<link>http://www.jjude.com/2009/03/29/are-we-demanding-too-much-out-of-customer-service/</link>
		<comments>http://www.jjude.com/2009/03/29/are-we-demanding-too-much-out-of-customer-service/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 10:42:11 +0000</pubDate>
		<dc:creator>Joseph Jude</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[customer service]]></category>

		<category><![CDATA[personal MBA]]></category>

		<guid isPermaLink="false">http://www.jjude.com/2009/03/29/are-we-demanding-too-much-out-of-customer-service/</guid>
		<description><![CDATA[While expecting fantastic customer service, are we - customers - putting too much pressure on the businesses?]]></description>
			<content:encoded><![CDATA[<p>In a recent article in a leading online magazine, the author recounts his &#8216;bad&#8217; experience in a five-star hotel and then compares that with a supposedly &#8216;good&#8217; customer service at another equally starred hotel. He says that the &#8216;bad&#8217; hotel didn&#8217;t extend his check-out time (they said that if he pays extra it would be possible); but the other hotel gladly did so.</p>
<p>I have my own experiences of bad customer service. But we need to differentiate between bad customer service and annoying customer demands.</p>
<p><a href="http://travel.webshots.com/photo/1200433034060339360XntoCp"><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://inlinethumb40.webshots.com/19431/1200433034060339360S425x425Q85.jpg" alt="Travel Bookshop" /></a></p>
<p>I remember a scene from my favorite romantic comedy - <a href="http://en.wikipedia.org/wiki/Notting_Hill_(film)" target="_blank">Notting Hill</a>. In that movie, William Thacker - the protagonist - runs a travel book shop. One day a well dressed customer walks into the shop and the conversation goes something like this:</p>
<p>Customer :  Do you have any books by Dickens?<br />
William :     No, we&#8217;re a travel bookshop.  We only sell travel books.<br />
Customer : Oh right.  How about that new John Grisham thriller?<br />
William : No, that&#8217;s a novel too.<br />
Customer : Oh right.  Have you got a copy of &#8216;Winnie the Pooh&#8217;?</p>
<p>What is expected of William Thacker? Should he do something to attract this customer again? Should he send his assistant to get the latest John Grisham thriller and hand it over to the customer as a show of exemplary customer service? Isn&#8217;t that what we – customers - demand so often?</p>
<p>Before you complain next time about a bad customer service, think again. Were you an annoying customer?</p>
<p><em>Image courtesy: <a title="webshot" href="http://www.webshots.com/" target="_blank">Webshots</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jjude.com/2009/03/29/are-we-demanding-too-much-out-of-customer-service/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Do tweets add value?</title>
		<link>http://www.jjude.com/2009/03/24/do-tweets-add-value/</link>
		<comments>http://www.jjude.com/2009/03/24/do-tweets-add-value/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 18:44:39 +0000</pubDate>
		<dc:creator>Joseph Jude</dc:creator>
		
		<category><![CDATA[General]]></category>

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

		<guid isPermaLink="false">http://www.jjude.com/2009/03/24/do-tweets-add-value/</guid>
		<description><![CDATA[I&#8217;ve been a twitter user for little more than a year. In the beginning, it was just casual &#38; meaningless I-am-here &#38; I-am-doing-that kind-of tweets. Over time, I realized, I could benefit from the tweets by people around the world. 
I&#8217;ve searched and followed few fantastic people who inspire, lead and share valuable contents - [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a twitter user for little more than a year. In the beginning, it was just casual &amp; meaningless I-am-here &amp; I-am-doing-that kind-of tweets. Over time, I realized, I could benefit from the tweets by people around the world. </p>
<p>I&#8217;ve searched and followed few fantastic people who inspire, lead and share valuable contents - though limited to 140 characters. To get continuous value, I adjust my &#8216;follow&#8217; counts quite often. Though I try to keep the count to a manageable limit, it isn&#8217;t possible with so many good people around. </p>
<p>Here is a list of folks whose tweets I read on priority, because they provide valuable contents often. Interestingly I&#8217;ve met not even one of these folks in person!</p>
<table cellspacing="0" cellpadding="2" width="676" border="0">
<tbody>
<tr>
<td valign="top" width="98"><a href="http://twitter.com/account/profile_image/Orrin_Woodward" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 10px; border-right-width: 0px" height="73" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/67261838/leadership_revolution_bigger.jpg" width="73" border="0" /></a></td>
<td width="576"><a href="http://orrinwoodward.blogharbor.com/blog" target="_blank">Leadership Guy</a> - Orrin provides thought provoking and inspirational leadership quotes. Some days, I read only Orrin. Earlier, I used to save these tweets in my laptop; now I favorite them in Twitter itself.</td>
</tr>
<tr>
<td valign="top" width="102"><a href="http://twitter.com/MeghnaK" target="_blank"><img style="margin: 10px" height="73" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/53724784/Meghna_bigger.jpg" width="73" border="0" /></a></td>
<td width="572"><a href="http://meghnaspages.blogspot.com/" target="_blank">Budding Writer</a> - You wouldn&#8217;t take a teenager seriously. Normally that would be true; but not Meghan. She has the motivation to be the next great writer. Sometimes, I wonder if she is really a teen.</td>
</tr>
<tr>
<td valign="top" width="106"><a href="http://twitter.com/rameshsrivats" target="_blank"><img style="margin: 10px" height="73" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/65800493/Close_up_bigger.jpg" width="73" border="0" /></a></td>
<td width="569"><a href="http://www.rameshsrivats.net/" target="_blank">Comedy Man</a> -&#160; Only Ramesh can take the current events and twist it to bring a laugh. He is amazing at that. Mind that he primarily targets Indian system, so if you don&#8217;t follow Indian events, you won&#8217;t have a laugh.</td>
</tr>
<tr>
<td valign="top" width="109"><a href="http://twitter.com/CindyKing" target="_blank"><img style="margin: 10px" height="73" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/66542416/CK_facing_right_bigger.jpg" width="73" border="0" /></a></td>
<td width="566"><a href="http://cindyking.biz/" target="_blank">Cross Cultural Lady</a>&#160; - Having moved from place to place, I&#8217;ve developed an interest in cross-cultural communications and related issues. Cindy tweets her experiences and shares links about cross-cultural communication. Some of them are very interesting.</td>
</tr>
<tr>
<td valign="top" width="112"><a href="http://twitter.com/pwilson" target="_blank"><img style="margin: 10px" height="73" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/69585624/Profile_Pic_bigger.jpg" width="73" border="0" /></a></td>
<td width="563"><a href="http://withoutwax.tv/" target="_blank">Spiritual Guy</a> - Amidst so much of Christian wax in the world, Pete displays a young and balanced approach. His church members are lucky.</td>
</tr>
<tr>
<td valign="top" width="115"><a href="http://twitter.com/kratu" target="_blank"><img style="margin: 10px" height="73" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/92582123/selfportrait-emoticon_bigger.jpg" width="73" border="0" /></a></td>
<td width="561">
<p><a href="http://www.vivr.co.in/work/" target="_blank">Artist Guy</a> - One of these days, when I get enough money, I will hire Jeevan to design my web page, business card and marketing brouchers. I find his designs refreshing and pleasing. He also shares interesting articles and links on photography.</p>
</td>
</tr>
<tr>
<td valign="top" width="117"><a href="http://twitter.com/scorpfromhell" target="_blank"><img style="margin: 10px" height="73" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/87312595/prem_bigger.png" width="73" border="0" /></a></td>
<td width="559"><a href="http://scorpfromhell.blogspot.com/" target="_blank">Social CRM Guy</a> - I&#8217;ve been in CRM field for sometime now and I&#8217;m interested in combining &#8217;social revolution&#8217; with CRM. Not only Prem shares info on Social CRM, but he has another intriguing hobby - writing on rice.</td>
</tr>
<tr>
<td valign="top" width="119"><a href="http://twitter.com/guykawasaki" target="_blank"><img style="margin: 10px" height="73" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/103885390/3360478285_b8b02efc72_o_2_bigger.jpg" width="73" border="0" /></a></td>
<td width="557"><a href="http://alltop.com/" target="_blank">Golden Guy</a> - Ever since I read &#8216;<a href="http://www.amazon.com/Art-Start-Time-Tested-Battle-Hardened-Starting/dp/1591840562" target="_blank">The Art of the Start</a>&#8216;, I&#8217;ve been a fan of Guy. His practical tips to &#8217;starting startups&#8217; is true for starting any venture. If you are thinking about starting something worthwhile - church, non-profit organization, company - grab this book and apply those time-tested principles.&#160; </td>
</tr>
<tr>
<td valign="top" width="121"><a href="http://twitter.com/macosxfreeware" target="_blank"><img style="margin: 10px" height="73" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/91162398/freeware_bigger.png" width="73" border="0" /></a></td>
<td width="555"><a href="http://www.macosxfreeware.com/" target="_blank">Mac Tips</a> - Okay this may not be a person. But being a recent <a href="http://www.jjude.com/2009/03/11/a-byte-of-apple/" target="_blank">mac-convert</a>, I find these tweets helpful in finding useful, free Mac Applications.</td>
</tr>
<tr>
<td valign="top" width="123"><a href="http://twitter.com/StartupPro" target="_blank"><img style="margin: 10px" height="73" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/99751847/Marty_Zwilling_bigger.jpg" width="73" border="0" /></a></td>
<td width="554"><a href="http://blog.startupprofessionals.com/" target="_blank">Startup Consultant</a> – I’ve started to follow Martin very recently. One of his recent entry in his blog encourages startups to start with a problem rather than an idea. Reading through the entry, I knew I’m following a solid guy.</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>I&#8217;ve found that, if you follow popular users for the sake of improving twitter rank, then usually you loose interest reading through pile of useless tweets. Find folks who will help you with useful tweets and you&#8217;ll benefit tremendously from 140 chars. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jjude.com/2009/03/24/do-tweets-add-value/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A byte of apple</title>
		<link>http://www.jjude.com/2009/03/11/a-byte-of-apple/</link>
		<comments>http://www.jjude.com/2009/03/11/a-byte-of-apple/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 14:53:37 +0000</pubDate>
		<dc:creator>Joseph Jude</dc:creator>
		
		<category><![CDATA[General]]></category>

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

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

		<guid isPermaLink="false">http://www.jjude.com/2009/03/11/a-byte-of-apple/</guid>
		<description><![CDATA[Experience with a new toy]]></description>
			<content:encoded><![CDATA[<p>I wanted to own an <a href="http://en.wikipedia.org/wiki/MacBook#Aluminum_Unibody_MacBook" target="_blank">Apple MacBook</a> for long. Very long. Since I turned an <a href="http://www.jjude.com/2008/12/23/new-year-brings-a-new-challenge/" target="_blank">independent consultant</a>, I thought why not go for a MacBook? </p>
<p>Coming from &#8216;Microsoft Windows&#8217; platform, the first impression wasn&#8217;t that impressive - after all even Windows has GUI, dock &amp; task bar. But when I started using it, I realized why Mac is superior. In less than two weeks, I&#8217;ve come to like MacBook. There are at least three features that make Mac to stand out&#160; (I&#8217;m not sure even in a decade such features can come to Windows based laptop; same holds for Linux too): </p>
<ul>
<li><strong>Install &amp; uninstall experience - </strong>Drag and drop into &#8216;Application Folder&#8217; for install; drag &amp; drop into &#8216;Trash Can&#8217; for uninstall. Just as simple as that. No registry; no clean-up of messy folders. Mac OS folks have done really good design and it is simply superb.</li>
<li><strong>No shutdown -</strong> Okay, not necessary to shut down. Close the lid and its off; Open and start working. Cool, isn&#8217;t it?</li>
<li><strong>Spotlight</strong> - something like desktop search. It is quick and precise (only once it didn&#8217;t return what I was looking for). </li>
</ul>
<h4>Mac Applications</h4>
<p>A concern that I had was that I may have to spend quite a lot on applications. Not true. There are lots of open source and free applications for Mac too. And most of them are elegant in UI and efficient in what they are supposed to do. Here are some of the applications that I&#8217;m using: </p>
<p><img title="Picture 1" style="border-right: 0px; border-top: 0px; display: inline; float: none; margin: 10px; border-left: 0px; border-bottom: 0px" height="420" alt="Picture 1" src="http://www.jjude.com/wp-content/uploads/picture1.png" width="660" border="0" /> </p>
<p><strong>Web Browsing</strong> : Mac comes pre-installed with Safari, which is a fast browser. I am also using Firefox. </p>
<p><strong>Email</strong> : Mail, the pre-installed email program doesn&#8217;t have a provision to download only the headers. I&#8217;m using Gmail with offline feature and it is more than sufficient for me. </p>
<p><strong>RSS Feedreader </strong>: Again I depend on Google for it. I&#8217;m using Google Reader with offline feature. </p>
<p><strong>Office Suite</strong> : I&#8217;m using the Apple iWork. Might give a try to NeoOffice. </p>
<p><strong>Games</strong> : I&#8217;m surprised that Mac doesn&#8217;t come with pre-installed games pack. There is only chess. I&#8217;m searching for some good free games. </p>
<p><strong>Chat </strong>: My chat buddies have grown old (no I&#8217;m still young <img src='http://www.jjude.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ). Everyone in the current friends circle use Gmail chat and so I go with it too. </p>
<p><strong>Programming</strong> : I&#8217;m using <a href="http://en.wikipedia.org/wiki/TextWrangler" target="_blank">TextWrangler</a> for coding. But couldn&#8217;t find a decent SVN client. I tried SCPlugin, but for some reason it didn&#8217;t work. </p>
<p><strong>Photography </strong>: I&#8217;ve been using Adobe Photoshop Elements and it worked in Mac too. Still to edit any photo in Mac but I&#8217;m sure the experience is going to be good. </p>
<p><strong>Note Taking</strong> : <a href="http://flyingmeat.com/voodoopad/voodoopadlite.html" target="_blank">Voodoopad Lite</a> is a desktop wiki for Mac and it makes it easy to takes notes and organize within a single physical file. </p>
<p><strong>Personal Finances</strong> : I tried <a href="http://www.codelathe.com/mmex/" target="_blank">mmex</a>. But it kept crashing, though it works fine under Windows. </p>
<p><strong>VirtualBox</strong> : I couldn&#8217;t find a decent Desktop Blog writer than <a href="http://windowslivewriter.spaces.live.com/" target="_blank">Microsoft Live Writer</a>; also I already bought <a href="http://www.smartdraw.com/" target="_blank">SmartDraw</a>. So went with VirtualBox to run Windows inside Mac. I am also using MMex for personal finances under Windows. </p>
<p><strong>Others</strong> : iSync for syncing addresses &amp; calender from Nokia E71; TweetDeck for tweets; <a href="http://www.slifelabs.com/" target="_blank">SLife</a> for tracking hours spent on applications; <a href="http://books.aetherial.net/wordpress/" target="_blank">Books</a> for cataloguing; Grab for taking screenshots. </p>
<p>Are there any other interesting Mac applications (preferably free) that I should try?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jjude.com/2009/03/11/a-byte-of-apple/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.191 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-10 14:07:28 -->
