<?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"
	>

<channel>
	<title>Kai Voigt</title>
	<atom:link href="http://k.123.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://k.123.org</link>
	<description>This is my blog. There are many like it but this one is mine.</description>
	<pubDate>Sat, 24 May 2008 06:13:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>3 laps in Schrevenpark</title>
		<link>http://k.123.org/2008/05/12/3-laps-in-schrevenpark/</link>
		<comments>http://k.123.org/2008/05/12/3-laps-in-schrevenpark/#comments</comments>
		<pubDate>Mon, 12 May 2008 08:37:19 +0000</pubDate>
		<dc:creator>Kai Voigt</dc:creator>
		
		<category><![CDATA[Running]]></category>

		<guid isPermaLink="false">http://k.123.org/?p=10</guid>
		<description><![CDATA[
René came up with the idea to run a couple of laps in Kiel&#8217;s Schrevenpark. However, somehow we managed to miss each other, so I ended up running 3 laps alone. Pretty hot outside, even in the morning hours.
I wonder where René is&#8230;
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="198" height="145" id="Nike+ Runs" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="wmode" value="transparent" /><param name="movie" value="http://nikeplus.nike.com/nikeplus/v1/swf/scrapablewidget/rundetail.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><param name="FlashVars" value="type=individualRun&#038;userDefaultUnit=km&#038;screenName=NaturalBornK&#038;dateFormat=DD/MM/YY&#038;id=1155519417&#038;userID=1424359891&#038;region=emea&#038;language=euen&#038;locale=euen_eu"/><embed src="http://nikeplus.nike.com/nikeplus/v1/swf/scrapablewidget/rundetail.swf" quality="high" wmode="transparent" bgcolor="#ffffff" width="198" height="145" name="Nike+ Runs" align="middle" allowScriptAccess="sameDomain" FlashVars="type=individualRun&#038;userDefaultUnit=km&#038;screenName=NaturalBornK&#038;dateFormat=DD/MM/YY&#038;id=1155519417&#038;userID=1424359891&#038;region=emea&#038;language=euen&#038;locale=euen_eu" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object><br />
René came up with the idea to run a couple of laps in Kiel&#8217;s Schrevenpark. However, somehow we managed to miss each other, so I ended up running 3 laps alone. Pretty hot outside, even in the morning hours.</p>
<p>I wonder where René is&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://k.123.org/2008/05/12/3-laps-in-schrevenpark/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Slides: MySQL Backup and Recovery Basics</title>
		<link>http://k.123.org/2008/05/11/slides-mysql-backup-and-recovery-basics/</link>
		<comments>http://k.123.org/2008/05/11/slides-mysql-backup-and-recovery-basics/#comments</comments>
		<pubDate>Sun, 11 May 2008 08:25:46 +0000</pubDate>
		<dc:creator>Kai Voigt</dc:creator>
		
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://k.123.org/?p=7</guid>
		<description><![CDATA[My slides from this year&#8217;s MySQL Conference are available for download at the Conference Site or right here: mysql_backup_basics.pdf
]]></description>
			<content:encoded><![CDATA[<p>My slides from this year&#8217;s MySQL Conference are available for download at the <a href="http://www.mysqlconf.com/">Conference Site</a> or right here: <a href='http://k.123.org/wp-content/uploads/2008/05/mysql_backup_basics.pdf'>mysql_backup_basics.pdf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://k.123.org/2008/05/11/slides-mysql-backup-and-recovery-basics/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quiz Question: How could you drop a table twice?</title>
		<link>http://k.123.org/2008/05/10/quiz-question-how-could-you-drop-a-table-twice/</link>
		<comments>http://k.123.org/2008/05/10/quiz-question-how-could-you-drop-a-table-twice/#comments</comments>
		<pubDate>Sat, 10 May 2008 14:16:46 +0000</pubDate>
		<dc:creator>Kai Voigt</dc:creator>
		
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://k.123.org/?p=6</guid>
		<description><![CDATA[How can this happen?
mysql&#62; DROP TABLE t;
Query OK, 0 rows affected (0.00 sec)

mysql&#62; DROP TABLE t;
Query OK, 0 rows affected (0.00 sec)
Well, just use a temporary table.
mysql&#62; CREATE TABLE t (i INT);
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql&#62; CREATE TEMPORARY TABLE t (d DATE);
Query OK, 0 rows affected (0.01 sec)

mysql&#62; DROP TABLE t;
Query [...]]]></description>
			<content:encoded><![CDATA[<p>How can this happen?</p>
<pre>mysql&gt; DROP TABLE t;
Query OK, 0 rows affected (0.00 sec)

mysql&gt; DROP TABLE t;
Query OK, 0 rows affected (0.00 sec)</pre>
<p>Well, just use a temporary table.</p>
<pre>mysql&gt; CREATE TABLE t (i INT);
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql&gt; CREATE TEMPORARY TABLE t (d DATE);
Query OK, 0 rows affected (0.01 sec)

mysql&gt; DROP TABLE t;
Query OK, 0 rows affected (0.00 sec)

mysql&gt; DROP TABLE t;
Query OK, 0 rows affected (0.00 sec)</pre>
<p>I will add more such silly/hard/cool/whatever questions from time to time here.</p>
]]></content:encoded>
			<wfw:commentRss>http://k.123.org/2008/05/10/quiz-question-how-could-you-drop-a-table-twice/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My website is back</title>
		<link>http://k.123.org/2008/05/10/my-website-is-back/</link>
		<comments>http://k.123.org/2008/05/10/my-website-is-back/#comments</comments>
		<pubDate>Sat, 10 May 2008 14:09:08 +0000</pubDate>
		<dc:creator>Kai Voigt</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://k.123.org/?p=5</guid>
		<description><![CDATA[Finally, my website is back. After moving 123.org to a new home, I found some time to pick -again- a new blog system. For no particular reason, I&#8217;m running Wordpress now.
Enjoy and stay tuned.
]]></description>
			<content:encoded><![CDATA[<p>Finally, my website is back. After moving 123.org to a new home, I found some time to pick -again- a new blog system. For no particular reason, I&#8217;m running Wordpress now.</p>
<p>Enjoy and stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://k.123.org/2008/05/10/my-website-is-back/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
