<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>ckunte.com &#187; Design</title>
	<atom:link href="http://ckunte.com/archives/category/design/feed" rel="self" type="application/rss+xml" />
	<link>http://ckunte.com</link>
	<description>Life, dreams, technology, perfection, rhythm and melody.</description>
	<pubDate>Sat, 23 Aug 2008 21:25:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Overriding posts displayed</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Foverriding-posts-displayed&amp;seed_title=Overriding+posts+displayed</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Foverriding-posts-displayed&amp;seed_title=Overriding+posts+displayed#comments</comments>
		<pubDate>Wed, 16 Jul 2008 20:58:26 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
		
		<category><![CDATA[Design]]></category>

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

		<guid isPermaLink="false">http://ckunte.com/?p=1906</guid>
		<description><![CDATA[I typically display 9 posts per page&#8212;by design, on this WordPress powered site. As an unintended consequence, my monthly archives page, and my search results page would show a paged list of 9 posts. How annoying.
The call query_posts fixes this problem. By adding this following line before the loop, I am able to list my [...]]]></description>
			<content:encoded><![CDATA[<p>I typically display 9 posts per page&#8212;by design, on this <a href="http://wordpress.org/">WordPress</a> powered site. As an unintended consequence, my monthly archives page, and my search results page would show a paged list of 9 posts. How annoying.</p>
<p>The call <a href="http://codex.wordpress.org/Template_Tags/query_posts">query_posts</a> fixes this problem. By adding this following line before <a href="http://codex.wordpress.org/The_Loop">the loop</a>, I am able to list my entire monthly archive displayed in a page (thus effectively overriding my 9 posts limit that I set in <em>Dashboard &rarr; Settings &rarr; Reading</em>):</p>
<p><code>&lt;?php query_posts($query_string.&#39;&#038;posts_per_page=-1&#39;); ?&gt;</code></p>
<p>The value <code>-1</code> set for <code>&#038;posts_per_page</code> lists everything in one page. For search results, however, I&#8217;d prefer to restrict the list to 50 per page. Easy:</p>
<p><code>&lt;?php query_posts($query_string.&#39;&#038;posts_per_page=50&#39;); ?&gt;</code></p>
<p>The result: a typical <a href="http://ckunte.com/archives/2008/06">monthly archive</a>, and a typical <a href="http://ckunte.com?s=wordpress">search results list</a>.</p>
<p>For fun, try removing <code>$query_string.</code> from the first line of code above, and you&#8217;ll notice how it produces an entire list of posts ever written. Archives, Sitemaps anyone?</p>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Foverriding-posts-displayed&amp;seed_title=Overriding+posts+displayed/feed</wfw:commentRss>
		</item>
		<item>
		<title>Minimalism commentary</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fminimalism-commentary&amp;seed_title=Minimalism+commentary</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fminimalism-commentary&amp;seed_title=Minimalism+commentary#comments</comments>
		<pubDate>Tue, 24 Jun 2008 15:55:19 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[inline-editing]]></category>

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

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

		<guid isPermaLink="false">http://ckunte.com/archives/minimalism-commentary</guid>
		<description><![CDATA[Minimalism is the new black, or so these fine folks appear to be saying: Ryan Tomayko, James Bennett, and Mark Pilgrim. This is a different train of thought for me.1 
My perspective on minimalism has mostly revolved around bandwidth instead. Some experiments over the years:

There was a theme I created in which the website showed [...]]]></description>
			<content:encoded><![CDATA[<p>Minimalism is the new black, or so these fine folks appear to be saying: <a href="http://tomayko.com/writings/administrative-debris" title="Administrative debris">Ryan Tomayko</a>, <a href="http://www.b-list.org/weblog/2008/jun/15/minimal/" title="Minimal">James Bennett</a>, and <a href="http://diveintomark.org/archives/2008/06/21/minimalism" title="Minimalism">Mark Pilgrim</a>. This is a different train of thought for me.<sup>1</sup> </p>
<p>My perspective on minimalism has mostly revolved <a href="http://ckunte.com/archives/lean-fast-web">around bandwidth</a> instead. Some experiments over the years:</p>
<ul>
<li>There was <a href="http://ckunte.com/archives/minima">a theme</a> I created in which the website <a href="http://web.archive.org/web/20060110044152/http://ckunte.com/">showed only my about page</a>, and nothing else. To find updated content, it would require the reader to subscribe to the feed (or find posts via the archives page, which I ended up adding a link to&#8212;for better visibility). As I realized after a month, it was a real pain for readers to find out what was happening.</li>
<li>I&#8217;ve <a href="http://flickr.com/photos/chetan/42230987/in/set-31597/">had inline editing</a> via <a title="Touched inline editing plugin by Gregory Wild-Smith" href="http://twilightuniverse.com/uploads/touched.zip">a plugin</a> [zip], which, I am not sure works with the new WordPress release.</li>
<li>Last year, I enabled a <a href="http://flickr.com/photos/chetan/801490924/in/set-31597/">shortlived homepage</a> with just Twitter updates.</li>
<li>And now <a href="http://ckunte.com/">this</a>. The new avatar (if you click and load the site) <a href="http://flickr.com/photos/chetan/1536500244/in/set-31597/">isn&#8217;t really new</a>. For a few years, I put up with <a href="http://flickr.com/photos/chetan/2357981210/in/set-31597/">a barely populated sidebar</a>, in the hope that I&#8217;d have some meaningful meta information to fill it with. That didn&#8217;t happen. So now it&#8217;s gone.</li>
<li>Update: Oh by the way, the <a href="http://ckunte.com/archives/firefox-search-plugin-update">site search autodiscovery</a> on this site is a couple of years old feature now.</li>
</ul>
<ol class="footnotes">
<li id="footnote_0_1877" class="footnote"><a href="http://www.russellbeattie.com/blog/realistic-minimalism" title="Realistic minimalism">Russell Beattie</a> and <a href="http://paintingtheweb.burningbird.net/air-minimalism" title="Air minimalism">Shelley Powers</a> on the other hand appear to disagree.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fminimalism-commentary&amp;seed_title=Minimalism+commentary/feed</wfw:commentRss>
		</item>
		<item>
		<title>Shell.com redesigns</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fshellcom-redesigns&amp;seed_title=Shell.com+redesigns</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fshellcom-redesigns&amp;seed_title=Shell.com+redesigns#comments</comments>
		<pubDate>Fri, 16 May 2008 18:50:58 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
		
		<category><![CDATA[Asides]]></category>

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

		<guid isPermaLink="false">http://ckunte.com/?p=1841</guid>
		<description><![CDATA[My company redesigns.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.shell.com/">My company</a> redesigns.</p>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fshellcom-redesigns&amp;seed_title=Shell.com+redesigns/feed</wfw:commentRss>
		</item>
		<item>
		<title>The infamous font tag now gone</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ffont-tag-gone&amp;seed_title=The+infamous+font+tag+now+gone</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ffont-tag-gone&amp;seed_title=The+infamous+font+tag+now+gone#comments</comments>
		<pubDate>Wed, 30 Apr 2008 22:50:29 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
		
		<category><![CDATA[Asides]]></category>

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

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

		<guid isPermaLink="false">http://ckunte.com/?p=1809</guid>
		<description><![CDATA[Ian Hickson: &#8220;&#60;font&#62; is gone, style="" is made global.&#8221;
]]></description>
			<content:encoded><![CDATA[<p><a href="http://lists.w3.org/Archives/Public/public-html/2008Apr/0795">Ian Hickson</a>: &#8220;<code>&lt;font&gt;</code> is gone, <code>style=""</code> is made global.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Ffont-tag-gone&amp;seed_title=The+infamous+font+tag+now+gone/feed</wfw:commentRss>
		</item>
		<item>
		<title>Go mobile</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fgo-mobile&amp;seed_title=Go+mobile</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fgo-mobile&amp;seed_title=Go+mobile#comments</comments>
		<pubDate>Sat, 26 Jan 2008 18:22:58 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
		
		<category><![CDATA[Design]]></category>

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

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

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

		<guid isPermaLink="false">http://ckunte.com/archives/go-mobile</guid>
		<description><![CDATA[Taking Amit&#8217;s idea to the next level, here&#8217;s how you can make a mobile version of your blog. 
Create a folder named m in your blog root&#8212;if you have a self-hosted blog. Dump a file named index.php with the following content in it:

&#60;?php
header('HTTP/1.1 301 Moved Permanently');
header( 'Location: http://www.google.com/reader/m/view/feed/http://ckunte.com/feed/atom' ) ;
?&#62;
&#160;
Download this example: /inputfiles/m.txt

Be sure to [...]]]></description>
			<content:encoded><![CDATA[<p>Taking <a title="Make a Mobile Friendly Version of your Blog with Google Reader" href="http://www.labnol.org/internet/design/how-to-create-mobile-phone-optimized-blog/2132/">Amit&#8217;s idea</a> to the next level, here&#8217;s how you can make a mobile version of your blog. <span id="more-1722"></span></p>
<p>Create a folder named <code>m</code> in your blog root&#8212;if you have a self-hosted blog. Dump a file named <code>index.php</code> with the following content in it:</p>
<ol class="code">
<li><code>&#60;?php</code></li>
<li><code>header('HTTP/1.1 301 Moved Permanently');</code></li>
<li><code>header( 'Location: http://www.google.com/reader/m/view/feed/http://ckunte.com/feed/atom' ) ;</code></li>
<li><code>?&#62;</code></li>
<li>&#160;</li>
<li class="download">Download this example: <a href="http://ckunte.com/inputfiles/m.txt" title="Download the above code as a text file">/inputfiles/m.txt</a></li>
</ol>
<p>Be sure to replace my site's feed address with yours in the code above. Your mobile blog version would now be accessible at this address, for example: <code>yoursite.com/m</code> (or <code>yoursite.com/blog/m</code> depending upon where you created the m subfolder on your host).</p>
<p>I am <a title="Subdomains and subdirectories" href="http://www.mattcutts.com/blog/subdomains-and-subdirectories/">averse to creating a sudomain</a> just for this, but if you still prefer a subdomain like address, here&#8217;s a plugin code I just whipped up.<sup>1</sup></p>
<ol class="code">
<li><code>&#60;?php</code></li>
<li class="cmnt"><code>/*</code></li>
<li class="cmnt"><code>Plugin Name: Mobile version via Google Reader</code></li>
<li class="cmnt"><code>Plugin URI: http://ckunte.com/</code></li>
<li class="cmnt"><code>Description: m. subdomain address is redirected to google's mobile version.</code></li>
<li class="cmnt"><code>Author: Chetan Kunte</code></li>
<li class="cmnt"><code>Version: 1.0</code></li>
<li class="cmnt"><code>Author URI: http://ckunte.com/wordpress</code></li>
<li class="cmnt"><code>*/</code></li>
<li>&#160;</li>
<li><code>if ( !strstr( $_SERVER['HTTP_HOST'], 'm.' ) )</code></li>
<li><code>return;</code></li>
<li>&#160;</li>
<li><code>header('HTTP/1.1 301 Moved Permanently');</code></li>
<li><code>header('Location: http://www.google.com/reader/m/view/feed/http://' . trailingslashit(substr($_SERVER['HTTP_HOST'], 2)) . 'feed/atom');</code></li>
<li><code>exit();</code></li>
<li>&#160;</li>
<li><code>?&#62;</code></li>
<li>&#160;</li>
<li class="download">Download this example: <a href="http://ckunte.com/inputfiles/moplug.txt" title="Download the above code as a text file">/inputfiles/moplug.txt</a></li>
</ol>
<p>Download the file above<sup>2</sup>, and rename it to, say, <code>moplug.php</code> and upload it to <code>wp-content/plugins</code> folder. Your mobile site would now be accessible at m.mysite.com&#8212;all this without having to create a subdomain.
<ol class="footnotes">
<li id="footnote_0_1722" class="footnote">Do note that I haven&#8217;t been able to test this on my host, since I have a subdomain related problem at the moment, but I believe this code would work.</li>
<li id="footnote_1_1722" class="footnote">Make sure there are no empty spaces after <code>?&gt;</code> in both the code snippets</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fgo-mobile&amp;seed_title=Go+mobile/feed</wfw:commentRss>
		</item>
		<item>
		<title>Personalize db errors now with Wordpress 2.3.2</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fpersonalize-db-errors-now-with-wordpress-232&amp;seed_title=Personalize+db+errors+now+with+Wordpress+2.3.2</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fpersonalize-db-errors-now-with-wordpress-232&amp;seed_title=Personalize+db+errors+now+with+Wordpress+2.3.2#comments</comments>
		<pubDate>Mon, 31 Dec 2007 03:04:15 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
		
		<category><![CDATA[Design]]></category>

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

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

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

		<guid isPermaLink="false">http://ckunte.com/archives/personalize-db-errors-now-with-wordpress-232</guid>
		<description><![CDATA[Personalizing database down error for Wordpress powered sites was one of the suggestions I offered humbly to the Wordpress team back in August 2007. Happy to note that it&#8217;s now in place in the latest Wordpress update (version 2.3.2), as Ryan notes:
As a little bonus, [version] 2.3.2 allows you to define a custom DB error [...]]]></description>
			<content:encoded><![CDATA[<p>Personalizing database down error for Wordpress powered sites was one of the <a href="http://comox.textdrive.com/pipermail/wp-hackers/2007-August/013828.html">suggestions I offered</a> humbly to the Wordpress team back in August 2007. Happy to note that it&#8217;s now in place in the latest Wordpress update (version 2.3.2), as <a href="http://wordpress.org/development/2007/12/wordpress-232/">Ryan notes</a>:</p>
<blockquote cite="http://wordpress.org/development/2007/12/wordpress-232/" title="Ryan Boren: Wordpress 2.3.2"><p>As a little bonus, [version] 2.3.2 allows you to define a custom DB error page. Place your custom template at wp-content/db-error.php. If WP has a problem connecting to your database, this page will [be] displayed rather than the default error message.</p></blockquote>
<p>It is important to note that the custom db error page file is not under the theme folder, but rather in <code>wp-content</code> folder. Also, it is important to avoid using any template tag (in <code>db-error.php</code>)<sup>1</sup> that queries the database for stored information; because when the database is down, you cannot get a reply back from the database to show the queried info on the error page. Obvious, but if it wasn&#8217;t to you, then you know now.</p>
<p>As always, Wordpress team listens&#8212;that&#8217;s something I really like about them. It doesn&#8217;t matter who you are, your suggestions are always considered. That&#8217;s the strength of the community.</p>
<ol class="footnotes">
<li id="footnote_0_1701" class="footnote">I use plain html/php coded content in my <code>db-error.php</code> file.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fpersonalize-db-errors-now-with-wordpress-232&amp;seed_title=Personalize+db+errors+now+with+Wordpress+2.3.2/feed</wfw:commentRss>
		</item>
		<item>
		<title>ubuntu logo</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fubuntu-logo&amp;seed_title=ubuntu+logo</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fubuntu-logo&amp;seed_title=ubuntu+logo#comments</comments>
		<pubDate>Mon, 26 Nov 2007 20:56:04 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
		
		<category><![CDATA[Asides]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://ckunte.com/archives/ubuntu-logo</guid>
		<description><![CDATA[For all &#8220;I ubuntu, do you?&#8221; geeks, here&#8217;s a 3D logo. Download and buttonize at will. Update: Live now.
]]></description>
			<content:encoded><![CDATA[<p>For all &#8220;I ubuntu, do you?&#8221; geeks, here&#8217;s a <a title="ubuntu logo in 3D" href="http://sketchup.google.com/3dwarehouse/details?mid=95d0c479336f2eacb1f640482693e35b">3D logo</a>. Download and buttonize at will. <strong>Update:</strong> <a href="http://ckunte.com/colophon">Live now</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fubuntu-logo&amp;seed_title=ubuntu+logo/feed</wfw:commentRss>
		</item>
		<item>
		<title>Hoofddorp</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fhoofddorp&amp;seed_title=Hoofddorp</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fhoofddorp&amp;seed_title=Hoofddorp#comments</comments>
		<pubDate>Sun, 25 Nov 2007 18:45:00 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
		
		<category><![CDATA[Design]]></category>

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

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

		<category><![CDATA[cable-stayed]]></category>

		<guid isPermaLink="false">http://ckunte.com/archives/hoofddorp</guid>
		<description><![CDATA[
I am a sucker for cable-stayed bridges. They present a perception of fragility while hiding their strength, which they derive from those frail looking highly tensile cable strands. We got lucky today on our way to Hoofddorp, as we found two of those gorgeous ones.1

Update: Designed by Spanish architect Santiago Calatrava, three bridges Harp, Cittern [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/chetan/2062400611/" title="On the way to Hoofddorp by chetan, on Flickr"><img class="centered" src="http://farm3.static.flickr.com/2202/2062400611_a1f50c6d44.jpg" width="500" height="304" alt="On the way to Hoofddorp" /></a></p>
<p>I am a sucker for cable-stayed bridges. They present a perception of fragility while hiding their strength, which they derive from those frail looking highly tensile cable strands. We got lucky today <a href="http://flickr.com/photos/chetan/2063189978/">on our way</a> to <a href="http://en.wikipedia.org/wiki/Hoofddorp">Hoofddorp</a>, as we found two of those <a href="http://flickr.com/photos/siebe/353903066/in/set-72157594387413046/">gorgeous</a> ones.<sup>1</sup></p>
<ol class="footnotes">
<li id="footnote_0_1687" class="footnote">Update: Designed by Spanish architect <a href="http://en.wikipedia.org/wiki/Santiago_Calatrava">Santiago Calatrava</a>, three bridges Harp, Cittern and Lute&#8212;named after stringed musical instruments&#8212;spanning the main canal of Haarlemmermeer were opened, in 2004 by Queen Beatrix.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fhoofddorp&amp;seed_title=Hoofddorp/feed</wfw:commentRss>
		</item>
		<item>
		<title>New look for Expatica</title>
		<link>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fnew-look-for-expatica&amp;seed_title=New+look+for+Expatica</link>
		<comments>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fnew-look-for-expatica&amp;seed_title=New+look+for+Expatica#comments</comments>
		<pubDate>Sat, 03 Nov 2007 17:32:29 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
		
		<category><![CDATA[Asides]]></category>

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

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

		<guid isPermaLink="false">http://ckunte.com/archives/new-look-for-expatica</guid>
		<description><![CDATA[Expatica development blog mentions that they&#8217;ll have a new look soon. Here&#8217;s what it would look like by Christmas. Awesome!; and WordPress powered.
]]></description>
			<content:encoded><![CDATA[<p>Expatica development blog <a href="http://blog.expatica.com/2007/10/29/uhi-thought-the-new-expatica-website-would-be-live-by-now/">mentions</a> that they&#8217;ll have a new look soon. Here&#8217;s what it <a href="http://www.expatica.ch/">would look like</a> by Christmas. Awesome!; <del datetime="2007-11-05T08:28:19+00:00">and WordPress powered</del>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ckunte.com/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fckunte.com%2Farchives%2Fnew-look-for-expatica&amp;seed_title=New+look+for+Expatica/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
