<?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>My place to go wilde</title>
	<atom:link href="http://thorian.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://thorian.de</link>
	<description>Thorians place on the net</description>
	<lastBuildDate>Wed, 07 Mar 2012 20:00:50 +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>JTL Wawi zu DHL Intraship Version 0.1 Alpha</title>
		<link>http://thorian.de/2012/03/jtl-wawi-zu-dhl-intraship-version-0-1-alpha/</link>
		<comments>http://thorian.de/2012/03/jtl-wawi-zu-dhl-intraship-version-0-1-alpha/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 18:53:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JTL Wawi - DHL Intraship]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://thorian.de/?p=302</guid>
		<description><![CDATA[Die erste Version 0.1a In den ersten Tests hat sie unsere Label erstellt. Das offene Fenster stört ein wenig aber das mach ich erst weg wenn es stabil läuft. Würde mich über Feedback freuen. Stay tuned. Thorian &#62;&#62; Download &#60;&#60; Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>Die erste Version 0.1a</p>
<p>In den ersten Tests hat sie unsere Label erstellt. Das offene Fenster stört ein wenig aber das mach ich erst weg wenn es stabil läuft.</p>
<p>Würde mich über Feedback freuen.</p>
<p>Stay tuned.</p>
<p><em>Thorian</em></p>
<p><a href="http://thorian.de/wp-content/plugins/download-monitor/download.php?id=4">&gt;&gt; Download &lt;&lt;</a></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://thorian.de/2012/03/jtl-wawi-zu-dhl-intraship-version-0-1-alpha/" target="_blank"><img src="http://thorian.de/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://thorian.de/2012/03/jtl-wawi-zu-dhl-intraship-version-0-1-alpha/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://thorian.de/2012/03/jtl-wawi-zu-dhl-intraship-version-0-1-alpha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I love Math</title>
		<link>http://thorian.de/2011/09/i-love-math/</link>
		<comments>http://thorian.de/2011/09/i-love-math/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 00:05:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thorian.de/?p=284</guid>
		<description><![CDATA[Yes I know I&#8217;m not writing as often as i should but today i wanted to share with you what crushed my brain for the past two hours trying to understand quaternions. function multiply($quad) { $p = new Math_Quaternion(); $p->real = $this->real * $quad->real - $this->i *$quad->i - $this->j* $quad->j - $this->k * $quad->k; $p->i [...]]]></description>
			<content:encoded><![CDATA[<p>Yes I know I&#8217;m not writing as often as i should but today i wanted to share with you what crushed my brain for the past two hours<br />
trying to understand quaternions.</p>
<p><code>	function multiply($quad) {<br />
		$p = new Math_Quaternion();<br />
		$p->real = $this->real * $quad->real - $this->i *$quad->i - $this->j* $quad->j - $this->k * $quad->k;<br />
		$p->i = $this->real * $quad->i + $this->i * $quad->real+ $this->j * $quad->k - $this->k * $quad->j;<br />
		$p->j = $this->real * $quad->j - $this->i * $quad->k + $this->j * $quad->real + $this->k * $quad->i;<br />
		$p->k = $this->real * $quad->k + $this->i * $quad->j - $this->j * $quad->i + $this->k * $quad->real;</p>
<p>		return $p;<br />
	}</p>
<p>	static function fromRotationVector($x,$y,$z) {<br />
		$q = new self();<br />
		$x = deg2rad($x);<br />
		$y = deg2rad($y);<br />
		$z = deg2rad($z);<br />
		$q->real = 	cos($x/2)*cos($y/2)*cos($z/2)+sin($x/2)*sin($y/2)*sin($z/2);<br />
		$q->i = 	sin($x/2)*cos($y/2)*cos($z/2)-cos($x/2)*sin($y/2)*sin($z/2);<br />
		$q->j = 	cos($x/2)*sin($y/2)*cos($z/2)+sin($x/2)*cos($y/2)*sin($z/2);<br />
		$q->k = 	cos($x/2)*cos($y/2)*sin($z/2)-sin($x/2)*sin($y/2)*cos($z/2);<br />
		return $q;<br />
	}</p>
<p>	function getRotationVector() {<br />
		$x = atan((2*($this->real*$this->i+$this->j*$this->k))/(1-2*($this->i*$this->i+$this->j*$this->j)));<br />
		$y = asin(2*($this->real*$this->j - $this->k*$this->i));<br />
		$z = atan((2*($this->real*$this->k+$this->i*$this->j))/(1-2*($this->j*$this->j+$this->k*$this->k)));<br />
		$x = rad2deg($x);<br />
		$y = rad2deg($y);<br />
		$z = rad2deg($z);<br />
		return array('x'=>$x,'y' => $y,'z'=>$z);<br />
	}<br />
</code></p>
<p>Just wanted to mention <img src='http://thorian.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
stay tuned<br />
Thorian</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://thorian.de/2011/09/i-love-math/" target="_blank"><img src="http://thorian.de/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://thorian.de/2011/09/i-love-math/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://thorian.de/2011/09/i-love-math/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nichtlustig ;)</title>
		<link>http://thorian.de/2011/04/nichtlustig/</link>
		<comments>http://thorian.de/2011/04/nichtlustig/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 20:32:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thorian.de/?p=279</guid>
		<description><![CDATA[Ihr Browser kann leider keine eingebetteten Frames anzeigen: Share on Facebook]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.nichtlustig.de/toondb_iframe/01d8bae291b1e4724443375634ccfa0e.html" width="500" height="600" name="" scrolling="no" frameborder="0" allowTransparency="true">
<p>Ihr Browser kann leider keine eingebetteten Frames anzeigen:</p>
<p></iframe></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://thorian.de/2011/04/nichtlustig/" target="_blank"><img src="http://thorian.de/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://thorian.de/2011/04/nichtlustig/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://thorian.de/2011/04/nichtlustig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring time in Bremen</title>
		<link>http://thorian.de/2011/04/spring-time-in-bremen/</link>
		<comments>http://thorian.de/2011/04/spring-time-in-bremen/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 18:08:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://thorian.de/?p=276</guid>
		<description><![CDATA[Wow it happened spring is here and its warm and sunny. &#8230;. Yes i know everybody is happy end enjoys the uprising life. And i guess in two months I&#8217;ll scream demanding winter again. From Spring 2011 From Spring 2011 From Spring 2011 Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>Wow it happened spring is here and its warm and sunny. &#8230;.<br />
Yes i know everybody is happy end enjoys the uprising life.</p>
<p>And i guess in two months I&#8217;ll scream demanding winter again.</p>
<table style="width:auto;">
<tr>
<td><a href="https://picasaweb.google.com/lh/photo/ite14Z1BO4KPVl4gN0I6mg?feat=embedwebsite"><img src="https://lh4.googleusercontent.com/_IIVUsU_x5_g/TaHqK1f7_zI/AAAAAAAADds/Q0Laqr49Tyg/s640/DSCN8378.JPG" height="480" width="640" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="https://picasaweb.google.com/thorian.pennell/Spring2011?feat=embedwebsite">Spring 2011</a></td>
</tr>
</table>
<table style="width:auto;">
<tr>
<td><a href="https://picasaweb.google.com/lh/photo/_zKhtNi97srT5kuf9yaRSw?feat=embedwebsite"><img src="https://lh6.googleusercontent.com/_IIVUsU_x5_g/TaHqu_AdHiI/AAAAAAAADeI/kSmwl9A5Iug/s640/DSCN8384.JPG" height="480" width="640" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="https://picasaweb.google.com/thorian.pennell/Spring2011?feat=embedwebsite">Spring 2011</a></td>
</tr>
</table>
<table style="width:auto;">
<tr>
<td><a href="https://picasaweb.google.com/lh/photo/cJH0OmLEmRuGCJumm4GC3g?feat=embedwebsite"><img src="https://lh4.googleusercontent.com/_IIVUsU_x5_g/TaHrAmHcl6I/AAAAAAAADec/01twyJMGCDs/s640/DSCN8386.JPG" height="480" width="640" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="https://picasaweb.google.com/thorian.pennell/Spring2011?feat=embedwebsite">Spring 2011</a></td>
</tr>
</table>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://thorian.de/2011/04/spring-time-in-bremen/" target="_blank"><img src="http://thorian.de/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://thorian.de/2011/04/spring-time-in-bremen/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://thorian.de/2011/04/spring-time-in-bremen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holidays&#8230;</title>
		<link>http://thorian.de/2010/12/holidays/</link>
		<comments>http://thorian.de/2010/12/holidays/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 21:55:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thorian.de/?p=263</guid>
		<description><![CDATA[yes it happens I&#8217;m on holiday for a few days From Flachau 2010 From Flachau 2010 From Flachau 2010 so long Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>yes it happens I&#8217;m on holiday for a few days <img src='http://thorian.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<table style="width:auto;">
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/akeCD5UbplhijhFvQwu8Lw?feat=embedwebsite"><img src="http://lh4.ggpht.com/_IIVUsU_x5_g/TRjuaEmHIXI/AAAAAAAACcA/BSkXH4nf3Co/s640/DSCN1042.JPG" height="480" width="640" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="http://picasaweb.google.com/thorian.pennell/Flachau2010?feat=embedwebsite">Flachau 2010</a></td>
</tr>
</table>
<table style="width:auto;">
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/eYSKOsiKRDjCDWAPy2MX1g?feat=embedwebsite"><img src="http://lh6.ggpht.com/_IIVUsU_x5_g/TRjuzisfMXI/AAAAAAAACdQ/D8PBOUTwOYc/s640/DSCN1086.JPG" height="640" width="480" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="http://picasaweb.google.com/thorian.pennell/Flachau2010?feat=embedwebsite">Flachau 2010</a></td>
</tr>
</table>
<table style="width:auto;">
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/sPEyPKbtQDKMLbDI0b8J-A?feat=embedwebsite"><img src="http://lh5.ggpht.com/_IIVUsU_x5_g/TRjvIO4QjMI/AAAAAAAACes/ki8C60kU6vw/s640/DSCN1133.JPG" height="480" width="640" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="http://picasaweb.google.com/thorian.pennell/Flachau2010?feat=embedwebsite">Flachau 2010</a></td>
</tr>
</table>
<p>so long <img src='http://thorian.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/12/holidays/" target="_blank"><img src="http://thorian.de/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/12/holidays/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://thorian.de/2010/12/holidays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Christmas season</title>
		<link>http://thorian.de/2010/12/christmas-season/</link>
		<comments>http://thorian.de/2010/12/christmas-season/#comments</comments>
		<pubDate>Tue, 21 Dec 2010 08:14:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://thorian.de/?p=258</guid>
		<description><![CDATA[From Winter 2010 From Winter 2010 From Winter 2010 From Winter 2010 From Winter 2010 From Winter 2010 From Winter 2010 From Winter 2010 Merry Christmas and happy new year! Feliz Navidad y prospero año nuevo! Frohe Weihnachten und glückliches neues Jahr! Buon Natale e felice anno nuovo! Joyeux Noël et bonne heureuse annee! Vesele [...]]]></description>
			<content:encoded><![CDATA[<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/LoqHV5UZsyGoKVhgfdxebQ?feat=embedwebsite"><img src="http://lh4.ggpht.com/_IIVUsU_x5_g/TQ8tBdRLmfI/AAAAAAAACVI/VYUBfrwLhRA/s640/DSCN0904.JPG" alt="" width="480" height="640" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite">Winter 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/TtO03amtLGbklKTBLF8Inw?feat=embedwebsite"><img src="http://lh5.ggpht.com/_IIVUsU_x5_g/TQ8tYeHomRI/AAAAAAAACVw/4n4NQIRYev0/s640/DSCN0923.JPG" alt="" width="640" height="480" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite">Winter 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/3b3i1nbHITVs1dC5nGx2MA?feat=embedwebsite"><img src="http://lh5.ggpht.com/_IIVUsU_x5_g/TQ8tlzROfKI/AAAAAAAACWE/uTyV8V633RY/s640/DSCN0928.JPG" alt="" width="480" height="640" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite">Winter 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/J_K8pz1lSmhHM8VcJAzQAw?feat=embedwebsite"><img src="http://lh5.ggpht.com/_IIVUsU_x5_g/TQ8uTNk9wiI/AAAAAAAACXI/nqrgkptz2iI/s640/DSCN0949.JPG" alt="" width="480" height="640" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite">Winter 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/ltbhtFlOx30MSp7zS_kAzw?feat=embedwebsite"><img src="http://lh4.ggpht.com/_IIVUsU_x5_g/TQ8ulO7o4GI/AAAAAAAACXw/JSDfePYK-4E/s640/DSCN0966.JPG" alt="" width="640" height="480" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite">Winter 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/mlJNDmWTtHFKfM7YLLtYRQ?feat=embedwebsite"><img src="http://lh3.ggpht.com/_IIVUsU_x5_g/TQ8uvCFTw0I/AAAAAAAACX8/k_smpYlWAWM/s640/DSCN0969.JPG" alt="" width="640" height="480" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite">Winter 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/4jRmBUJnbSIRhnfKa2EMLg?feat=embedwebsite"><img src="http://lh4.ggpht.com/_IIVUsU_x5_g/TQ8vJ1ThgBI/AAAAAAAACY0/w7kOu-aVRpo/s640/DSCN0989.JPG" alt="" width="640" height="480" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite">Winter 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/6WZPn3wzbXXy1Tk9Sx6q9w?feat=embedwebsite"><img src="http://lh4.ggpht.com/_IIVUsU_x5_g/TQ8wdyy1u8I/AAAAAAAACa0/PbzXwsge32U/s640/Panorama.jpg" alt="" width="640" height="138" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite">Winter 2010</a></td>
</tr>
</tbody>
</table>
<blockquote>
<p style="text-align: center;"><strong><em>Merry Christmas and happy new year!<br />
Feliz Navidad y prospero año nuevo!<br />
Frohe Weihnachten und glückliches neues Jahr!<br />
Buon Natale e felice anno nuovo!<br />
Joyeux Noël et bonne heureuse annee!<br />
Vesele Vanoce a stastny novy rok! </em></strong></p>
</blockquote>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/12/christmas-season/" target="_blank"><img src="http://thorian.de/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/12/christmas-season/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://thorian.de/2010/12/christmas-season/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Winter says hello</title>
		<link>http://thorian.de/2010/11/winter-says-hello/</link>
		<comments>http://thorian.de/2010/11/winter-says-hello/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 20:16:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thorian.de/?p=255</guid>
		<description><![CDATA[Finally the most wonderful time of the year has started. From Winter 2010 From Winter 2010 From Winter 2010 Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>Finally the most wonderful time of the year has started.</p>
<table style="width:auto;">
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/q8t8ITUS-EeDHBWeCTUIKQ?feat=embedwebsite"><img src="http://lh3.ggpht.com/_IIVUsU_x5_g/TPP4TWGOVaI/AAAAAAAACSM/o20wayUVmcw/s640/DSCN0181.JPG" height="480" width="640" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite">Winter 2010</a></td>
</tr>
</table>
<table style="width:auto;">
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/yo5JIOIKdtmDY4TyktLzUQ?feat=embedwebsite"><img src="http://lh6.ggpht.com/_IIVUsU_x5_g/TPP4XS1FpAI/AAAAAAAACSY/WXXE7zlhzLg/s400/DSCN0184.JPG" height="400" width="300" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite">Winter 2010</a></td>
</tr>
</table>
<table style="width:auto;">
<tr>
<td><a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite#5545048793554806402"><img src="http://lh5.ggpht.com/_IIVUsU_x5_g/TPP4f7IK5oI/AAAAAAAACS8/6e3IxSvVLxo/s400/Unbenannt-1.jpg" height="111" width="400" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="http://picasaweb.google.com/thorian.pennell/Winter2010?feat=embedwebsite">Winter 2010</a></td>
</tr>
</table>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/11/winter-says-hello/" target="_blank"><img src="http://thorian.de/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/11/winter-says-hello/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://thorian.de/2010/11/winter-says-hello/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare Server 2.0 &#8211; Unable to access Webmanagement or connect with vSphere Client</title>
		<link>http://thorian.de/2010/11/vmware-server-2-0-unable-to-access-webmanagement-or-connect-with-vsphere-client/</link>
		<comments>http://thorian.de/2010/11/vmware-server-2-0-unable-to-access-webmanagement-or-connect-with-vsphere-client/#comments</comments>
		<pubDate>Sat, 06 Nov 2010 13:02:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administration]]></category>

		<guid isPermaLink="false">http://thorian.de/?p=248</guid>
		<description><![CDATA[Today i ran into something very strange, a freshly set up VMWare Server 2.0 host wasn&#8217;t accessible by https and vsphere client. I analysed the logfiles and came accross [2010-11-06 13:35:09.843 'Proxysvc' 4128988016 warning] SSL Handshake on client connection failed: SSL Exception: error:00000000:lib(0):func(0):reason(0) which seemed to be related to some SSL v2 Certificate thingie. It [...]]]></description>
			<content:encoded><![CDATA[<p>Today i ran into something very strange, a freshly set up VMWare Server 2.0 host wasn&#8217;t accessible by https and vsphere client.</p>
<p>I analysed the logfiles and came accross</p>
<blockquote>
<div id="_mcePaste">[2010-11-06 13:35:09.843 'Proxysvc' 4128988016 warning] SSL Handshake on client connection failed: SSL Exception: error:00000000:lib(0):func(0):reason(0)</div>
</blockquote>
<p>which seemed to be related to some SSL v2 Certificate thingie.</p>
<p>It didn&#8217;t work out for me to enable SSL v2 but as a quick hacky solution replacing all</p>
<blockquote><p>&#8220;httpsWithRedirect&#8221; with &#8220;httpAndHttps&#8221;</p>
<p>in  /etc/vmware/hostd/proxy.xml</p>
<p>then do a /etc/init.d/vmware-mgmt restart</p></blockquote>
<p>atleast now lets me connect to the server without ssl encryption just fine.</p>
<p>I know its not 100% safe but on a local network server its acceptable to me.</p>
<p>Keep in mind instead of https://xxx:8333 you now have to use http://xxx:8222</p>
<p>So long</p>
<p>Thorian</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/11/vmware-server-2-0-unable-to-access-webmanagement-or-connect-with-vsphere-client/" target="_blank"><img src="http://thorian.de/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/11/vmware-server-2-0-unable-to-access-webmanagement-or-connect-with-vsphere-client/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://thorian.de/2010/11/vmware-server-2-0-unable-to-access-webmanagement-or-connect-with-vsphere-client/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Snom 360 in corporate network</title>
		<link>http://thorian.de/2010/10/snom-360-in-corporate-network/</link>
		<comments>http://thorian.de/2010/10/snom-360-in-corporate-network/#comments</comments>
		<pubDate>Sat, 30 Oct 2010 18:57:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LibSnom-PHP]]></category>

		<guid isPermaLink="false">http://thorian.de/?p=242</guid>
		<description><![CDATA[So this will be one of the more technical posts again. Currently I&#8217;m working on how to manage a whole bunch of Snoms together with a Gemeinschaft PBX but without their mechanism of auto provisioning. (I tried to use it but never was really happy with it i didn&#8217;t like the always rebooting and stuff.. [...]]]></description>
			<content:encoded><![CDATA[<p>So this will be one of the more technical posts again. Currently I&#8217;m working on how to manage a whole bunch of Snoms together with a <a title="http://www.amooma.de/gemeinschaft" href="http://www.amooma.de/gemeinschaft">Gemeinschaft PBX</a></p>
<p><img class="alignright size-medium wp-image-244" title="snom" src="http://thorian.de/wp-content/uploads/2010/10/snom-300x217.jpg" alt="" width="300" height="217" /></p>
<p>but without their mechanism of auto provisioning. (I tried to use it but never was really happy with it i didn&#8217;t like the always rebooting and stuff.. I know I&#8217;m an inpatient person)</p>
<p>Whatever, what I&#8217;m currently working on is a way to manage a few hundred snom phones in a nice way withour clicking through thousands of sheets and still try to keep my users happy.</p>
<p>Problems on my list:</p>
<ul>
<li>the display shall reflect what currently goes on</li>
<li>the display shall reflect if there are any redirections programmed</li>
<li>the display shall reflect if they are in any calling groups</li>
<li>no rebooting of the phone due to dhcp lease timeout!!! &lt;- that really annoyed me</li>
<li>better handling of IP Adresses through wasting lots of ip but get a better order of the total system</li>
<li>keep software versions congruent as many phones are newly attatched or removed or replaced (did you notice when you send an RMA for a phone you NEVER get the same software version back?)</li>
<li>language setting control in newer firmware.</li>
</ul>
<p>&#8230; to be continued.</p>
<p>I started to write a new PHP lib to support me with this. If I&#8217;m successful I&#8217;ll release it here. <img src='http://thorian.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>stay tuned.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/10/snom-360-in-corporate-network/" target="_blank"><img src="http://thorian.de/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/10/snom-360-in-corporate-network/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://thorian.de/2010/10/snom-360-in-corporate-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freimaak 2010 zu Bremen</title>
		<link>http://thorian.de/2010/10/freimaak-2010-zu-bremen/</link>
		<comments>http://thorian.de/2010/10/freimaak-2010-zu-bremen/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 22:32:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://thorian.de/?p=239</guid>
		<description><![CDATA[From Bremen &#8211; Freimarkt 2010 From Bremen &#8211; Freimarkt 2010 From Bremen &#8211; Freimarkt 2010 From Bremen &#8211; Freimarkt 2010 From Bremen &#8211; Freimarkt 2010 From Bremen &#8211; Freimarkt 2010 From Bremen &#8211; Freimarkt 2010 Share on Facebook]]></description>
			<content:encoded><![CDATA[<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.de/lh/photo/6f6XNKjUNrEZcBD_C19QNg?feat=embedwebsite"><img src="http://lh6.ggpht.com/_IIVUsU_x5_g/TLto9gKEJbI/AAAAAAAACJg/aVQFxOCBoZ8/s400/DSCN0013.jpg" alt="" width="400" height="146" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.de/thorian.pennell/BremenFreimarkt2010?feat=embedwebsite">Bremen &#8211; Freimarkt 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.de/lh/photo/7Pev-9Vr-imcZRMNihIsVw?feat=embedwebsite"><img src="http://lh4.ggpht.com/_IIVUsU_x5_g/TLtpCgcqFZI/AAAAAAAACJs/OsprOone_VI/s400/DSCN0016.jpg" alt="" width="300" height="400" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.de/thorian.pennell/BremenFreimarkt2010?feat=embedwebsite">Bremen &#8211; Freimarkt 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.de/lh/photo/_2DUdW0bAhSPCb4bqqaUEQ?feat=embedwebsite"><img src="http://lh3.ggpht.com/_IIVUsU_x5_g/TLtpFHAn4uI/AAAAAAAACJ0/UCnopNlrgvA/s400/DSCN0021.jpg" alt="" width="300" height="400" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.de/thorian.pennell/BremenFreimarkt2010?feat=embedwebsite">Bremen &#8211; Freimarkt 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.de/lh/photo/aYNzgbncCjrNDK1ppAO9og?feat=embedwebsite"><img src="http://lh4.ggpht.com/_IIVUsU_x5_g/TLtpLk7iu2I/AAAAAAAACKI/yTLzDewn5zo/s400/DSCN0041.JPG" alt="" width="300" height="400" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.de/thorian.pennell/BremenFreimarkt2010?feat=embedwebsite">Bremen &#8211; Freimarkt 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.de/lh/photo/r9XRqn91HTFdiayGNB3e7Q?feat=embedwebsite"><img src="http://lh5.ggpht.com/_IIVUsU_x5_g/TLtpNYCo5SI/AAAAAAAACKM/qPC2rmbgaHU/s400/DSCN0043.jpg" alt="" width="400" height="213" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.de/thorian.pennell/BremenFreimarkt2010?feat=embedwebsite">Bremen &#8211; Freimarkt 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.de/lh/photo/paeAZdBUJKFXALcXrArX4w?feat=embedwebsite"><img src="http://lh3.ggpht.com/_IIVUsU_x5_g/TLtpQINHvnI/AAAAAAAACKU/DFHglJy-XcA/s400/DSCN0062.jpg" alt="" width="400" height="240" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.de/thorian.pennell/BremenFreimarkt2010?feat=embedwebsite">Bremen &#8211; Freimarkt 2010</a></td>
</tr>
</tbody>
</table>
<table style="width: auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.de/lh/photo/IMG8Ay3qBbQ5hw-rb46bqw?feat=embedwebsite"><img src="http://lh3.ggpht.com/_IIVUsU_x5_g/TLtpWuUB_oI/AAAAAAAACKo/o2Qg8tJ7mIY/s400/DSCN0093.JPG" alt="" width="400" height="300" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.de/thorian.pennell/BremenFreimarkt2010?feat=embedwebsite">Bremen &#8211; Freimarkt 2010</a></td>
</tr>
</tbody>
</table>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/10/freimaak-2010-zu-bremen/" target="_blank"><img src="http://thorian.de/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://thorian.de/2010/10/freimaak-2010-zu-bremen/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://thorian.de/2010/10/freimaak-2010-zu-bremen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

