<?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>Psykar</title>
	<atom:link href="http://psykar.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://psykar.com</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 06:43:57 +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>NVIDIA multiple monitors on linux</title>
		<link>http://psykar.com/2011/12/nvidia-multiple-monitors-on-linux/</link>
		<comments>http://psykar.com/2011/12/nvidia-multiple-monitors-on-linux/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 01:49:54 +0000</pubDate>
		<dc:creator>Psykar</dc:creator>
				<category><![CDATA[Home]]></category>

		<guid isPermaLink="false">http://psykar.com/?p=290</guid>
		<description><![CDATA[The NVIDIA drivers on linux come with a nice utility: nvidia-settings Unfortunately when setting up multiple monitors it has no easy way of saving the config. You can save it to an xorg file, but the file created is much more than is required to set up multimonitors. The minimal xorg file I needed was [...]]]></description>
			<content:encoded><![CDATA[<p>The NVIDIA drivers on linux come with a nice utility: <code>nvidia-settings</code><br />
Unfortunately when setting up multiple monitors it has no easy way of saving the config.<br />
You can save it to an xorg file, but the file created is much more than is required to set up multimonitors.</p>
<p>The minimal xorg file I needed was (the entire file):<br />
<code>Section "Device"<br />
Identifier "Device0"<br />
Driver "nvidia"<br />
VendorName "NVIDIA Corporation"<br />
BoardName "GeForce 6600 GT"<br />
Option "TwinView" "1"<br />
Option "TwinViewXineramaInfoOrder" "DFP-0"<br />
Option "TwinViewOrientation" "LeftOf"</code></p>
<p>EndSection</p>
<p>I saved this file to (may be distro specific &#8211; I use archLinux)<br />
<code>/etc/X11/xorg.conf.d/10-monitors.conf</code></p>
<p>The only lines which may need changing are<br />
<code> Option "TwinViewXineramaInfoOrder" "DFP-0"<br />
Option "TwinViewOrientation" "LeftOf"</code></p>
<p>The first one is setting the main X monitor (the monitor that gdm&#8217;s login and gnome shells header bar appear on). You can find the appropriate value by doing an xorg export from <code>nvidia-settings</code><br />
The second line is not intuitive &#8211; it says which direction the &#8216;secondary&#8217; monitor is from the &#8216;primary&#8217;. This does not get the primary/secondary monitors from the <code>TwinViewXineramaInfoOrder</code> line unfortunately, but rather the &#8216;primary&#8217; monitor is the screen used when there is no xorg config.</p>
<p>Options are<br />
<code> "RightOf" (the default)<br />
"LeftOf"<br />
"Above"<br />
"Below"<br />
"Clone"</code></p>
<p><a href="ftp://download.nvidia.com/XFree86/Linux-x86/290.10/README/configtwinview.html">This page</a> from NVIDIA was quite helpful in setting this up.</p>
]]></content:encoded>
			<wfw:commentRss>http://psykar.com/2011/12/nvidia-multiple-monitors-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exporting facebook events to google calendar</title>
		<link>http://psykar.com/2011/05/exporting-facebook-events-to-google-calendar/</link>
		<comments>http://psykar.com/2011/05/exporting-facebook-events-to-google-calendar/#comments</comments>
		<pubDate>Sat, 21 May 2011 04:09:27 +0000</pubDate>
		<dc:creator>Psykar</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://psykar.com/?p=255</guid>
		<description><![CDATA[Just a small php script I&#8217;ve been using so Google Calendar actually shows private facebook events on your calendar. For some reason when Google Calendar sees an ics file with it&#8217;s class set to private, it thinks even you shouldn&#8217;t be able to see it on your own calendar :\ Get the ical link from [...]]]></description>
			<content:encoded><![CDATA[<p>Just a small php script I&#8217;ve been using so Google Calendar actually shows private facebook events on your calendar.<br />
For some reason when Google Calendar sees an ics file with it&#8217;s class set to private, it thinks even you shouldn&#8217;t be able to see it on your own calendar :\</p>
<p>Get the ical link from facebook by clicking &#8216;export events&#8217; on this page:<br />
<a href="https://www.facebook.com/?sk=events&amp;ap=1">https://www.facebook.com/?sk=events&amp;ap=1</a><br />
<code><br />
&lt;?php</p>
<p>$ical = "*link here*";</p>
<p>$file=file_get_contents($ical);<br />
$search="CLASS:PRIVATE";<br />
$replace="CLASS:PUBLIC";<br />
$output=str_replace($search,$replace,$file);<br />
header("Content-Type: text/Calendar");</p>
<p>// Give the file a name and force download<br />
header("Content-Disposition: inline; filename=events.ics");<br />
print_r($output);<br />
?&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://psykar.com/2011/05/exporting-facebook-events-to-google-calendar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video out of sync with audio in games</title>
		<link>http://psykar.com/2011/04/video-out-of-sync-with-audio-in-games/</link>
		<comments>http://psykar.com/2011/04/video-out-of-sync-with-audio-in-games/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 00:35:19 +0000</pubDate>
		<dc:creator>Psykar</dc:creator>
				<category><![CDATA[Home]]></category>

		<guid isPermaLink="false">http://psykar.com/?p=252</guid>
		<description><![CDATA[This problem has been frustrating me for ages. Almost every single game I played, the video appeared to run faster than the audio to match it, meaning the ends of all dialogue would be cut off &#8211; either by the next character starting to talk, or simply the end of the video it was matched [...]]]></description>
			<content:encoded><![CDATA[<p>This problem has been frustrating me for ages. Almost every single game I played, the video appeared to run faster than the audio to match it, meaning the ends of all dialogue would be cut off &#8211; either by the next character starting to talk, or simply the end of the video it was matched with.</p>
<p>A lot of forums seemed to think this was related to either sound or video cards, so I uninstalled, reinstalled and tried the default windows drivers for each. I tried disabling the HDMI optical audio on the graphics card because they apparently can interfere with onboard sound.</p>
<p>Finally I started wondering if the clocks timer was simply wrong. Doing a bit of googling for windows 7 x64 clock sync, <strong>I eventually came across a few people whose clocks seemed to run slowly when enabling an option called CIA1 on their motherboards BIOS</strong>. It didn&#8217;t mention anything about audio in games, but I figured it was worth a shot.</p>
<p>I&#8217;ve got a gigabyte motherboard on my home machine and like most of them, it had an option called <strong>CIA2 with the following options &#8220;Disabled, Cruise, Sports, Racing, Turbo, Full Thrust&#8221;</strong> of course with options like that, who&#8217;s going to leave that disabled, or simply select the cruise option? Mine was set to Turbo.</p>
<p>After putting up with this issue for over a year, <strong>turning CIA2 to disabled</strong> solved everything.<br />
Now I can enjoy Portal 2&#8242;s great voice acting without having to enable subtitles and ruin the experience <img src='http://psykar.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://psykar.com/2011/04/video-out-of-sync-with-audio-in-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Publishing shared google reader items to twitter continued!</title>
		<link>http://psykar.com/2011/04/publishing-shared-google-reader-items-to-twitter-continued/</link>
		<comments>http://psykar.com/2011/04/publishing-shared-google-reader-items-to-twitter-continued/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 07:12:55 +0000</pubDate>
		<dc:creator>Psykar</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://psykar.com/?p=240</guid>
		<description><![CDATA[So I&#8217;ve added another step to my grand plan of sharing links via google reader, and I think I&#8217;ve finally got twitter to work! It actually does facebook as well now! Previously I was using RSS Graffiti for Facebook, and attempting to use Feedburner for twitter posting. Now I&#8217;ve gone back to twitterfeed. I did [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve added another step to my grand plan of <a href="http://psykar.com/2011/03/publishing-shared-google-reader-items-to-twitter/">sharing links via google reader</a>, and I think I&#8217;ve finally got twitter to work!<br />
It actually does facebook as well now!</p>
<p>Previously I was using <a href="http://rssgraffiti.com/">RSS Graffiti</a> for Facebook, and attempting to use <a href="http://feedburner.google.com/">Feedburner</a> for twitter posting.<br />
Now I&#8217;ve gone back to <a href="twitterfeed.com/">twitterfeed</a>.<br />
I did try it originally but it seemed inconsistant and didn&#8217;t format the feed like I wanted.<br />
Now I&#8217;ve just used twitterfeed to import the feed which feedburner exports and it seems to all be working!</p>
<p>I tried out the post format of Twitterfeed to facebook as well, and it seems much nicer than the RSS Graffiti which I was using previously, although it&#8217;s served me well for a while now.</p>
<p>Maybe once I post a few photo based things I&#8217;ll see how it&#8217;s thumbnails work too!</p>
]]></content:encoded>
			<wfw:commentRss>http://psykar.com/2011/04/publishing-shared-google-reader-items-to-twitter-continued/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Publishing shared google reader items to twitter.</title>
		<link>http://psykar.com/2011/03/publishing-shared-google-reader-items-to-twitter/</link>
		<comments>http://psykar.com/2011/03/publishing-shared-google-reader-items-to-twitter/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 13:18:52 +0000</pubDate>
		<dc:creator>Psykar</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://psykar.com/?p=227</guid>
		<description><![CDATA[Seems Feedburner by google which I&#8217;ve been using up until now is unreliable with posting to twitter, so this is a half post on what I&#8217;ve done to try getting it working, and half a post trying to test if it works with my wordpress at least Because Google reader&#8217;s rss feed of shared items [...]]]></description>
			<content:encoded><![CDATA[<p>Seems <a href="http://feedburner.google.com">Feedburner</a> by google which I&#8217;ve been using up until now is unreliable with posting to twitter, so this is a half post on what I&#8217;ve done to try getting it working, and half a post trying to test if it works with my wordpress at least <img src='http://psykar.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Because Google reader&#8217;s rss feed of shared items is formatted a little strangely I made a short php script to parse it into a nicer format. OK, mainly getting rid of the annoying &#8216;Shared by &lt;username&gt; &#8216; bit.</p>
<blockquote><pre>
&lt;?php

$username = "Psykar";

$url = "http://www.google.com/reader/public/atom/user/10440293858886564202/state/com.google/broadcast";
$page = file_get_contents($url);

echo preg_replace('/Shared +by +'.$username.'/',null,$page);

?&gt;</pre>
</blockquote>
<p>To find your shared items url, just open reader, get the url which gets replaced, and remove the html entities %2F either side of the ID<br />
eg for mine:</p>
<pre>http://www.google.com/reader/view/#stream/user%2F10440293858886564202%2Fstate%2Fcom.google%2Freading-list</pre>
<p> is 10440293858886564202</p>
<p>Plug this ID into the URL above</p>
<pre>http://www.google.com/reader/public/atom/user/&lt;userid&gt;/state/com.google/broadcast</pre>
<p>I then used feedburner to import this php script (hosted on my server) and activated the &#8216;socialize&#8217; feature, which should be publishing all my shared items to twitter now, in a nice format.</p>
]]></content:encoded>
			<wfw:commentRss>http://psykar.com/2011/03/publishing-shared-google-reader-items-to-twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Replacing notepad on Vista</title>
		<link>http://psykar.com/2011/03/replacing-notepad-on-vista/</link>
		<comments>http://psykar.com/2011/03/replacing-notepad-on-vista/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 00:50:23 +0000</pubDate>
		<dc:creator>Psykar</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://psykar.com/?p=225</guid>
		<description><![CDATA[Having fun today trying to replace notepad on vista with my favourite text editor of late &#8211; Notepad++ I followed most of the instructions here: http://www.howtogeek.com/howto/12617/how-to-replace-notepad-in-windows-7/ and got the replacment notepad.exe file from here: http://notepad-plus.sourceforge.net/commun/misc/NppLauncher.bin.zip But found that upon trying to run it, I would get a very annoying warning: Despite my efforts, unchecking this [...]]]></description>
			<content:encoded><![CDATA[<p>Having fun today trying to replace notepad on vista with my favourite text editor of late &#8211; <a href="http://notepad-plus-plus.org/">Notepad++</a></p>
<p>I followed most of the instructions here:</p>
<p><a href="http://www.howtogeek.com/howto/12617/how-to-replace-notepad-in-windows-7/"> http://www.howtogeek.com/howto/12617/how-to-replace-notepad-in-windows-7/</a></p>
<p>and got the replacment notepad.exe file from here:</p>
<p><a href="http://notepad-plus.sourceforge.net/commun/misc/NppLauncher.bin.zip">http://notepad-plus.sourceforge.net/commun/misc/NppLauncher.bin.zip</a></p>
<p>But found that upon trying to run it, I would get a very annoying warning:</p>
<p><img class="alignnone" title="Security Warning" src="https://lh4.googleusercontent.com/_rl8Pvg-FCN4/TXlwRNY-dUI/AAAAAAAAE5g/XBlRbP2Aw54/SecurityWarning.jpg" alt="" width="414" height="308" /></p>
<p>Despite my efforts, unchecking this box would still produce the same error, even running as administrator.</p>
<p>Even going into the properties of the file and &#8216;unblocking&#8217; it wouldn&#8217;t stick.</p>
<p><img class="alignnone" src="https://lh5.googleusercontent.com/_rl8Pvg-FCN4/TXlxBI0n8gI/AAAAAAAAE5k/7rq_URKcGUE/SecurityWarning.jpg" alt="" width="377" height="513" /></p>
<p>&nbsp;</p>
<p>I found this blog post:</p>
<p><a href="http://blogs.xntrix.com/2007/09/replacing-notepad-on-windows-vista-with.html">http://blogs.xntrix.com/2007/09/replacing-notepad-on-windows-vista-with.html</a></p>
<p>But the links in it are dead!</p>
<p>&nbsp;</p>
<p>My solution in the end: Copy the notepad.exe file I had downloaded somewhere else, unblock it there then copy it into the directories mentioned.</p>
<p>Silly me for not doing that to start with &#8211; because obviously it&#8217;s not the same executable you find in the notepad++ program files directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://psykar.com/2011/03/replacing-notepad-on-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File recovery</title>
		<link>http://psykar.com/2010/12/file-recovery/</link>
		<comments>http://psykar.com/2010/12/file-recovery/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 02:10:42 +0000</pubDate>
		<dc:creator>Psykar</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://psykar.com/blog/?p=151</guid>
		<description><![CDATA[So someone left us with a corrupt USB stick at work a couple of days ago, no joy with that, but she had a USB stick which was still working which she had deleted the same data off recently, and it hadn&#8217;t been used since. After a crapload of mucking around and a lot of [...]]]></description>
			<content:encoded><![CDATA[<p>So someone left us with a corrupt USB stick at work a couple of days ago, no joy with that, but she had a USB stick which was still working which she had deleted the same data off recently, and it hadn&#8217;t been used since.<br />
  After a crapload of mucking around and a lot of reference to
  </p>
<p>
<a href="https://help.ubuntu.com/community/DataRecovery">https://help.ubuntu.com/community/DataRecovery</a><br />
<a href="http://forums.gentoo.org/viewtopic-t-365703.html">http://forums.gentoo.org/viewtopic-t-365703.html</a><br />
<a href="http://matt.matzi.org.uk/2008/07/03/reconstructing-heavily-damaged-hard-drives/">http://matt.matzi.org.uk/2008/07/03/reconstructing-heavily-damaged-hard-drives/</a>
</p>
<p>
  I combined elements of all the above to the following script which recovered most of the deleted files.  </p>
<p>The main trick was the arguments on icat &#8211; I was confused for a while because it was finding all the files, but only creating 4kb of them. Turns out I needed the -r -a arguments.</p>
<p>Script is below, run on a file created by the following command</p>
<pre style="padding-left: 30px;"># The -r argument is used to recover only deleted files
ils -r /media/Images/USBImage | awk -F '|' '{print $1}' &gt; /tmp/inodes</pre>
<pre style="padding-left: 30px;">#!/bin/sh
imgpath="/media/Images/USBImage"

# This was due to taking the raw disk data rather than just the partition
# The offset was found using autopsy - part of sleuth tools, used for this.
imgargs=" -f fat -o 63 ${imgpath} "
outpath="/media/Images/Recovered/"

for inode in $(cat /tmp/inodes) ; do

	ffind ${imgargs} $inode

	if [ $? -eq 0 ]
	then
		echo "INODE: $inode"
		INODEDIR=$(ffind ${imgargs} $inode | awk -F "* " '{print $2}')
	 	echo "INODEDIR: ${INODEDIR}"
		REALDIR=${outpath}$(dirname -- "$INODEDIR")
		FILENAME="${outpath}${INODEDIR}"
		mkdir -p "$REALDIR"</pre>
<pre style="padding-left: 30px;">		# I found this worked better than the method used by one of the links
		# to create directories. What happens is a directory inode may create
		# a file if a later file tries to write to a directory which IS a
		# file, the file is removed and the directory is created instead</pre>
<pre style="padding-left: 30px;">		if [ $? -eq 1 ]
		then
			rm -R "${REALDIR}"
			mkdir -p "${REALDIR}"
		fi

		echo "FILENAME: $FILENAME"
		#echo "${imgargs} $inode &gt; $FILENAME"
		icat -r -s ${imgargs} $inode &gt; "$FILENAME"

		echo ""
	fi
done</pre>
]]></content:encoded>
			<wfw:commentRss>http://psykar.com/2010/12/file-recovery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wooden letters in the mailbox?</title>
		<link>http://psykar.com/2010/08/wooden-letters-in-the-mailbox/</link>
		<comments>http://psykar.com/2010/08/wooden-letters-in-the-mailbox/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 08:38:02 +0000</pubDate>
		<dc:creator>Psykar</dc:creator>
				<category><![CDATA[Home]]></category>

		<guid isPermaLink="false">http://psykar.com/blog/?p=147</guid>
		<description><![CDATA[So I opened our mailbox to find black painted wooden letters taking up the whole thing &#8211; An &#8216;M&#8217;, a &#8216;N&#8217; and two &#8216;I&#8217;s. Viral marketing or some random stunt? *wanders off to google*]]></description>
			<content:encoded><![CDATA[<p>So I opened our mailbox to find black painted wooden letters taking up the whole thing &#8211; An &#8216;M&#8217;, a &#8216;N&#8217; and two &#8216;I&#8217;s.<br />
Viral marketing or some random stunt? *wanders off to google*</p>
]]></content:encoded>
			<wfw:commentRss>http://psykar.com/2010/08/wooden-letters-in-the-mailbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A park bench adventure among other things</title>
		<link>http://psykar.com/2010/08/a-park-bench-adventure-among-other-things/</link>
		<comments>http://psykar.com/2010/08/a-park-bench-adventure-among-other-things/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 16:25:20 +0000</pubDate>
		<dc:creator>Psykar</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://psykar.com/blog/?p=145</guid>
		<description><![CDATA[Salzburg was cute. Went on a biking tour around the &#8216;Sound of Music&#8217; movie locations. This was after wandering for 2 hours in the rain to find a place to stay &#8211; with almost everywhere booked out. Onward to Munich, and having to stay an extra night due to Dachau concentration camp actually being closed [...]]]></description>
			<content:encoded><![CDATA[<p>Salzburg was cute. Went on a biking tour around the &#8216;Sound of Music&#8217; movie locations. This was after wandering for 2 hours in the rain to find a place to stay &#8211; with almost everywhere booked out.<br />
Onward to Munich, and having to stay an extra night due to Dachau concentration camp actually being closed on Mondays. Involved a night each in two different hostels due to how busy they all were! The camp was sobering, but somehow disconnected from the atrocities that were once committed there &#8211; given how clean and touristic it is now.<br />
Down to Fussen to visit Neuchwanstien and it&#8217;s sister castle &#8211; built by a crazy king in the 1800s who wanted a medieval castle, now the inspiration for the Disney fairytale castle. I turned up at 9pm and couldn&#8217;t find a bed after an hour&#8230; and receptions started closing. I slept on a bench outside the tourist information centre.</p>
<p>Amusingly that sleep was probably better than the night train to Venice (after a stop by Munich to pick up a laptop charger I&#8217;d left behind &#8211; and of course a visit to an Augustiner beer hall)</p>
<p>Venice while touristic is amazing. Also the most expensive place I&#8217;ve visited yet. Wandering lost through the streets was fun, finding markets churches and streets dead ending onto canals at every turn. It was even fun to wander in the rain.</p>
<p>Florence was nice &#8211; like a quieter and smaller version of Vienna. More friendly and of course full of gelati. Saw the orginal David, and a replica on a hill. Ran into Michelle from Melbourne who happened to also be going to Cinque Terra when I was.</p>
<p>Cinque Terra &#8211; simply beautiful. The coastline itself is quite spectacular, if not entirely unique, however no other coastline like this has 5 small historic and rustic towns built into them. The 7 hour hike between them was breathtaking and full of photo ops, gelati, stairs and amazing pasta and pesto.</p>
<p>I&#8217;m beginning to dispair of finding time to catch up with 3 weeks of blog posts! Hopefully my memory doesn&#8217;t fail too soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://psykar.com/2010/08/a-park-bench-adventure-among-other-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A quick update</title>
		<link>http://psykar.com/2010/07/a-quick-update/</link>
		<comments>http://psykar.com/2010/07/a-quick-update/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 19:17:38 +0000</pubDate>
		<dc:creator>Psykar</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://psykar.com/blog/?p=137</guid>
		<description><![CDATA[Been too busy to write full entries so a quick run down on the last couple of weeks. After Switzerland I spent two nights with Robert &#8211; the guy I met in Egypt. Watched some football of course &#8211; being the finals weekend. Then I headed over to Rothenberg o d Taube (lit. Rothenburg above [...]]]></description>
			<content:encoded><![CDATA[<p>Been too busy to write full entries so a quick run down on the last couple of weeks.<br />
After Switzerland I spent two nights with Robert &#8211; the guy I met in Egypt. Watched some football of course &#8211; being the finals weekend.</p>
<p>Then I headed over to Rothenberg o d Taube (lit. Rothenburg above the Taube (river)) a quaint medieval walled village full of tourists.</p>
<p>Then 3 days ferrying down the Rhein &#8211; staying in a castle, a hostel, and a cute little bed and breakfast run by a woman who knew next to  no english.  The Rhein (not Rhine as I keep misspelling while I type this) has castles galore &#8211; oftentimes you could see two at once, on various hills overlooking the river.<br />
I visited Rheinfels (one of the largest castles in Germany &#8211; now a ruin) and Burg Eltz (one of the best preserved castles in Germany &#8211; still owned by the Eltz family) both were amazing.<br />
Then onwards to Berlin, where I wish I had&#8217;ve spent longer than 2 nights, but I&#8217;d already booked Prague, where I ended up staying 4 nights. Both amazing cities for their history.<br />
Now I&#8217;m chilling in Vienna. Or rather boiling, while fighting off oversized slow mosquitoes. The city itself is amazing architecturally. For me it&#8217;s the sheer volume of magnificent buildings &#8211; someone who knows what they are talking about might say there is no variety or something, but I don&#8217;t know any better!<br />
Tomorrow I&#8217;m off to Salzburg, day after I may head back to Munich so I can drop by the Dachau concentration camp &#8211; which I missed on my first visit &#8211; as I need to visit at least one.<br />
Then on to catch a few more castles in the south of Germany, and then in to Italy finally, where I hope to spend the majority of my remaining time in Europe. Venice first, and we&#8217;ll see from there.</p>
<p>So, yes I am still alive, and when I get the time I&#8217;ll write a bit more about the places I&#8217;ve already been =)</p>
]]></content:encoded>
			<wfw:commentRss>http://psykar.com/2010/07/a-quick-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

