<?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>Sanrez&#039;s Blog</title>
	<atom:link href="http://blog.keithzerna.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.keithzerna.com</link>
	<description>Sci-Fi, Programming, Tech and other things</description>
	<lastBuildDate>Fri, 23 Dec 2011 23:57:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Backing up Newsgator files with Powershell</title>
		<link>http://blog.keithzerna.com/2011/12/backing-up-newsgator-files-with-powershell/</link>
		<comments>http://blog.keithzerna.com/2011/12/backing-up-newsgator-files-with-powershell/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 04:48:19 +0000</pubDate>
		<dc:creator>Keith Zerna</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.keithzerna.com/?p=165</guid>
		<description><![CDATA[I use Newsgator to get my RSS feeds. It still works even with the latest version of Outlook. I have been looking for another RSS reader that works within Outlook but always come back to Newsgator. I regularly backup the files but do it manually as I have to unhide the hidden files on the [...]]]></description>
			<content:encoded><![CDATA[<p>I use Newsgator to get my RSS feeds. It still works even with the latest version of Outlook.  I have been looking for another RSS reader that works within Outlook but always come back to Newsgator.  </p>
<p>I regularly backup the files but do it manually as I have to unhide the hidden files on the C drive.  Navigate to the directory where the files are located and copy them to another location.  And then remember to hide the hidden files again on the C drive.  </p>
<p>In the end, I decided to write a script that copies the files from the Newsgator directory to another location that is specified.</p>
<p>The Powershell script can be ran each day or once a week.  To use the script, you need to have Newsgator installed along with Powershell.</p>
<p>If you are running Windows 7 and Windows Server 2008 R2, you have Powershell already installed.</p>
<p>if you are running Windows Vista, XP.  You need to download Powershell. You can download PowerShell <a href="http://go.microsoft.com/fwlink/?LinkID=151321" title="Powershell 2.0 download for Windows Vista, XP">here</a>.</p>
<p>Before you run it, a couple of things should be changed in the script.</p>
<p>The destDir variable creates a folder on the D drive.  You can leave or change the folder name but the drive should be changed.  The D drive is where I have all my files and data stored.  I put a date at the end of the folder as I like to have the date it was copied over.</p>
<p>In the src variable, replace xxxx with your user name on the C drive. The user name is your login name as well.  For example, if the user name is Acme it would be C:\Users\Acme\&#8230;.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"># Setup the local variables
&nbsp;
# Set the source directory and get all the files <span style="color: #000066; font-weight: bold;">in</span> the directory
$src <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;C:<span style="color: #000099; font-weight: bold;">\U</span>sers<span style="color: #000099; font-weight: bold;">\x</span>xxx<span style="color: #000099; font-weight: bold;">\A</span>ppData<span style="color: #000099; font-weight: bold;">\R</span>oaming<span style="color: #000099; font-weight: bold;">\R</span>AI<span style="color: #000099; font-weight: bold;">\N</span>ewsGator<span style="color: #000099; font-weight: bold;">\*</span>&quot;</span>
&nbsp;
# Get the date and change the <span style="color: #339933;">/</span> to <span style="color: #339933;">-</span> <span style="color: #000066; font-weight: bold;">as</span> Windows will get confused when
# creating <span style="color: #003366; font-weight: bold;">new</span> directories.
&nbsp;
$currDate <span style="color: #339933;">=</span> Get<span style="color: #339933;">-</span>Date
$NewDate <span style="color: #339933;">=</span> $currDate.<span style="color: #660066;">ToShortDateString</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
$NewDate <span style="color: #339933;">=</span> $NewDate.<span style="color: #660066;">Replace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;/&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;-&quot;</span><span style="color: #009900;">&#41;</span>
&nbsp;
# Set the destination directory <span style="color: #000066; font-weight: bold;">with</span> the <span style="color: #003366; font-weight: bold;">new</span> Date
$destDir <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;D:<span style="color: #000099; font-weight: bold;">\N</span>ewsGator Backup - &quot;</span> <span style="color: #339933;">+</span> $NewDate
&nbsp;
# Test <span style="color: #000066; font-weight: bold;">if</span> the path exists
<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>Test<span style="color: #339933;">-</span>Path $destDir<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    Write<span style="color: #339933;">-</span>Host <span style="color: #3366CC;">&quot;Directory exists&quot;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000066; font-weight: bold;">else</span>
<span style="color: #009900;">&#123;</span>
    #Write<span style="color: #339933;">-</span>Host <span style="color: #3366CC;">&quot;**does not exist&quot;</span>
    # Create destination directory
    New<span style="color: #339933;">-</span><span style="color: #000066; font-weight: bold;">Item</span> $destDir <span style="color: #339933;">-</span>type directory <span style="color: #339933;">-</span>force 
    Write<span style="color: #339933;">-</span>Host <span style="color: #3366CC;">&quot;Directory created&quot;</span>    
<span style="color: #009900;">&#125;</span>
&nbsp;
# Copy the files to the directory
Copy<span style="color: #339933;">-</span><span style="color: #000066; font-weight: bold;">Item</span> $src $destDir
Write<span style="color: #339933;">-</span>Host <span style="color: #3366CC;">&quot;Files copied over&quot;</span></pre></div></div>

<p>Copy the script above.  Open Notepad and paste the code in.  Save it to a location on your hard drive and name it NGFiles.ps1 </p>
<p>Create a new document in Notepad and paste the following line in.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">powershell <span style="color: #339933;">-</span>executionpolicy bypass <span style="color: #339933;">-</span>File NGFiles.<span style="color: #660066;">ps1</span></pre></div></div>

<p>Save it as NGBat.bat.  This file must end in .bat as it is a batch file.</p>
<p>When you want to save the files in the Newsgator directory, open a command prompt. </p>
<p>Navigate to where you saved the batch file and type in NGBat.</p>
<p>This will copy the files over to the directory.  </p>
<p>If you don&#8217;t want to type in the code, I have attached a zip file <a href='http://blog.keithzerna.com/wp-content/uploads/2011/12/ngbat.zip'>NGBat Files archive</a>.  Download and extract to a location.  </p>
<p>I have tested it and it works on my machine but as always be careful when running scripts from the Internet.  </p>
<p>Hope this script is useful to someone.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.keithzerna.com/2011/12/backing-up-newsgator-files-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook Tip : Message Options in Outlook 2010</title>
		<link>http://blog.keithzerna.com/2011/09/outlook-tip-message-options-in-outlook-2010/</link>
		<comments>http://blog.keithzerna.com/2011/09/outlook-tip-message-options-in-outlook-2010/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 06:57:15 +0000</pubDate>
		<dc:creator>Keith Zerna</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://blog.keithzerna.com/?p=149</guid>
		<description><![CDATA[In previous versions of Outlook, right-clicking on the message and selecting options, you could see the details of the message.  This allowed you to see the headers. In Outlook 2010, this was removed from the pop-up menu.  It can easily be added to the Quick Launch toolbar. Select the File Tab and then Options on the [...]]]></description>
			<content:encoded><![CDATA[<p>In previous versions of Outlook, right-clicking on the message and selecting options, you could see the details of the message.  This allowed you to see the headers.</p>
<p>In Outlook 2010, this was removed from the pop-up menu.  It can easily be added to the Quick Launch toolbar.</p>
<p>Select the File Tab and then Options on the left hand side.</p>
<p>The Options window appears.  Select Quick Access Toolbar on the left hand side.</p>
<p><a href="http://blog.keithzerna.com/wp-content/uploads/2011/09/Outlook-Options-Dialog.png"><img class="alignnone size-medium wp-image-151" title="Outlook Options Dialog" src="http://blog.keithzerna.com/wp-content/uploads/2011/09/Outlook-Options-Dialog-300x244.png" alt="" width="300" height="244" /></a></p>
<p>The list on the left are commands in Outlook and the list on the right is the Quick Access toolbar.</p>
<p>In the &#8216;Choose Commands from&#8217; drop down list, select &#8216;All Commands&#8217;.</p>
<p>All of the commands appear in the left hand column underneath the drop down list.</p>
<p>To get there quicker, select the first item and type m.  Scroll down until Message Options is found.  You can just scroll down until it is found as well.</p>
<p>Click on it and select the Add Button.  This adds the command to the Quick Access toolbar.</p>
<p>This command can be moved up or down by selecting it and using the up or down arrow on the right hand side.  A seperator can be added also by finding it in the commands list and adding it to the Quick Access toolbar.</p>
<p>Click Okay to save the toolbar changes or Cancel to dismiss them.</p>
<p>The finished toolbar might look like the following figure.</p>
<p><a href="http://blog.keithzerna.com/wp-content/uploads/2011/09/Quick-Access-toolbar.png"><img class="alignnone size-full wp-image-150" title="Quick Access toolbar" src="http://blog.keithzerna.com/wp-content/uploads/2011/09/Quick-Access-toolbar.png" alt="Quick Access Toolbar" width="170" height="23" /></a></p>
<p>A message can be selected and then the Message Options can be chosen.  A dialog appears with the details of the message with the Internet Headers.</p>
<p><a href="http://blog.keithzerna.com/wp-content/uploads/2011/09/Message-Options-Dialog.png"><img class="alignnone size-medium wp-image-159" title="Message Options Dialog" src="http://blog.keithzerna.com/wp-content/uploads/2011/09/Message-Options-Dialog-300x267.png" alt="" width="300" height="267" /></a></p>
<p>This shows the details of the message.  This is useful for checking duplicate messages.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.keithzerna.com/2011/09/outlook-tip-message-options-in-outlook-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eurovision 2011</title>
		<link>http://blog.keithzerna.com/2011/07/eurovision-2011/</link>
		<comments>http://blog.keithzerna.com/2011/07/eurovision-2011/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 05:12:43 +0000</pubDate>
		<dc:creator>Keith Zerna</dc:creator>
				<category><![CDATA[Eurovision]]></category>

		<guid isPermaLink="false">http://blog.keithzerna.com/?p=116</guid>
		<description><![CDATA[Eurovision 2011 was shown in Australia from the 13th to 15th May 2011. It was a great three nights of fun and entertainment. It had quite a few good songs as well. It was great to have Italy back in the competition. I&#8217;ve marked my calendar for next years show. I would have liked to [...]]]></description>
			<content:encoded><![CDATA[<p>Eurovision 2011 was shown in Australia from the 13th to 15th May 2011.</p>
<p>It was a great three nights of fun and entertainment. It had quite a few good songs as well.</p>
<p>It was great to have Italy back in the competition.</p>
<p>I&#8217;ve marked my calendar for next years show.</p>
<p>I would have liked to have seen Germany win again.  Lena&#8217;s song was very good.</p>
<p>There wasn&#8217;t much great songs as it was last year.</p>
<p>My selection of songs for this year are as follows:</p>
<p><strong>Lena</strong></p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/44ydDZlsruk?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/44ydDZlsruk?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Dino Merlin</strong></p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/urqhlnWLXxs?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/urqhlnWLXxs?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Hotel FM</strong></p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/7PnaTmV5I1Q?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/7PnaTmV5I1Q?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Nina</strong></p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/jC8hu_9lonw?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/jC8hu_9lonw?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Mika Newton</strong></p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/Jtfetx1u8I0?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Jtfetx1u8I0?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Raphael Gualazzi</strong></p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/tO0Ih3q4PSE?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/tO0Ih3q4PSE?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Ell/Nikki</strong></p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/eG2uNbNRkAw?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/eG2uNbNRkAw?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Alexej Vorobjov</strong></p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/rpiXxV3y8H0?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/rpiXxV3y8H0?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Amaury Vassili</strong></p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/uEb7hRo-Qyk?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/uEb7hRo-Qyk?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Zdob si Zdub</strong></p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/GXTm9yKP4_4?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/GXTm9yKP4_4?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>At first I didn&#8217;t really like Ireland&#8217;s entry.  Listening to it again, it was okay. Not number one but listenable. I&#8217;ve only seen Jedward once on the Jonathan Ross show some time ago.</p>
<p>Looking forward to next years contest.</p>
<p>One day I&#8217;ll get over to see Eurovision live in person.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.keithzerna.com/2011/07/eurovision-2011/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Outlook Tip : Compacting PST Files regularly</title>
		<link>http://blog.keithzerna.com/2011/04/outlook-tip-compacting-pst-files-regularly/</link>
		<comments>http://blog.keithzerna.com/2011/04/outlook-tip-compacting-pst-files-regularly/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 07:22:58 +0000</pubDate>
		<dc:creator>Keith Zerna</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://blog.keithzerna.com/?p=103</guid>
		<description><![CDATA[When you delete or move messages around in PST files, the PST files can get fragmented.  Outlook does compact the PST files slowly in the background but you should compact at least once a month depending on how many messages you delete.  This will recover disk space back quicker as well. To do this manually, [...]]]></description>
			<content:encoded><![CDATA[<p>When you delete or move messages around in PST files, the PST files can get fragmented.  Outlook does compact the PST files slowly in the background but you should compact at least once a month depending on how many messages you delete.  This will recover disk space back quicker as well.</p>
<p>To do this manually, right-click on the PST file you want to compact.  The properties dialog appears.</p>
<p><a href="http://blog.keithzerna.com/wp-content/uploads/2011/04/Outlook-PST-File-Properties.png"><img class="alignnone size-medium wp-image-107" title="Outlook PST File Properties" src="http://blog.keithzerna.com/wp-content/uploads/2011/04/Outlook-PST-File-Properties-232x300.png" alt="" width="232" height="300" /></a></p>
<p>Click on the advanced button and the following dialog appears.</p>
<p><a href="http://blog.keithzerna.com/wp-content/uploads/2011/04/Outlook-PST-Advanced-Properties.png"><img class="alignnone size-medium wp-image-105" title="Outlook PST Advanced Properties" src="http://blog.keithzerna.com/wp-content/uploads/2011/04/Outlook-PST-Advanced-Properties-300x293.png" alt="PST Advanced Properties" width="300" height="293" /></a></p>
<p>Click on the Compact Now button and the progress window appears.</p>
<p><a href="http://blog.keithzerna.com/wp-content/uploads/2011/04/Outlook-PST-Compacting-Window.png"><img class="alignnone size-medium wp-image-106" title="Outlook PST Compacting Window" src="http://blog.keithzerna.com/wp-content/uploads/2011/04/Outlook-PST-Compacting-Window-300x97.png" alt="PST Progress Window" width="300" height="97" /></a></p>
<p>Depending on how large the PST file and the number of messages you have deleted, it will take a while.  Once finished, click the Okay button twice to dismiss the dialogs.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.keithzerna.com/2011/04/outlook-tip-compacting-pst-files-regularly/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>XNA 4 Graphics Card error</title>
		<link>http://blog.keithzerna.com/2011/04/xna-4-graphics-card-error/</link>
		<comments>http://blog.keithzerna.com/2011/04/xna-4-graphics-card-error/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 05:45:03 +0000</pubDate>
		<dc:creator>Keith Zerna</dc:creator>
				<category><![CDATA[XNA]]></category>

		<guid isPermaLink="false">http://blog.keithzerna.com/?p=64</guid>
		<description><![CDATA[We are working on an XNA game which will be released very soon.  When we upgraded from XNA 3.1  to XNA 4.0, we found it wouldn&#8217;t compile and run.  All submissions to Microsoft&#8217;s XBox Live Indie Games marketplace now only accept 4.0 submissions. If you have an old video card, an error might appear. You [...]]]></description>
			<content:encoded><![CDATA[<p>We are working on an XNA game which will be released very soon.  When we upgraded from XNA 3.1  to XNA 4.0, we found it wouldn&#8217;t compile and run.  All submissions to Microsoft&#8217;s XBox Live Indie Games marketplace now only accept 4.0 submissions.</p>
<p>If you have an old video card, an error might appear.</p>
<p><a href="http://blog.keithzerna.com/wp-content/uploads/2011/04/XNA4ErrorDialog.png"><img class="alignnone size-medium wp-image-65" title="XNA_4_Error_Dialog" src="http://blog.keithzerna.com/wp-content/uploads/2011/04/XNA4ErrorDialog-300x211.png" alt="Error dialog when running application" width="300" height="211" /></a></p>
<p>You will need to change the settings for XNA Game Studio.  Right click on the project and select properties.</p>
<p><a href="http://blog.keithzerna.com/wp-content/uploads/2011/04/XNA4ProjectSettings.png"><img class="alignnone size-medium wp-image-67" title="XNA 4 Project Settings" src="http://blog.keithzerna.com/wp-content/uploads/2011/04/XNA4ProjectSettings-300x98.png" alt="" width="300" height="98" /></a></p>
<p>Select the Use Reach option and then close the properties window.</p>
<p>Click on the Start Debuging (or press F5).  The application will run.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.keithzerna.com/2011/04/xna-4-graphics-card-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Favourite Songs of Eurovision 2010</title>
		<link>http://blog.keithzerna.com/2011/03/favourite-songs-of-eurovision-2010/</link>
		<comments>http://blog.keithzerna.com/2011/03/favourite-songs-of-eurovision-2010/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 01:05:00 +0000</pubDate>
		<dc:creator>Keith Zerna</dc:creator>
				<category><![CDATA[Eurovision]]></category>

		<guid isPermaLink="false">http://blog.keithzerna.com/?p=40</guid>
		<description><![CDATA[Eurovision will be on soon. It is the only thing on television I really look forward to each year. I usually like about five or six songs from the years contest.  Most of the songs in the 2010 contest I really liked. Below are my top favourites: Michael von der Heide – Il pleut de [...]]]></description>
			<content:encoded><![CDATA[<p>Eurovision will be on soon.  It is the only thing on television I really look forward to each year.</p>
<p>I usually like about five or six songs from the years contest.  Most of the songs in the 2010 contest I really liked.</p>
<p>Below are my top favourites:</p>
<ul> Michael von der Heide – Il pleut de l’or (Switzerland)<br />
Sieneke – Ik Ben Verliefd (Sha-la-lie) (The Netherlands)<br />
Didrik Solli-Tangen – My Heart Is Yours (Norway)<br />
Peter Nalitch &amp; Friends – Lost And Forgotten (Russia)<br />
3+2 – Butterflies (Belarus)<br />
Lena – Satellite (Germany)<br />
Juliana Pasha – It’s All About You (Albania)<br />
Daniel Diges – Algo Pequenito (Something Tiny) (Spain)<br />
Paula Seling &amp; Ovi – Playing With Fire (Romania)<br />
Vukasin Brajic – Thunder And Lightning (Bosnia &amp; Herzegovina)<br />
Giorgos Alkaios &amp; Friends – Opa (Greece)</ul>
<p>&nbsp;</p>
<p>Below is the other songs I do like to listen to:</p>
<ul> Filipa Azevedo – Ha Dias Assim (Portugal)<br />
Aisha – What For (Latvia)<br />
Alyosha – Sweet People (Ukraine)<br />
Anna Bergendahl – This Is My Life (Sweden)<br />
Ansambel Zlindra &amp; Kalamari – Narodnozabavni Rock (Slovenia)<br />
Chanee &amp; n’evergreen – In a Moment Like This (Denmark)<br />
Eva Rivas – Apricot Stone (Armenia)<br />
Feminnem – Lako je Sve (Croatia)<br />
Gjoko Taneski – Jas Ja Imam Silata (FYR Macedonia)<br />
Hera Bjork – Je Ne Sais Quoi (Iceland)<br />
Josh Dubovie – That Sounds Good To Me (United Kingdom)<br />
Kristina Pelakova – Horehronie (Slovakia)<br />
Kuunkuiskaajat – Tyolki Ellaa (Finland)<br />
Malcolm Lincoln – Siren (Estonia)<br />
maNga – We Could Be The Same (Turkey)<br />
Marcin Mrozinski – Legenda (Poland)<br />
Milan Stankovic – Ovo je Balkan (This Is the Balkans) (Serbia)<br />
Miroslav Kostadinov – Angel Si Ti (You Are An Angel) (Bulgarien)<br />
Safura – Drip Drop (Azerbaijan)<br />
Sofia Nizharadze – Shine (Georgia)<br />
Sunstroke Project &amp; Olia Tira – Run Away (Moldova)<br />
Thea Garrettt – My Dream (Malta)</ul>
<p>&nbsp;</p>
<p>I&#8217;m glad Lena won for Germany.</p>
<p>Would have been nice to have been there in person.  Maybe next year but depends on who wins this year.</p>
<p>Good luck to all of the countries who enter.  It is great Italy is back this year in the contest as well.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.keithzerna.com/2011/03/favourite-songs-of-eurovision-2010/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Figureprints for WoW and XBox Live</title>
		<link>http://blog.keithzerna.com/2011/03/figureprints-for-wow-and-xbox-live/</link>
		<comments>http://blog.keithzerna.com/2011/03/figureprints-for-wow-and-xbox-live/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 03:26:18 +0000</pubDate>
		<dc:creator>Keith Zerna</dc:creator>
				<category><![CDATA[World of Warcraft]]></category>

		<guid isPermaLink="false">http://blog.keithzerna.com/?p=24</guid>
		<description><![CDATA[As a World of Warcraft player, I have a few characters of different races.  I have two for the Horde and one for the Alliance.  It is interesting to play the game as a member of the Horde and then play it as an Alliance player.  There are slightly different quests, although things have changed [...]]]></description>
			<content:encoded><![CDATA[<p>As a World of Warcraft player, I have a few characters of different races.  I have two for the Horde and one for the Alliance.  It is interesting to play the game as a member of the Horde and then play it as an Alliance player.  There are slightly different quests, although things have changed in Cataclysm.</p>
<p>If you like your character, you can get it made in an actual figure for the shelf or desk.  Can also choose between the actual figure or a bust.  If you play the character all the time, you can have him (or her) on the desk next you .</p>
<p><a title="Figureprints" href="http://www.figureprints.com/">Figureprints</a> allows you to do this.  You select which server your character is located and have him pose in different positions (can have the weapons ready for battle).  There is also a video on the process for the statue being made as well.</p>
<p>Looks interesting but expensive if you want to get it sent to Australia.</p>
<p>Noticed that they are also doing XBox Live as well.  You can get your avatar made in to a figure as well.</p>
<p>Below is a picture of one of the characters ready to be chosen</p>
<p><a href="http://blog.keithzerna.com/wp-content/uploads/2011/03/Eccles-Wow-Figureprints-figure.png"><img class="alignnone size-thumbnail wp-image-37" title="Eccles Wow Figureprints figure" src="http://blog.keithzerna.com/wp-content/uploads/2011/03/Eccles-Wow-Figureprints-figure-150x150.png" alt="" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.keithzerna.com/2011/03/figureprints-for-wow-and-xbox-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

