<?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>Metashock</title>
	<atom:link href="http://www.metashock.de/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.metashock.de/wordpress</link>
	<description>Weblog</description>
	<lastBuildDate>Mon, 10 Oct 2011 10:23:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Wikileaks @ xkcd</title>
		<link>http://www.metashock.de/wordpress/?p=455</link>
		<comments>http://www.metashock.de/wordpress/?p=455#comments</comments>
		<pubDate>Mon, 10 Oct 2011 10:18:54 +0000</pubDate>
		<dc:creator>thorsten</dc:creator>
				<category><![CDATA[Latest posts]]></category>

		<guid isPermaLink="false">http://www.metashock.de/wordpress/?p=455</guid>
		<description><![CDATA[Hehe &#8230;]]></description>
		<wfw:commentRss>http://www.metashock.de/wordpress/?feed=rss2&#038;p=455</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP script for validating a XML file against a XSD Schema</title>
		<link>http://www.metashock.de/wordpress/?p=451</link>
		<comments>http://www.metashock.de/wordpress/?p=451#comments</comments>
		<pubDate>Mon, 10 Oct 2011 10:07:41 +0000</pubDate>
		<dc:creator>thorsten</dc:creator>
				<category><![CDATA[Latest posts]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.metashock.de/wordpress/?p=451</guid>
		<description><![CDATA[usage: php validate-xsd.php xmlfile xsdfile validates xmlfile against xsdfile #!/usr/bin/php &#60;?php &#160; if&#40;$argc !== 3&#41; &#123; echo &#34;usage: &#34;. $argv&#91;0&#93; . &#34; xmlfile xsdfile\n&#34;; echo &#34;validates xmlfile against xsdfile\n&#34;; die&#40;&#41;; &#125; &#160; if&#40;!is_readable&#40;$argv&#91;1&#93;&#41;&#41;&#123; die&#40;&#34;cannot read xmlfile '{$argv[1]}'. aborting.\n&#34;&#41;; &#125; &#160; if&#40;!is_readable&#40;$argv&#91;1&#93;&#41;&#41;&#123; die&#40;&#34;cannot read xsdfile '{$argv[2]}'. aborting.\n&#34;&#41;; &#125; &#160; $xmlfile = $argv&#91;1&#93;; $xsdfile = $argv&#91;2&#93;; &#160; [...]]]></description>
		<wfw:commentRss>http://www.metashock.de/wordpress/?feed=rss2&#038;p=451</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>printf like log function for PHP</title>
		<link>http://www.metashock.de/wordpress/?p=432</link>
		<comments>http://www.metashock.de/wordpress/?p=432#comments</comments>
		<pubDate>Sat, 08 Oct 2011 22:47:48 +0000</pubDate>
		<dc:creator>thorsten</dc:creator>
				<category><![CDATA[Latest posts]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.metashock.de/wordpress/?p=432</guid>
		<description><![CDATA[The following functions are good friends for logging. You can use format strings parsed by printf and several log levels. Usage example : ( Download: example.php) &#60;?php /** * Require l.php before parsing the ini file * so that L_* contants can be used in the ini file * to define the L_LEVEL */ require_once [...]]]></description>
		<wfw:commentRss>http://www.metashock.de/wordpress/?feed=rss2&#038;p=432</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hexdump function in PHP</title>
		<link>http://www.metashock.de/wordpress/?p=412</link>
		<comments>http://www.metashock.de/wordpress/?p=412#comments</comments>
		<pubDate>Sat, 30 Apr 2011 13:06:26 +0000</pubDate>
		<dc:creator>thorsten</dc:creator>
				<category><![CDATA[Latest posts]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.metashock.de/wordpress/?p=412</guid>
		<description><![CDATA[This goodie comes with her little friend &#8211; asciidump(). Have fun! /** * Prints a hexdump of $data * * @param string $data * @param integer $ncolumns = 8 * @return void * @throws InvalidArgumentException if one of the arguments data type mismatches * @throws OutOfBoundsException if $ncolumns is lower than 0 */ function hexdump&#40;$data, [...]]]></description>
		<wfw:commentRss>http://www.metashock.de/wordpress/?feed=rss2&#038;p=412</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clone a VirtualBox Hard Disk</title>
		<link>http://www.metashock.de/wordpress/?p=405</link>
		<comments>http://www.metashock.de/wordpress/?p=405#comments</comments>
		<pubDate>Wed, 20 Apr 2011 08:42:13 +0000</pubDate>
		<dc:creator>thorsten</dc:creator>
				<category><![CDATA[Latest posts]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://www.metashock.de/wordpress/?p=405</guid>
		<description><![CDATA[When working with VirtualBox, sometimes its useful to clone a OS by just duplicate the *.vdi hard disk file and create a new OS with this hard drive. When you just copy and paste the .vdi file you&#8217;ll get an error because the uuids of the partions on the already in use by VirtualBox. The [...]]]></description>
		<wfw:commentRss>http://www.metashock.de/wordpress/?feed=rss2&#038;p=405</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

