<?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>expresscaffee.com</title>
	<atom:link href="http://expresscaffee.com/weblog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://expresscaffee.com/weblog</link>
	<description>Before I forget..</description>
	<lastBuildDate>Tue, 18 May 2010 18:03:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Search and rename files in a directory using Python</title>
		<link>http://expresscaffee.com/weblog/?p=62</link>
		<comments>http://expresscaffee.com/weblog/?p=62#comments</comments>
		<pubDate>Wed, 27 May 2009 15:50:12 +0000</pubDate>
		<dc:creator>Waruna</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://expresscaffee.com/weblog/?p=62</guid>
		<description><![CDATA[I found this cool script for renaming files using a Python script. Never thought it would be so easy. #!/usr/local/bin/python # Python Rename File 1.0 # Author: Douglas Palovick # License: GPL http://www.gnu.org/licenses/gpl.txt import re, os rxin = raw_input('enter a regex to search for:\n') foo = re.compile(rxin) newname = raw_input('enter a new base name:\n') a [...]]]></description>
			<content:encoded><![CDATA[<p>I found this <a href="http://www.palovick.com/code/python/python-rename-files.php">cool script</a> for renaming files using a Python script. Never thought it would be so easy.</p>
<pre name="code" class="python">
#!/usr/local/bin/python

# Python Rename File 1.0
# Author: Douglas Palovick
# License: GPL http://www.gnu.org/licenses/gpl.txt

import re, os
rxin = raw_input('enter a regex to search for:\n')
foo = re.compile(rxin)
newname = raw_input('enter a new base name:\n')
a = 0
for fname in os.listdir(os.getcwd()):
    allowed_name = re.compile(rxin).match
    if allowed_name(fname):
        # newfname = string.lower(re.sub(foo,
                                   # '', fname))
        # b = (newname + str(a))
        a += 1
        c = os.path.splitext(fname)
        b = (newname + str(a) + c[1])
        os.rename(fname, b)
</pre>
]]></content:encoded>
			<wfw:commentRss>http://expresscaffee.com/weblog/?feed=rss2&amp;p=62</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Latex article template</title>
		<link>http://expresscaffee.com/weblog/?p=28</link>
		<comments>http://expresscaffee.com/weblog/?p=28#comments</comments>
		<pubDate>Sat, 25 Apr 2009 09:34:24 +0000</pubDate>
		<dc:creator>Waruna</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Latex]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://expresscaffee.com/weblog/?p=28</guid>
		<description><![CDATA[Here is a simple template for writing an article. If you happened to write in German add &#8220;\usepackage[ngerman]{babel}&#8221; and change \usepackage[utf8]{inputenc} to \usepackage[latin1]{inputenc}. \documentclass[11pt,a4paper]{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \date{24.04.2009} \author{Max Mustermann} \title{Replace with the title} \begin{document} \maketitle \begin{abstract} Abstract starts here. \end{abstract} \tableofcontents \section{Start} Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce nec justo. Fusce congue [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a simple template for writing an article. If you happened to write in German add &#8220;\usepackage[ngerman]{babel}&#8221; and change \usepackage[utf8]{inputenc} to \usepackage[latin1]{inputenc}.</p>
<div class="codecolorer-container latex default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="latex codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Cdocumentclass"><span style="color: #800000;">documentclass</span></a><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">11pt,a4paper</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">article</span><span style="color: #E02020; ">}</span> <br />
<span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Cusepackage"><span style="color: #800000;">usepackage</span></a><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">utf8</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">inputenc</span><span style="color: #E02020; ">}</span> <br />
<span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Cusepackage"><span style="color: #800000;">usepackage</span></a><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">T1</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">fontenc</span><span style="color: #E02020; ">}</span><br />
<span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Cdate"><span style="color: #800000;">date</span></a><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">24.04.2009</span><span style="color: #E02020; ">}</span> <br />
<span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Cauthor"><span style="color: #800000;">author</span></a><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Max Mustermann</span><span style="color: #E02020; ">}</span> <br />
<span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Ctitle"><span style="color: #800000;">title</span></a><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Replace with the title</span><span style="color: #E02020; ">}</span> <br />
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">document</span></span><span style="color: #E02020; ">}</span> <br />
<span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Cmaketitle"><span style="color: #800000;">maketitle</span></a> <br />
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">abstract</span></span><span style="color: #E02020; ">}</span> <br />
Abstract starts here. <br />
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">abstract</span></span><span style="color: #E02020; ">}</span> <br />
<span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Ctableofcontents"><span style="color: #800000;">tableofcontents</span></a> <br />
<span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Csection"><span style="color: #800000;">section</span></a><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Start</span><span style="color: #E02020; ">}</span> <br />
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce nec justo. Fusce congue sem eget lacus. In nisi tortor, auctor in, ultricies eget, sollicitudin in, metus. Aliquam erat volutpat. Morbi enim odio, semper vitae, scelerisque a, varius eu, erat. Duis interdum, turpis non tristique sodales, dolor nunc congue est, ac luctus libero purus quis nisi. Curabitur non neque. Ut massa. Sed porta egestas nisi. Aenean aliquet placerat lectus. Donec urna. Fusce porttitor congue velit. Fusce et purus nec velit posuere pharetra. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ante massa, luctus in, gravida nec, venenatis ut, dolor. Cras rutrum. Suspendisse scelerisque feugiat libero.<br />
<br />
Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla et purus id purus commodo hendrerit. Praesent nec libero. Sed mollis placerat elit. Quisque odio nibh, blandit sit amet, volutpat ultricies, sagittis eu, enim. Ut aliquam pulvinar metus. In hac habitasse platea dictumst. Nunc molestie, ipsum non pharetra commodo, neque nunc rhoncus tellus, vitae interdum quam tellus a sapien. Nam tincidunt, est in bibendum imperdiet, enim nibh vulputate lacus, quis elementum lacus enim non elit. In vel risus quis elit rhoncus mollis. Pellentesque mi nisi, lobortis eu, scelerisque et, pellentesque at, arcu. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.<br />
<br />
Quisque libero turpis, scelerisque nec, tincidunt eget, mollis in, massa. Duis sollicitudin sapien a odio. Phasellus sodales arcu et magna. Nam ut quam. Donec ante. Curabitur eget orci. Duis mattis sagittis nibh. Nulla facilisi. Nullam mauris. Aenean ante risus, facilisis sit amet, commodo at, tempor ut, felis. Maecenas at urna. Aliquam erat volutpat. Maecenas molestie. In nulla urna, tempus at, volutpat sit amet, hendrerit ac, leo.<br />
<br />
Proin commodo gravida metus. Proin ligula. Quisque sed nunc quis tellus accumsan bibendum. Morbi dui nunc, lobortis et, tempus molestie, dictum eu, leo. Morbi sagittis mollis metus. Proin a dui. Integer interdum. Integer mattis dui nec justo. Proin vitae sem in leo pharetra bibendum. Donec sapien augue, molestie in, sagittis sodales, imperdiet sit amet, ipsum. Nulla nisl lectus, sollicitudin nec, interdum ac, tempus rhoncus, diam. Cras neque lectus, bibendum non, posuere et, interdum id, dolor. In eu neque sed neque dignissim dignissim.<br />
<br />
Cras ornare magna at felis. Mauris augue dolor, blandit et, convallis sit amet, semper in, lectus. Nam dignissim. Donec lorem. Donec vitae magna. Aenean eu neque. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris venenatis dapibus quam. Phasellus ultricies, magna quis venenatis condimentum, tortor elit sollicitudin arcu, id sagittis nisi leo id urna. Phasellus mollis lobortis tortor. Proin molestie mattis felis. Sed vel purus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec nisl lorem, placerat et, ultrices sed, ornare sagittis, mi. Vivamus ornare, tortor nec faucibus fermentum, tortor odio gravida erat, non luctus nulla dolor sit amet dui. Nullam sagittis odio id est. Aenean malesuada libero nec lectus. Aliquam nec justo. <br />
<br />
<span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Csection"><span style="color: #800000;">section</span></a><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Next Chapter</span><span style="color: #E02020; ">}</span><br />
<br />
<span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Csubsection"><span style="color: #800000;">subsection</span></a><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Sub Chapter</span><span style="color: #E02020; ">}</span> <br />
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce nec justo. Fusce congue sem eget lacus. In nisi tortor, auctor in, ultricies eget, sollicitudin in, metus. Aliquam erat volutpat. Morbi enim odio, semper vitae, scelerisque a, varius eu, erat. Duis interdum, turpis non tristique sodales, dolor nunc congue est, ac luctus libero purus quis nisi. Curabitur non neque. Ut massa. Sed porta egestas nisi. Aenean aliquet placerat lectus. Donec urna. Fusce porttitor congue velit. Fusce et purus nec velit posuere pharetra. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ante massa, luctus in, gravida nec, venenatis ut, dolor. Cras rutrum. Suspendisse scelerisque feugiat libero. <br />
<span style="color: #E02020; ">\</span><a href="http://www.golatex.de/wiki/index.php?title=%5Csection"><span style="color: #800000;">section</span></a><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">End</span><span style="color: #E02020; ">}</span><br />
<br />
Cras ornare magna at felis. Mauris augue dolor, blandit et, convallis sit amet, semper in, lectus. Nam dignissim. Donec lorem. Donec vitae magna. Aenean eu neque. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris venenatis dapibus quam. Phasellus ultricies, magna quis venenatis condimentum, tortor elit sollicitudin arcu, id sagittis nisi leo id urna. Phasellus mollis lobortis tortor. Proin molestie mattis felis. Sed vel purus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec nisl lorem, placerat et, ultrices sed, ornare sagittis, mi. Vivamus ornare, tortor nec faucibus fermentum, tortor odio gravida erat, non luctus nulla dolor sit amet dui. Nullam sagittis odio id est. Aenean malesuada libero nec lectus. Aliquam nec justo. <br />
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">document</span></span><span style="color: #E02020; ">}</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://expresscaffee.com/weblog/?feed=rss2&amp;p=28</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just started using svn</title>
		<link>http://expresscaffee.com/weblog/?p=20</link>
		<comments>http://expresscaffee.com/weblog/?p=20#comments</comments>
		<pubDate>Sat, 05 Jul 2008 22:34:37 +0000</pubDate>
		<dc:creator>Waruna</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://expresscaffee.com/weblog/?p=20</guid>
		<description><![CDATA[Today I started using subversion to update this website. After couple of initial hick ups things are working pretty fine now. If you are planning to use svn make sure to backup the blog before checking out. Here is how I set up the blog to update using svn. In Terminal cd to the document [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl id="attachment_22" class="wp_caption alignnone" style="width: 310px;">
<dt class="wp_caption_dt"><a href="http://expresscaffee.com/weblog/wp-content/uploads/2008/07/subversion_logo_hor-468x64.png"><img class="size-medium wp-image-22" title="subversion logo" src="http://expresscaffee.com/weblog/wp-content/uploads/2008/07/subversion_logo_hor-468x64-300x41.png" alt="subversion logo" width="300" height="41" /></a></dt>
</dl>
</div>
<p>Today I started using subversion to update this website. After couple of initial hick ups things are working pretty fine now. If you are planning to use svn make sure to backup the blog before checking out.</p>
<p>Here is how I set up the blog to update using svn.</p>
<ol>
<li>In Terminal <em>cd</em> to the document root. (eg. <em>cd /srv/www/htdocs/</em>)</li>
<li><em>mv &lt;blog dir&gt;/ &lt;backup&gt;/ -&gt;</em> If anything goes wrong, you could reinstate the blog by reversing the above.</li>
<li><em>svn co http://svn.automattic.com/wordpress/trunk/ &lt;blog dir&gt;/</em> -&gt; This will download a working copy of the latest WP bild.</li>
<li><em>cp &lt;path to wp-config.php from the backedup copy&gt; &lt;path to new blog root&gt;/</em> (eg. <em>cp backup/blog/wp-config.php blog/</em>)</li>
<li><em>cp &lt;path to backed up copy of the uploads&gt; &lt;new wp-content dir&gt;</em> (eg. <em>cp backup/blog/wp-content/uploads blog/wp-content/</em>)</li>
<li><em>cd &lt;blog dir&gt;</em> and issue <em>svn update</em> command to upgrade the WP version.</li>
<li>When you switch to the login mode, WP will automatically attempt to update the database. If there are any plugins or themes missing, you could install them now. (some plugins can be updated directly in the Admin mode)</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://expresscaffee.com/weblog/?feed=rss2&amp;p=20</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Obama vs. Hillary</title>
		<link>http://expresscaffee.com/weblog/?p=16</link>
		<comments>http://expresscaffee.com/weblog/?p=16#comments</comments>
		<pubDate>Wed, 13 Feb 2008 22:52:13 +0000</pubDate>
		<dc:creator>Waruna</dc:creator>
				<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://expresscaffee.com/weblog/?p=16</guid>
		<description><![CDATA[If you ever seen a &#8220;Get a Mac&#8221; advertisement, you may find this funny. The cartoon is from Bill Mitchell.]]></description>
			<content:encoded><![CDATA[<p>If you ever seen a &#8220;Get a Mac&#8221; advertisement, you may find this funny. The cartoon is from Bill Mitchell.</p>
<p><a href="http://edition.cnn.com/POLITICS/analysis/toons/2008/02/12/mitchell/index.html" target="_blank"><img src="http://expresscaffee.com/weblog/wp-content/uploads/2008/02/12a.gif" alt="12a.gif" height="244" width="327" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://expresscaffee.com/weblog/?feed=rss2&amp;p=16</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Funny Blue Screen of Death</title>
		<link>http://expresscaffee.com/weblog/?p=15</link>
		<comments>http://expresscaffee.com/weblog/?p=15#comments</comments>
		<pubDate>Tue, 12 Feb 2008 22:46:11 +0000</pubDate>
		<dc:creator>Waruna</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[BSOD]]></category>

		<guid isPermaLink="false">http://expresscaffee.com/weblog/?p=15</guid>
		<description><![CDATA[While looking for a background image for my iMac, I found this. Click on the image to see more.]]></description>
			<content:encoded><![CDATA[<p>While looking for a background image for my iMac, I found this. Click on the image to see more.</p>
<p><a href="http://expresscaffee.com/weblog/wp-content/uploads/2008/02/bsod.gif"><img src="http://expresscaffee.com/weblog/wp-content/uploads/2008/02/bsod.gif" alt="bsod.gif" height="219" width="295" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://expresscaffee.com/weblog/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flawless (2007)</title>
		<link>http://expresscaffee.com/weblog/?p=12</link>
		<comments>http://expresscaffee.com/weblog/?p=12#comments</comments>
		<pubDate>Sat, 09 Feb 2008 21:59:32 +0000</pubDate>
		<dc:creator>Waruna</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://expresscaffee.com/weblog/?p=12</guid>
		<description><![CDATA[Just watched a British movie called Flawless. I must admit that it had created such a big excitement from the beginning to the end. There were hardly anything to complain about. The Music is great(I am a Jazz fan)! and Demi Moore plays her role pretty well too. Storyline &#8220;From director Michael Radford (THE MERCHANT [...]]]></description>
			<content:encoded><![CDATA[<p> Just watched  a British movie called <a href="http://www.imdb.com/title/tt0780516/" title="flawless" target="_blank">Flawless</a>. I must admit that it had created such a big excitement from the beginning to the end. There were hardly anything to complain about. The Music is great(I am a Jazz fan)! and Demi Moore plays her role pretty well too.</p>
<p>Storyline</p>
<blockquote><p><em>&#8220;From director Michael Radford (THE MERCHANT OF VENICE, IL POSTINO) comes FLAWLESS, a clever diamond-heist thriller set in swinging 1960s London. Demi Moore plays Laura Quinn, a bright, driven and beautiful executive at the London Diamond Corporation who finds herself frustrated by a glass ceiling after years of faithful employment, as man after man is promoted ahead of her despite her greater experience. Michael Caine is Hobbs, the nighttime janitor at London Diamond who is virtually invisible to the executives that work there, but over the years has amassed a startling amount of knowledge about how the company runs. Hobbs has his own bone to pick with London Diamond. Observing Laura’s frustration, he convinces her to help him execute an ingenious plan to steal a hefty sum in diamonds. But unbeknownst to Laura, Hobbs plans go even farther than he’s let on, and together they set in motion a thrilling heist of dizzying proportions, the likes of which London has never seen.&#8221;</em></p></blockquote>
<p style="text-align: center"><img src="http://expresscaffee.com/weblog/wp-content/uploads/2008/02/flawless.jpg" alt="flawless" height="248" width="169" /></p>
]]></content:encoded>
			<wfw:commentRss>http://expresscaffee.com/weblog/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Any freelancers here?</title>
		<link>http://expresscaffee.com/weblog/?p=9</link>
		<comments>http://expresscaffee.com/weblog/?p=9#comments</comments>
		<pubDate>Fri, 08 Feb 2008 23:43:57 +0000</pubDate>
		<dc:creator>Waruna</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Freelance]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://expresscaffee.com/weblog/?p=9</guid>
		<description><![CDATA[Just happened to stumble upon this very useful site dedicated to freelancers.]]></description>
			<content:encoded><![CDATA[<p>Just happened to stumble upon this very <a href="http://freelanceswitch.com/" title="freelanceswitch.com" target="_blank">useful site</a> dedicated to freelancers.</p>
<p><img src="http://expresscaffee.com/weblog/wp-content/uploads/2008/02/freelance1.jpg" alt="freelance" height="71" width="274" /></p>
]]></content:encoded>
			<wfw:commentRss>http://expresscaffee.com/weblog/?feed=rss2&amp;p=9</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Life after death</title>
		<link>http://expresscaffee.com/weblog/?p=8</link>
		<comments>http://expresscaffee.com/weblog/?p=8#comments</comments>
		<pubDate>Sun, 02 Dec 2007 13:50:35 +0000</pubDate>
		<dc:creator>Waruna</dc:creator>
				<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://expresscaffee.com/weblog/?p=8</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img src="http://expresscaffee.com/weblog/wp-content/uploads/2007/12/trespass.jpg" alt="life after death" /></p>
]]></content:encoded>
			<wfw:commentRss>http://expresscaffee.com/weblog/?feed=rss2&amp;p=8</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Photoshop Button Maker</title>
		<link>http://expresscaffee.com/weblog/?p=6</link>
		<comments>http://expresscaffee.com/weblog/?p=6#comments</comments>
		<pubDate>Sun, 25 Nov 2007 22:01:12 +0000</pubDate>
		<dc:creator>Waruna</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://expresscaffee.com/weblog/?p=6</guid>
		<description><![CDATA[Here is an excellent tutorial about making buttons using Photoshop. It is being explained in a very simple way and there are couple of samples available for you to try it yourself. Link to the tutorial.]]></description>
			<content:encoded><![CDATA[<p>Here is an excellent tutorial about making buttons using Photoshop. It is being explained in a very simple way and there are couple of samples available for you to try it yourself.</p>
<p>Link to the <a href="http://psdtuts.com/photo-effects-tutorials/photoshop-button-maker/" title="Buttom Maker" target="_blank">tutorial</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://expresscaffee.com/weblog/?feed=rss2&amp;p=6</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>finiteloops.com finally complete</title>
		<link>http://expresscaffee.com/weblog/?p=1</link>
		<comments>http://expresscaffee.com/weblog/?p=1#comments</comments>
		<pubDate>Mon, 19 Nov 2007 19:00:48 +0000</pubDate>
		<dc:creator>Waruna</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://expresscaffee.com/weblog/?p=1</guid>
		<description><![CDATA[After months of testing various CMSs, I have decided to install WordPress on finiteloops.com. This wasn&#8217;t an easy task as it was difficult to find a easily configurable CMS with good themes and plugins. So far I have tried Textpattern, Movable Type, e107, Drupal, and couple of more. Every single one of them have their [...]]]></description>
			<content:encoded><![CDATA[<p>After months of testing various  CMSs, I have decided to install WordPress on <a href="http://finiteloops.com" title="finiteloops" target="_blank">finiteloops.com</a>. This wasn&#8217;t an easy task as it was difficult to find a easily configurable CMS with good themes and plugins. So far I have tried Textpattern, Movable Type, e107, Drupal, and couple of more. Every single one of them have their strengths and weaknesses but overall WP gave me the best impression.</p>
]]></content:encoded>
			<wfw:commentRss>http://expresscaffee.com/weblog/?feed=rss2&amp;p=1</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
