<?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>Art-Coder</title>
	<atom:link href="http://www.art-coder.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.art-coder.com</link>
	<description>Creativity preserved</description>
	<lastBuildDate>Fri, 24 Feb 2012 12:53:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to run Redis server as daemon</title>
		<link>http://www.art-coder.com/2011/12/01/how-to-run-redis-server-as-daemon/</link>
		<comments>http://www.art-coder.com/2011/12/01/how-to-run-redis-server-as-daemon/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 12:36:05 +0000</pubDate>
		<dc:creator>Eugene</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.art-coder.com/?p=272</guid>
		<description><![CDATA[So I think, that those who will read this article probably know, what is Redis. For those who don't I can say shortly, that this is a software, that is used for storing some maped data ( key => value ) for faster usage. This software could help developers to make their applications by storing [...]]]></description>
			<content:encoded><![CDATA[<p>So I think, that those who will read this article probably know, what is <a href="http://en.wikipedia.org/wiki/Redis" title="Redis" target="_blank" rel="nofollow">Redis</a>. For those who don't I can say shortly, that this is a software, that is used for storing some maped data ( key => value ) for faster usage. This software could help developers to make their applications by storing some primitive data like for example translations on multi-language webpage or other similar information. In this article I will shortly explain how to make your Redis server run as daemon, since making startup file for this in unix is not an option.<br />
<span id="more-272"></span><br />
First obviously you need to get it and unpack. It is all explained on <a href="http://redis.io/" title="Redis official webpage" target="_blank" rel="nofollow">official Redis webpage</a>, but for those who want to stay in one place I will explain it here.</p>
<h2>Sort of installation</h2>
<p>Download, extract and compile Redis with:<br />
<code>$ wget http://redis.googlecode.com/files/redis-2.4.4.tar.gz<br />
$ tar xzf redis-2.4.4.tar.gz<br />
$ cd redis-2.4.4<br />
$ make</code></p>
<p>So now when everything is ready for starting server comes the part with creating a daemon from this.<br />
Make sure you are in redis directory and do the following:<br />
<code>vim redis.conf</code></p>
<p>And after that just change 'no' to 'yes' in line with <strong>daemonize</strong> option<br />
<code># By default Redis does not run as a daemon. Use 'yes' if you need it.<br />
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.<br />
daemonize yes</code></p>
<p>After you saved file with this change just start server:<br />
<code>$ src/redis-server</code></p>
<p>This is it. Now you can look it up by typing <code>ps aux</code> and you will see it as a deamon process there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.art-coder.com/2011/12/01/how-to-run-redis-server-as-daemon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix Java Error: &#8220;1723: There is a problem with this Windows Installer Package.&#8221;</title>
		<link>http://www.art-coder.com/2011/10/04/how-to-fix-java-error-1723-there-is-a-problem-with-this-windows-installer-package/</link>
		<comments>http://www.art-coder.com/2011/10/04/how-to-fix-java-error-1723-there-is-a-problem-with-this-windows-installer-package/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 17:09:37 +0000</pubDate>
		<dc:creator>Eugene</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[1723]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.art-coder.com/?p=261</guid>
		<description><![CDATA[Recently I encountered a Java error, that caught me completely unguard. First I tried to remove it through Add/Remove Programs on Windows, then I just deleted folders, but program didn't disappear. On contrary, I started to receive error displayed on image below. So as I neither could delete program nor reinstall it. I tried different [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I encountered a Java error, that caught me completely unguard. First I tried to remove it through Add/Remove Programs on Windows, then I just deleted folders, but program didn't disappear. On contrary, I started to receive error displayed on image below.<br />
<img src="http://goo.gl/87yi3" alt="Java 1723 error" /></p>
<p>So as I neither could delete program nor reinstall it.<br />
<span id="more-261"></span><br />
I tried different scenarios, but only one helped. I looked up questions about this error on <a href="http://stackoverflow.com/" title="Stack Overflow" target="_blank">SO</a> and found some where it was explained, that there might be entries in registry which tell system, that Java is still installed.<br />
If I'm correct now, then those were this questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/3131731/there-is-a-problem-with-this-windows-installer-package" title="There is a problem with this Windows Installer Package" target="_blank">There is a problem with this Windows Installer Package</a></li>
<li><a href="http://stackoverflow.com/questions/5415485/remove-jre-entries-from-windows-registries" title="remove jre entries from windows registries" target="_blank">remove jre entries from windows registries</a></li>
</ul>
<p>I created my personal <strong>*.bat</strong> file from code brought up in answer: <a href="http://goo.gl/1gwEi" title="Bat file">http://goo.gl/1gwEi</a></p>
<p><strong>NB!</strong> I use Windows 7 x64 and it helped me just fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.art-coder.com/2011/10/04/how-to-fix-java-error-1723-there-is-a-problem-with-this-windows-installer-package/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to create virtual host for app on Tomcat.</title>
		<link>http://www.art-coder.com/2011/09/19/how-to-create-virtual-host-for-app-on-tomcat/</link>
		<comments>http://www.art-coder.com/2011/09/19/how-to-create-virtual-host-for-app-on-tomcat/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 22:06:50 +0000</pubDate>
		<dc:creator>Eugene</dc:creator>
				<category><![CDATA[WebServer]]></category>
		<category><![CDATA[10.10]]></category>
		<category><![CDATA[tomcat]]></category>
		<category><![CDATA[ubuntu-server]]></category>
		<category><![CDATA[vmware-workstation]]></category>

		<guid isPermaLink="false">http://www.art-coder.com/?p=250</guid>
		<description><![CDATA[NB! I will say right away, that my Tomcat is running on Ubuntu Server 10.10 under VMWare Workstation 7. So here it goes. Recently I installed YouTrack issue tracker on my local server, that runs on Tomcat. Very soon I got tired from typing every time (ip_address/webapp_name:port). So I looked up how to create a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>NB!</strong> I will say right away, that my <em>Tomcat</em> is running on <em>Ubuntu Server 10.10</em> under <em>VMWare Workstation 7</em>.<br />
So here it goes. Recently I installed <a href="http://www.jetbrains.com/youtrack/" target="_blank" rel="nofollow">YouTrack</a> issue tracker on my local server, that runs on Tomcat. Very soon I got tired from typing every time (ip_address/webapp_name:port). So I looked up how to create a very simple VirtualHost for Tomcat.<br />
<span id="more-250"></span><br />
To create <em>Tomcat VirtualHost</em> you just need to edit <strong>tomcat_dir/conf/server.xml</strong> and inside Engine tag place following code:</p>
<pre class="brush: xml; title: ; toolbar: false; notranslate">&lt;Host name=&quot;virtual_host_name&quot; appBase=&quot;webapps/your_app_name&quot; unpackWars=&quot;false&quot; autoDeploy=&quot;false&quot;&gt;
	&lt;Logger className=&quot;org.apache.catalina.logger.FileLogger&quot; directory=&quot;logs&quot; prefix=&quot;virtual_log.&quot; suffix=&quot;.txt&quot; timestamp=&quot;true&quot; /&gt;
	&lt;Context path=&quot;&quot; docBase=&quot;path_to_your_webapp_from_root&quot; debug=&quot;0&quot; reloadable=&quot;true&quot; /&gt;
	&lt;Valve className=&quot;org.apache.catalina.valves.AccessLogValve&quot; directory=&quot;logs&quot; prefix=&quot;virtual_log.&quot; suffix=&quot;.txt&quot; pattern=&quot;common&quot; /&gt;
&lt;/Host&gt;</pre>
<p>So in the end you will have to add this <strong>virtual_host_name</strong> to your windows hosts file and link to your VM ip address. Then you will be abble to access your like: <strong><em>virtual_host_name:8080</em></strong>.</p>
<p>If any question will occur don't hesitate to ask.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.art-coder.com/2011/09/19/how-to-create-virtual-host-for-app-on-tomcat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to setup synergy on windows</title>
		<link>http://www.art-coder.com/2010/12/05/how-to-setup-synergy-on-windows/</link>
		<comments>http://www.art-coder.com/2010/12/05/how-to-setup-synergy-on-windows/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:10:37 +0000</pubDate>
		<dc:creator>Eugene</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[synergy]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.art-coder.com/?p=169</guid>
		<description><![CDATA[For some time I was really frustrated, since using two PC's is already hard, but using separate mouse and keyboard.. Simply put it is a chaos. So I searched internet to find something, that could help me solve this issue. And then I found Synergy. In this post I will explain how to setup Synergy [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.art-coder.com/wp-content/uploads/2010/12/2010-12-05_130522.png"><img src="http://www.art-coder.com/wp-content/uploads/2010/12/2010-12-05_130522.png" alt="Synergy" title="Synergy" width="211" height="76" class="alignright size-full wp-image-170" /></a></p>
<p>For some time I was really frustrated, since using two PC's is already hard, but using separate mouse and keyboard..<br />
<strong><em>Simply put it is a chaos.</em></strong></p>
<p>So I searched internet to find something, that could help me solve this issue. And then I found <strong>Synergy</strong>.<br />
<span id="more-169"></span></p>
<p>In this post I will explain how to setup Synergy on Windows machine. It's quite easy.</p>
<p>Since I have only Windows XP and Windows 7 at the moment I can explain only how to setup Synergy between those two.</p>
<p><strong>Setup when Windows7 is PRIMARY OS.</strong></p>
<ul>
<li>Choose a name for your PC</li>
<li class="liml15">Go to Advanced</li>
<li class="liml15">In <em>Screen Name</em> field enter your desired name. <em>i.e.: </em><strong>windows7</strong></li>
<li class="liml15">OK.</li>
</ul>
<p><a href="http://www.art-coder.com/wp-content/uploads/2010/12/screen1.png"><img src="http://www.art-coder.com/wp-content/uploads/2010/12/screen1.png" alt="" title="screen1" width="466" height="360" class="aligncenter size-full wp-image-188" /></a></p>
<ul>
<li>Configure relationship between two computers</li>
<li class="liml15">Choose: Share this computer's keyboard and mouse (server)</li>
<li class="liml15">Go to configure and in top menu add computers. ( maybe it's not important don't know that for sure )</li>
<li class="liml30">+ -> windows7</li>
<li class="liml30">+ -> xp</li>
<li class="liml15">Now in the lower part of the form you need to set relations.</li>
<li class="liml30"><em>i.e.:</em></li>
<li class="liml45"><strong>1.</strong> right | windows7 | xp</li>
<li class="liml45"><strong>2.</strong> left  | xp       | windows7</li>
</ul>
<p><a href="http://www.art-coder.com/wp-content/uploads/2010/12/screen2.png"><img src="http://www.art-coder.com/wp-content/uploads/2010/12/screen2.png" alt="" title="screen2" width="673" height="384" class="aligncenter size-full wp-image-199" /></a></p>
<p><a href="http://www.art-coder.com/wp-content/uploads/2010/12/screen3.png"><img src="http://www.art-coder.com/wp-content/uploads/2010/12/screen3.png" alt="" title="screen3" width="673" height="384" class="aligncenter size-full wp-image-200" /></a></p>
<ul>
<li><strong>That should be all settings you're required to setup.</strong></li>
<li class="litxtu pt15">Now push start and on the other computer in field: Use another computer's shared keyboard and mouse ( client ) place IP address of computer running as ( server )</li>
</ul>
<p>If you still have any question about it, feel free to ask them here.</p>
<p>You can download <strong>Synergy</strong> from <a href="http://synergy-plus.googlecode.com/files/synergy-plus-1.3.4-Windows-x86-r1.exe">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.art-coder.com/2010/12/05/how-to-setup-synergy-on-windows/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Getting rid of Ubuntu old core versions in Grub</title>
		<link>http://www.art-coder.com/2010/08/20/getting-rid-of-ubuntu-old-core-versions-in-grub/</link>
		<comments>http://www.art-coder.com/2010/08/20/getting-rid-of-ubuntu-old-core-versions-in-grub/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 18:40:52 +0000</pubDate>
		<dc:creator>Eugene</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[core]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.art-coder.com/?p=116</guid>
		<description><![CDATA[The reason for this post is hilarious. In my life time I installed and over installed Ubuntu for period of times, but every time I had to ask my buddy or Google about removing annoying old Ubuntu core versions from Grub configs and from /boot directory. Well, now I will describe those two simple steps [...]]]></description>
			<content:encoded><![CDATA[<p>The reason for this post is hilarious. In my life time I installed and over installed Ubuntu for period of times, but every time I had to ask my buddy or Google about removing annoying old Ubuntu core versions from Grub configs and from /boot directory. Well, now I will describe those two simple steps for those who have same problem as I did.</p>
<p><span id="more-116"></span></p>
<h2>First Step: Remove old core files</h2>
<p>Actually the order of those steps doesn't change anything, but logicaly I see it like this.</p>
<blockquote><p><strong>NB!</strong> I have to confess I didn't remove those files I just moved them to another place where I have more free space, but it's for you to deside what to do with them.</p>
</blockquote>
<ul>
<li>
<p>Open your <code>/boot</code> directory. There you will see all those core files.</p>
</li>
<li>
<p>Next I just moved old versions to other directory. Last time I had those versions: <strong>2.6.32-21, 2.6.32-22, 2.6.32-23, 2.6.32-24</strong>. My current and I think newest version is <strong>2.6.32-24</strong>. For safety purposes I leave to last versions: *23, *24.</p>
</li>
<li>
<p>If you wish to store those old versions create some folder. I would recommend <code>$USER</code> directory. (Optional)</p>
</li>
<li>
<p>If you chose step above, then do the following (in my case it was): <br /><code>sudo mv /boot/*2.6.32-21* /home/$USER/dir/</code><br />If you want to delete those files, then do following: <br /><code>sudo rm -f /boot/*2.6.32-21*</code></p>
</li>
</ul>
<h2>Second Step: Edit grub.cfg (or menu.lst)</h2>
<ul>
<li>
<p>Since I have <strong>grub.cfg</strong> I will describe how to edit <em>it</em>. Open <code>/boot/grub/grub.cfg</code> from terminal <code>gksudo gedit /boot/grub/grub.cfg</code>.</p>
</li>
<li>
<p>Between this line <br /><code>### BEGIN /etc/grub.d/10_linux ###</code> <br />and this <br /><code>### END /etc/grub.d/10_linux ###</code><br /> you will find all those versions you see in "Grub Loader".</p>
</p>
</li>
<li>
<p>Find the versions you deleted or moved and delete those lines or comment them <code>###</code>.</p>
</li>
</ul>
<h2>Conclusion</h2>
<p>As you could see those steps where easy as "a b c". Still if you have any questions ask them in comments or <a href="http://twitter.com/netjunky88">@netjunky</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.art-coder.com/2010/08/20/getting-rid-of-ubuntu-old-core-versions-in-grub/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Little bit about encoding</title>
		<link>http://www.art-coder.com/2010/06/20/little-bit-about-encoding/</link>
		<comments>http://www.art-coder.com/2010/06/20/little-bit-about-encoding/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 15:31:56 +0000</pubDate>
		<dc:creator>Eugene</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://www.art-coder.com/?p=75</guid>
		<description><![CDATA[Well, it was a tremendous test for me. Yesterday I got stuck with problem related to encoding. Believe me when I say it was one hell of a night. I tried so many things to solve my problem, that my fingers started to hurt. Google received a lot of queries from me Now we are [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it was a tremendous test for me. Yesterday I got stuck with problem related to encoding. Believe me when I say it was one hell of a night. I tried so many things to solve my problem, that my fingers started to hurt. Google received a lot of queries from me <img src='http://www.art-coder.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Now we are best mates.<br />
<span id="more-75"></span><br />
So problem was with how my records were displayed in database. I tried to make multi-language application in PHP, MySQL. When I added for example new user with russian nickname it came out as some gibberish. Well I never actually thought about encoding. Never had to <img src='http://www.art-coder.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Now I had to face a large scale problem. Well when I reached, that point I started to communicate with Google. I read a large stack of articles about encoding. A big help for me was specifically one article <a href="http://www.joelonsoftware.com/articles/Unicode.html"><em>"The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)"</em></a> I recommend it to everyone who will have, that problem. Explains quite a lot.</p>
<p>Now some steps for having a good multi-language website.</p>
<ul>
<li>Mainly your files have to be in "UTF-8 without BOM"</li>
<li>Secondly all your webpages must contain in head at least meta tag<br /><code>&lt;meta http-equiv="Content-Type" content="text/html;  charset=utf-8" /&gt;</code></li>
<li>Next is step for database. Choose collation of database between <code>utf8_general_ci</code> or <code>utf8_unicode_ci</code>. I prefer <code>utf8_unicode_ci</code> it is slower, but more accurate.</li>
<li>And about this step I didn't know. That's why I had my problem. After connecting to database you need, to execute query <code>mysql_query("SET NAMES utf8");</code></li>
</ul>
<p><em>IMHO now you probably have done everything in your power.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.art-coder.com/2010/06/20/little-bit-about-encoding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Viva Las Vegas</title>
		<link>http://www.art-coder.com/2010/05/02/viva-las-vegas/</link>
		<comments>http://www.art-coder.com/2010/05/02/viva-las-vegas/#comments</comments>
		<pubDate>Sun, 02 May 2010 20:31:33 +0000</pubDate>
		<dc:creator>Eugene</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.art-coder.com/?p=66</guid>
		<description><![CDATA[Hey everyone. I think you will be stumped when you will see the title of this webpage and post about Las Vegas together and even a small, but beatiful song. Well, what can I say, I'm many-sided human) I heard this song on the radio and somehow all thoughts about being in Las Vegas came [...]]]></description>
			<content:encoded><![CDATA[<p>Hey everyone. I think you will be stumped when you will see the title of this webpage and post about Las Vegas together and even a small, but beatiful song. Well, what can I say, I'm many-sided human) I heard this song on the radio and somehow all thoughts about being in Las Vegas came to me.<br />
Hope you will enjoy this small post and great song.<br />
For all who love the game.<br />
<span id="more-66"></span></p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/uPuKoqu6kMk&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/uPuKoqu6kMk&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<blockquote><p>The content of the post will probably appear later, but for now if you want feel free to listen to this song.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.art-coder.com/2010/05/02/viva-las-vegas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trying to get a hang of MVC</title>
		<link>http://www.art-coder.com/2010/03/26/trying-to-create-my-own-mvc-example/</link>
		<comments>http://www.art-coder.com/2010/03/26/trying-to-create-my-own-mvc-example/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 09:54:29 +0000</pubDate>
		<dc:creator>Eugene</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Structure]]></category>
		<category><![CDATA[mvc]]></category>

		<guid isPermaLink="false">http://www.art-coder.com/?p=47</guid>
		<description><![CDATA[Yesterday I tried to make something that {would &#124; could} be an example of MVC model. At least I thought that I understood how it should work correctly, but... Well in this post you can find a source code of what is done at the moment or you can fork it on http://codaset.com/jeserkin/elite-systems. Please don't [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I tried to make something that {would | could} be an example of MVC model. At least I thought that I understood how it should work correctly, but... Well in this post you can find a source code of what is done at the moment or you can fork it on <a href="http://codaset.com/jeserkin/elite-systems">http://codaset.com/jeserkin/elite-systems</a>.<br />
Please don't judge for my style of writing and file/folder architecture. It all should be as simple as possible. Maybe not too logical, but still.<br />
<span id="more-47"></span><br />
Also I made a pretty small .htaccess file for simple url rewriting. It is easier at the moment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.art-coder.com/2010/03/26/trying-to-create-my-own-mvc-example/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Welcome!</title>
		<link>http://www.art-coder.com/2010/03/10/hello-world/</link>
		<comments>http://www.art-coder.com/2010/03/10/hello-world/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 18:29:55 +0000</pubDate>
		<dc:creator>Eugene</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.art-coder.com/?p=1</guid>
		<description><![CDATA[Hello! Finally I got time to create my blog. I am hoping to post here works, which we do with our team and also interesting articles and so on. Hope you will be interested in reading this "coming soon" material. For now that's it.]]></description>
			<content:encoded><![CDATA[<p>Hello!</p>
<p>Finally I got time to create my blog. I am hoping to post here works, which we do with our team and also interesting articles and so on. Hope you will be interested in reading this "coming soon" material.</p>
<p>For now that's it.<br />
<span id="more-1"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.art-coder.com/2010/03/10/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.art-coder.com @ 2012-05-20 06:06:12 -->
