<?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>The Old Gamer</title>
	<atom:link href="http://theoldgamer.pri.ee/tag/jpeg/feed/" rel="self" type="application/rss+xml" />
	<link>http://theoldgamer.pri.ee</link>
	<description>Blog about Life and games</description>
	<lastBuildDate>Wed, 24 Feb 2010 13:28:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Digging through problems</title>
		<link>http://theoldgamer.pri.ee/en/digging-through-problems/</link>
		<comments>http://theoldgamer.pri.ee/en/digging-through-problems/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 11:45:27 +0000</pubDate>
		<dc:creator>Alan Kesselmann</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[jpeg]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[PIL]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[stackless]]></category>

		<guid isPermaLink="false">http://theoldgamer.pri.ee/?p=63</guid>
		<description><![CDATA[Last week i wrote about how you can get help with just about everything, in the internet. Lately i have proven myself wrong several times though. Problems started when i wanted to try specific python version (stackless python) for learning stocket and threading programming. I thought that stackless might be a good place to start, [...]]]></description>
			<content:encoded><![CDATA[<p>Last week i wrote about how you can get help with just about everything, in the internet. Lately i have proven myself wrong several times though. Problems started when i wanted to try specific python version (stackless python) for learning stocket and threading programming. I thought that stackless might be a good place to start, since eve-online mmo is based on stackless python, though they have improved it alot if i understood their pycon presentation correctly</p>
<p>This story begins a week ago, about the time when i was writing my last post.</p>
<p><span id="more-63"></span>Before i wrote last post about getting help, i installed stackless python. I am not a serious programmer and i am not some linux hacker, but with little help from the google i could do it just fine. After writing the last post i found that my django projects did not work any more. When opening page at localhost i got server error instead.</p>
<p>Not beeing very good with linux (i installed web server, phpmyadmin, mysql, apache and everything else, following instructions at howtoforge &#8211; if you want to install ubuntu web server run google search on howtoforge perfect ubuntu server), i was puzzled where to start my search, so i posted question on stackoverflow. I was told to look for problems in my apache error log. Actually i was told to look for just error log in /var/log/. Going to /var/log/apache2/error.log from there was not very hard.</p>
<p>Error log contained very useful information. I found that mod_python was not working any more. Question about this problem stayed unanswered for a while. But in the end i was told that since i had installed new python, none of the modules compiled for last python version would work. Right <img src='http://theoldgamer.pri.ee/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> . I really could have used that information before installing stackles. But then i probably would not have installed it and i would never learned what i know now.</p>
<p>After spending two days hoping that there is easyer solution than compiling all the modules again, i gave up and started with compiling python-mysql. Finding the right package was bit hard, but i found it <a title="python-mysqldb" href="http://sourceforge.net/projects/mysql-python/" target="_blank">here</a>. When i started compiling it i found that i also needed setuptools. Quick search yielded what i needed and i got them both installed easy enough. Instead of mod_python i started using mod_wsgi for my project.</p>
<p>After that, the only thing i needed was PIL for my project also contained some image related operations (user mugshots), and django requires PIL for its imagefield validation. Finding PIL was not hard at all, but yet again i found that main library was not enough. I needed jpeg and freetype, which i downloaded and installed, just as easy as other libraries.</p>
<p>I think that after doing all this i can call myself above average linux user <img src='http://theoldgamer.pri.ee/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . In any case, thats where BIG problems begun &#8211; my django project worked, but failed to handle uploaded images. In fact it returned me validation error when i uploaded .jpg image.I tried opening the same image from python prompt and it worked fine, but since django still raised validation error i had to dig deeper. I had to get into something that was really above my head. So i looked up where this error is coming from. Found that it comes from fields.py Imagefield validation and i found that the exact line that raises the error is where it tried to do Image.load() with uploaded image. When i commented it out i saw why the error was risen &#8211; django showed me error page which told me that PIL could not find jpeg library.Now that really was a cold shower &#8211; after doing all that compiling getting error like that&#8230;</p>
<p>So in the end i still have not solved this problem. I guess that it is related to python pathing and i could solve it if i could remove the correct library that handles jpeg for old python and remove it. But so far all my questions about how to find it have gone unanswered. I have not given up, but since i wanted to try how easy it is to get Satchmo store up and running i reinstalled kubuntu. I will try this stackless problem again some day soon, since i still want to learn sockets and threading. After all i also want to create my own game!</p>
]]></content:encoded>
			<wfw:commentRss>http://theoldgamer.pri.ee/en/digging-through-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get help?</title>
		<link>http://theoldgamer.pri.ee/en/how-to-get-hel/</link>
		<comments>http://theoldgamer.pri.ee/en/how-to-get-hel/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 19:41:18 +0000</pubDate>
		<dc:creator>Alan Kesselmann</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://theoldgamer.pri.ee/?p=58</guid>
		<description><![CDATA[I started using computers quite early in my life. About when i was eleven or ten years old. I was interested in technology and was sort of drawn to computers. I was not afraid of figuring them out. But i did not want to write about myself here. I wanted to write about fear of [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-60" style="float: left; margin: 0px 10px 10px 0px;" title="Man screaming at computer" src="http://theoldgamer.pri.ee/wp-content/uploads/2009/08/scream-at-computer-300x200.jpg" alt="Man screaming at computer" width="300" height="200" />I started using computers quite early in my life. About when i was eleven or ten years old. I was interested in technology and was sort of drawn to computers. I was not afraid of figuring them out. But i did not want to write about myself here. I wanted to write about fear of computers.</p>
<p>While writing this post i understood though, that this is not what this text will be about.  This text will be about how to get help and how to solve your own problems. When i got my own computer, then among other things i had to (re)install windows, drivers, computer games and so on. Internet and search engines became my friends. I found out that most computer-related programs can be fixed quite easily if you want to. You just need to open browser and type in your search term. <span id="more-58"></span></p>
<p>There is a small trick though. You need to understand your problem well enough to be able to ask the right question. I guess some analytical thinking is required here, because entering &#8216;computer not working&#8217; into google will not get you anything useful.  If you run into any kind of trouble, then you can almost always see some kind of error message. Entering that error message as search phrase will often get you exactly what you need to solve your problem. If  you do not get any error message, then try describing what you did before your problem appeared?</p>
<p>The best places to get help from are forums. They are quite easy to find and easy to use. They are the best because you can get help from the people with similar problems. You should do your research before running to post your questions in forums. Always do your research. People who are too lazy to help themselves are usually seen as someone who does not deserve the help of others. When asking for your help you should describe your problem in as detailed manner as possible. Also list the stuff you have already tried to fix your problem.</p>
<p>Some of the best places that i have found to get help from are:</p>
<ul>
<li>HTML&amp;CSS &#8211; Sitepoint forums &#8211; http://www.sitepoint.com/forums/forumdisplay.php?f=53</li>
<li>jQuery javascript &#8211; google jquery group &#8211; http://groups.google.com/group/jquery-en</li>
<li>place for all programming questions &#8211; http://stackoverflow.com</li>
</ul>
<p>When you need help &#8211; hopefully you&#8217;ll get it from one of those sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://theoldgamer.pri.ee/en/how-to-get-hel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What makes games good games</title>
		<link>http://theoldgamer.pri.ee/en/what-makes-games-good-games/</link>
		<comments>http://theoldgamer.pri.ee/en/what-makes-games-good-games/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 20:46:33 +0000</pubDate>
		<dc:creator>Alan Kesselmann</dc:creator>
				<category><![CDATA[Games and gaming]]></category>

		<guid isPermaLink="false">http://theoldgamer.pri.ee/?p=26</guid>
		<description><![CDATA[As long there have been computers, there have also been computer games. Playing computer games has been one of my favourite past-time activities since i was first introduced to computers around year 1989/90 i think. The graphics was virtually non-existing back then, but still there were good  games and there were bad games. Since [...]]]></description>
			<content:encoded><![CDATA[<p>As long there have been computers, there have also been computer games. Playing computer games has been one of my favourite past-time activities since i was first introduced to computers around year 1989/90 i think. The graphics was virtually non-existing back then, but still there were good  games and there were bad games. Since that time computers have evolved a lot and so have games. The difference between good and bad has become even bigger than it used to be.<span id="more-26"></span>Since i ultimately wish to create a game that is the best for me, i have spent quite some time pondering over this whole &#8220;what makes games good games&#8221; issue.  Here&#8217;s some points which i think are crucial in making good game.</p>
<h3>1) Playability</h3>
<p>The game has to be easy to play. The learning curve should not be steep. Player should not be thrown deep into pit of endless meaningless options. Options that are important later in the game should be hidden, farther down the list or just invisible until they become important or useful. It has to be possible to get game action going within minutes after running the game.</p>
<p>This could be hard if the game itself is complex, but through user tests, trial-error and seeing what competitors have done can give very good examples of what makes game easily playable.</p>
<p>One very good example excellent playability is without a doubt World of Warcraft.</p>
<p><img class="size-full wp-image-29" title="World of Warcraft" src="http://theoldgamer.pri.ee/wp-content/uploads/2009/08/ss8743.jpg" alt="World of Warcraft" width="613" height="307" /></p>
<h3>2) The Story</h3>
<p>Game becomes quite meaningless if it does not involve any story. The story is what keeps you playing, otherwise you just find yourself pondering over why you keep doing &#8220;this&#8221; or &#8220;that&#8221;.  There has to be an answer, a reason why your in-game character has to do the stuff you do.  Good story has kept me playing games like Baldur&#8217;s Gate or F.E.A.R. to very late hours of the day.</p>
<p>I think that interesting npc&#8217;s with real personality also fall into this category as they improve the story and interaction with the game world alot. Good examples are Minsc in Baldur&#8217;s Gate or or Morte in Planescape Tormet. The speaking sword from Baldur&#8217;s Gate 2 is my all time favourite i think &#8211; &#8220;My last owner used to say that im sharp and edgy. He was such an ass!&#8221;<br />
<img class="size-full wp-image-32" title="F.E.A.R - First Encounter Assault Recon" src="http://theoldgamer.pri.ee/wp-content/uploads/2009/08/fear.jpg" alt="F.E.A.R - First Encounter Assault Recon" width="613" height="300" /></p>
<h3>3) Ability to Customize</h3>
<p>This is where many games get their fun part. One of the best examples for this category is without a doubt Elder scrolls series games &#8211; Morrowind and Oblivion. Same with All the forgotten realms games. I have started and restarted Baldur&#8217;s Gate 2 numerous times and i have taken at least 2 hours to start a game each time. I think i restarted Morrowind close to 10 times too just to tweak and retweak my character more and more.</p>
<p>Now i have seen the forums where people say that this kind of customisation is way too much. I agree. There has to be simpler way to create a char, but when you have gained more knowledge about the game you should be able to go in deep, REALLY deep if you want to and get the maximum out of your char.</p>
<p>Character customization is just one side of the coin (or should i say cubicle). Player should be able to customize more, much more, hotkeys, keybindings, skill/spell sets, viewport (unless it is really important to keep it out of players hands &#8211; if it is beeing used as a way to build tension or build more realistic view of the game). The player has to have as much freedom as possible.</p>
<p><img class="size-full wp-image-40" title="Example of oblivion customization" src="http://theoldgamer.pri.ee/wp-content/uploads/2009/08/oblivion.jpg" alt="Example of oblivion customization" width="613" height="326" /></p>
<h3>4) Restrict stuff, fix the bugs!</h3>
<p>If you had patience to read last point of this post, then you might think im contradicting myself here. Well i am not. What i mean is that players have to be kept from breaking certain limits that ruin game, playability, story and so on. Player has to be unable to do certain things like get to the last boss early in the game, become insanely powerful &#8211; basically get too much too fast. It is really important because the game will become boring then. It also feels silly and you cant take the game company seriously if they let such flaws pass.</p>
<p>It is also extremely annoying if the game has been pushed through development with millions of bugs. I think that Enter the Matrix game can be brought up as an example here. That piece of &#8220;#¤&#8221;#¤ was so bugged, that i still do not know how i managed to complete it.</p>
<p>So the point here is &#8211; the less bugs the better. Please give players quality products. Word travels fast these days. If you ship with bugs then you wont sell.</p>
<p><img class="size-full wp-image-41" title="Enter the Matrix screenshot" src="http://theoldgamer.pri.ee/wp-content/uploads/2009/08/matrix.jpg" alt="Enter the Matrix screenshot" width="613" height="300" /></p>
<h3>5) Balance</h3>
<p>There arent many sides to this story. Balance means balance. The hardship needs to be balanced and the pvp has to be balanced. This becomes harder if players have many options available. People can come up with solutions and combinations that your testing team did not figure out. Especially if your testing team is small. Balancing is hard -no doubt, but its worth the time spent on it. Balance keeps people playing because there is less things that push people away from the game. If people try and keep on trying and loosing because of game imbalance &#8211; it is probably one of the biggest things that makes players quit the game. It is just so frustrating when you cant do anything about your situation.</p>
<p>I wish i could be part of some game testing team, when they are balancing things. That would be cool to see.</p>
<p><img class="size-full wp-image-42" title="Starcraft screenshot" src="http://theoldgamer.pri.ee/wp-content/uploads/2009/08/starcraft.jpg" alt="Starcraft screenshot" width="613" height="285" /></p>
<h3>6) Details</h3>
<p>Details that you notice in a game (or don&#8217;t) are extremely important. Those are the things that you remember even after many years. Funny npc descriptions, conversations, movie clips or random things like Duke Nukem saying &#8220;What are you waiting for, Christmas?&#8221; when you went away from keyboard for too long, are the things that make game really cool. These are the things that start up whole new buzzmarketing chain. They also show that the developers have had fun with the game. It shows that they have had time to polish the game. I think they also love the thing, they work with, much more if they can put funny stuff, they come up with, into the game. I also always love to hear about the details others have noticed in the games.</p>
<p>Did you know that : &#8220;Duke Nukem 3D was one of the first games to employ a real-time audio effect to its sounds. If you went underwater, a calculated reverb was applied to sounds being played to make gunfire sound muffled and gurgly.&#8221; Source &#8211; <a title="Gamesradar - 101 game facts" href="http://www.gamesradar.com/f/101-game-facts-that-will-rock-your-world/a-20081112163943402015/p-4" target="_blank">www.gamesradar.com</a></p>
<p><img class="size-full wp-image-45" title="Duke nukem at strip bar" src="http://theoldgamer.pri.ee/wp-content/uploads/2009/08/duke3D.jpg" alt="Duke nukem at strip bar" width="613" height="372" /></p>
<h3>7) Replayability</h3>
<p>This is also one of the things that will keep people playing and talking about the game for a long time. This also means good publicity for game creators and makes players more interested in future games by same producers. I think there is no better example for game with excellent replayability than Baldurs Gate series. Both games were like good books that you want to read again and again. They both had numerous ways how to play the game.</p>
<p><img class="size-full wp-image-46" title="Baldurs Gate 2" src="http://theoldgamer.pri.ee/wp-content/uploads/2009/08/bgate.jpg" alt="Baldurs Gate 2" width="613" height="333" /></p>
<h3> <img src='http://theoldgamer.pri.ee/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Sound and graphics</h3>
<p>I think these are often least important things &#8211; look at this list. I still want to play games like BG2, Duke nukem 3d or Starcraft. Their graphics arent up to the par with current games, but so what? Other things are more important.</p>
<p>Good graphics, beautiful landscape, great and realistic sounds &#8211; all that improves game alot, but they are not essential</p>
<p><img class="size-full wp-image-47" title="Image of Farcray computergame" src="http://theoldgamer.pri.ee/wp-content/uploads/2009/08/farcry.jpg" alt="Image of Farcray computergame" width="613" height="448" /></p>
<p>So why dont all gaming companies make great games? I asked my friend this question and his guess was planning. Things just arent planned well enough. Schedules are too tight and in order to meet the dates they have to deliver crap.</p>
<p>I&#8217;ll try to keep these points in mind when i start working on my dream game. Whenever that happens.</p>
<p>Alan.</p>
]]></content:encoded>
			<wfw:commentRss>http://theoldgamer.pri.ee/en/what-makes-games-good-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Links and info for beginner blogger</title>
		<link>http://theoldgamer.pri.ee/en/links-and-info-for-beginner-blogger/</link>
		<comments>http://theoldgamer.pri.ee/en/links-and-info-for-beginner-blogger/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 11:04:44 +0000</pubDate>
		<dc:creator>Alan Kesselmann</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[blogging links]]></category>
		<category><![CDATA[blogging tips]]></category>
		<category><![CDATA[problems with blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://theoldgamer.pri.ee/?p=16</guid>
		<description><![CDATA[
I have always known that one day i will create my own blog as a first step of making myself visible and doing my own &#8220;thing&#8221;. For that reason i have gathered bunch of links and information about blogging and best blog CMS &#8211; Wordpress.
The reason why wordpress is good, is that it has very [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-17" style="float: left; margin-right: 10px;" title="Hand writing something" src="http://theoldgamer.pri.ee/wp-content/uploads/2009/08/hand-300x201.jpg" alt="Hand writing something" width="300" height="201" /></p>
<p>I have always known that one day i will create my own blog as a first step of making myself visible and doing my own &#8220;thing&#8221;. For that reason i have gathered bunch of links and information about blogging and best blog CMS &#8211; <a title="Blog content management system" href="http://wordpress.org">Wordpress</a>.</p>
<p>The reason why wordpress is good, is that it has very big community, huge userbase and most web designers know about it and design for it. Many web designer sites use wordpress as their site&#8217;s content management system too. With all the free design templates and plungs to enhance base functionality the Wordpress really is the best.<span id="more-16"></span></p>
<p>First look at these great tips from <a title="CatsWhoCode.com" href="http://www.catswhocode.com/blog/" target="_blank">Cats Who Code</a>:</p>
<ul>
<li><a title="8 tips to enhance your wordpress blog seo" href="http://www.catswhocode.com/blog/8-tips-to-enhance-your-wordpress-blog-seo" target="_blank">8 tips to enhance your wordpress blog seo</a></li>
<li><a title="10 tricks to make your wordpress theme stand out" href="http://www.catswhocode.com/blog/10-tricks-to-make-your-wordpress-theme-stand-out" target="_blank">10 tricks to make your wordpress theme stand out</a></li>
<li><a title="10 awesome .htaccsess hacks for wordpress" href="http://www.catswhocode.com/blog/10-awesome-htaccess-hacks-for-wordpress" target="_blank">10 awesome .htaccess hacks for wordpress</a></li>
<li><a title="10 tips plugins to get more comments on your wordpress blog" href="http://www.catswhocode.com/blog/10-tips-plugins-to-get-more-comments-on-your-wordpress-blog">10 tips &amp; plugins to get more comments on your wordpress blog</a></li>
<li><a title="top 10 wordpress hacks from june '09" href="http://www.catswhocode.com/blog/top-10-wordpress-hacks-from-june-09" target="_blank">top 10 wordpress hacks in june &#8216;09</a></li>
</ul>
<p>Few more useful pages:</p>
<ul>
<li><a title="wordpress SEO tips" href="http://www.turkhitbox.com/wordpress-seo" target="_blank">Wordpress SEO tips</a></li>
<li><a title="100+ wordpress tutorials from basic to advanced" href="http://speckyboy.com/2008/11/17/100-wordpress-video-tutorials-from-basic-to-advanced/">100+ wordpress tutorials from basic to advanced</a></li>
<li><a title="social bookmarking plugins to share your posts" href="http://speckyboy.com/2008/10/20/top-20-social-bookmaking-plugins-for-wordpress-share-your-posts/">Social bookmarking plugins to share your posts</a></li>
<li><a title="power tips for wordpress theme developers" href="http://www.smashingmagazine.com/2009/07/02/power-tips-for-wordpress-template-developers/">power tips for wordpress theme developers by smashingmagazine</a></li>
<li><a title="10 handy wordpress comments hacks" href="http://www.smashingmagazine.com/2009/07/23/10-wordpress-comments-hacks/">10 handy wordpress comments hacks by smashingmagazine</a></li>
<li><a title="15 jquery plugins to enhance your wordpress plugins" href="http://www.wpbeginner.com/plugins/15-plugins-to-unleash-the-invincible-power-of-jquery-and-wordpress/">15 jquery plugins to enhance your wordpress theme</a></li>
</ul>
<p>If you plan to design your own site, then check out these great theme collections:</p>
<ul>
<li><a title="web design resources, tutorials and articles" href="http://www.webdesignlessons.com/">Place i got this theme from &#8211; web design lessons</a></li>
<li><a title="30 free, amazing and versatile wordpress themes" href="http://speckyboy.com/2009/01/23/30-free-amazing-and-versatile-wordpress-27-themes/" target="_blank">30 free, amazing and versatile wordpress themes</a></li>
<li><a title="43 phenomally groundbreaking free wordpress themes" href="http://speckyboy.com/2008/06/26/42-phenomenally-groundbreaking-wordpress-themes-free-to-download/" target="_blank">43 phenomenally groundbreaking wordpress themes free to download</a></li>
<li><a title="15 fresh wordpress themes" href="http://www.inspiredm.com/2009/06/30/15-fresh-wordpress-themes-to-get-the-coolest-portfolio-for-you-or-your-studio/" target="_blank">15 fresh wordpress themes</a></li>
</ul>
<p>Now this is quite extensive list that helps you get great start for anybodys blog, but there are still some curious things anybody might encounter. The problems that i encountered had nothing to do with the lists above they were actually hosting related. Hosting can also be something that causes problems to bloggers. Your hosting could be in &#8216;bad neighbourhood&#8217;, meaning that the same hosting provider provides hosting for sites that are marked harmful or bad by search engines and beeing on similar ip to those can cause problems for your site. I hope this is something that will not be a problem to me, especially since i dont plan to be proffessional blogger.</p>
<p>All my problems were related to software used by hosting provider. My hosting provider &#8211; <a title="Web hosting" href="http://www.folderburg.com" target="_blank">Folderburg</a> &#8211; uses windows based servers which do not run apache as web server software. Most articles about web hosting, seo tips and so on are written from the point of view that the servers use apache software. Well my server does not and the stuff i had to figure out with the help of Folderburg help desk was:</p>
<ul>
<li>How to set wordpress show wordpress 404 not hosting 404 page</li>
<li>How to make human friendly urls working</li>
<li>How to fix site links to show correct url&#8217;s</li>
</ul>
<p>First two points are very well explained here : <a title="custom wordpress errors on iis7" href="http://ruslany.net/2008/12/enable-custom-errors-in-wordpress-on-iis-70/">ruslany.net</a>. This site has alot of info about using wordpress and windows server software together.  solution to last point has been explained by wodpress crew <a title="Changing site url" href="http://codex.wordpress.org/Changing_The_Site_URL#Quick_fix_method" target="_blank">here</a>.</p>
<p>Word of confidence to every beginner &#8211; if you are not afraid to get your &#8220;hands dirty&#8221;, then web has alot of articles about how to fix almost anything. The chance that you are first to encounter any problem is quite small, when it comes down to web &amp; internet. You only need to learn to ask right questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://theoldgamer.pri.ee/en/links-and-info-for-beginner-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting a blog</title>
		<link>http://theoldgamer.pri.ee/en/the-beginning/</link>
		<comments>http://theoldgamer.pri.ee/en/the-beginning/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 09:15:49 +0000</pubDate>
		<dc:creator>Alan Kesselmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://est243wp.myfolderburg.com/?p=1</guid>
		<description><![CDATA[
I have been thinking about my own blog or site for a decade now.  I have created few pages and dumped them. Because of i had no clear idea what i would or should write about.
I think i have it all figured out now. I will write about games! Actually i plan to write about [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-10" style="margin: 0px 10px 10px 0px;float:left;" title="Image of blue keyboard" src="http://est243wp.myfolderburg.com/wp-content/uploads/2009/07/keyboard-300x225.jpg" alt="Image of blue keyboard" width="300" height="225" /></p>
<p>I have been thinking about my own blog or site for a decade now.  I have created few pages and dumped them. Because of i had no clear idea what i would or should write about.<span id="more-1"></span></p>
<p>I think i have it all figured out now. I will write about games! Actually i plan to write about many things documenting some aspects of my (business) life. Reason behind this (and this blog name) is that i am getting older, i am getting new responsibilities, but i still want to play games and do silly things that boys do from age 5 to n+5. For that reason i will write about games (like i already said) and about playing games, about which games should be played and which ones should not. I will also write about why playing games with clear consciousness is becoming harder and what to do about it. After all this i will write about how anyone can create their own games nowadays and how i will succeed in doing that. I will write about obstacles i have to overcome and things i have to learn (not to mention stuff that i have to had learn so far).</p>
<p>What i will not write about is my personal life. Well&#8230; perhaps only a little.</p>
<p>So this is the beginning. I think there will be many interesting things to read.</p>
]]></content:encoded>
			<wfw:commentRss>http://theoldgamer.pri.ee/en/the-beginning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
