<?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>iSOblog</title>
	<atom:link href="http://pascal-schwarz.ch/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://pascal-schwarz.ch/blog</link>
	<description>fortuity is way too important to leave it to chance</description>
	<lastBuildDate>Tue, 06 Dec 2011 12:19:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>script to clean a mysql database without dropping it</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2011/12/06/script-to-clean-a-mysql-database-without-dropping-it/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2011/12/06/script-to-clean-a-mysql-database-without-dropping-it/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 12:17:02 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=194</guid>
		<description><![CDATA[if you dont want to give a certain user create database permissions, he can run this script
#!/bin/bash
MUSER="$1"
MPASS="$2"
MDB="$3"
# Detect paths
MYSQL=$(which mysql)
AWK=$(which awk)
GREP=$(which grep)
if [ $# -ne 3 ]
then
echo "Usage: $0 {MySQL-User-Name} {MySQL-User-Password} {MySQL-Database-Name}"
echo "Drops all tables from a MySQL"
exit 1
fi
mysql --user=$MUSER --password=$MPASS -BNe "show tables" $MDB &#124; tr '\n' ',' &#124; sed -e 's/,$//' &#124; awk [...]]]></description>
			<content:encoded><![CDATA[<p>if you dont want to give a certain user create database permissions, he can run this script</p>
<p><code>#!/bin/bash<br />
MUSER="$1"<br />
MPASS="$2"<br />
MDB="$3"</p>
<p># Detect paths<br />
MYSQL=$(which mysql)<br />
AWK=$(which awk)<br />
GREP=$(which grep)</p>
<p>if [ $# -ne 3 ]<br />
then<br />
echo "Usage: $0 {MySQL-User-Name} {MySQL-User-Password} {MySQL-Database-Name}"<br />
echo "Drops all tables from a MySQL"<br />
exit 1<br />
fi</p>
<p>mysql --user=$MUSER --password=$MPASS -BNe "show tables" $MDB | tr '\n' ',' | sed -e 's/,$//' | awk '{print "SET FOREIGN_KEY_CHECKS = 0;DROP TABLE IF EXISTS " $1 ";SET FOREIGN_KEY_CHECKS = 1;"}' | mysql --user=$MUSER --password=$MPASS $MDB</code></p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2011/12/06/script-to-clean-a-mysql-database-without-dropping-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>new citrix client for linux</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2011/10/22/new-citrix-client-for-linux/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2011/10/22/new-citrix-client-for-linux/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 12:37:33 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=186</guid>
		<description><![CDATA[maybe it&#8217;s not too new anymore, but it&#8217;s nice nevertheless: citrix releases version 12 of the citrix receiver for linux. they have seperate versions for x86 and x64 and i could install the deb without having problems with dependencies on my ubuntu 11.10
one problem they have has still not been fixed though: the client brings [...]]]></description>
			<content:encoded><![CDATA[<p>maybe it&#8217;s not too new anymore, but it&#8217;s nice nevertheless: citrix releases version 12 of the citrix receiver for linux. they have seperate versions for x86 and x64 and i could install the deb without having problems with dependencies on my ubuntu 11.10</p>
<p>one problem they have has still not been fixed though: the client brings its own CA-Certificates&#8230; well&#8230; look at the list:</p>
<p><code>iso@iso-i7:~$ ls /opt/Citrix/ICAClient/keystore/cacerts/<br />
BTCTRoot.crt  Class3PCA_G2_v2.crt  Class4PCA_G2_v2.crt    GTECTGlobalRoot.crt  Pcs3ss_v4.crt</code></p>
<p>this is just a bad joke &#8211; to fix it, just create a link to a reasonably filled list of CA-Certificates, e.g. from mozilla:<br />
<code>iso@iso-i7:/opt/Citrix/ICAClient$ cd /opt/Citrix/ICAClient/keystore/<br />
iso@iso-i7:/opt/Citrix/ICAClient/keystore$ sudo mv cacerts cacerts_citrix<br />
iso@iso-i7:/opt/Citrix/ICAClient/keystore$ sudo ln -s /usr/share/ca-certificates/mozilla cacerts</code><br />
done, you may now connect to citrix servers which use secure gateway to encapsulate the ICA-traffic in HTTPS</p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2011/10/22/new-citrix-client-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>holiday gran canaria</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2011/08/19/holiday-gran-canaria/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2011/08/19/holiday-gran-canaria/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 08:13:09 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[uncategorized]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=183</guid>
		<description><![CDATA[take a look at the photos here:
http://pascal-schwarz.ch/gallery2/main.php?g2_itemId=7631
]]></description>
			<content:encoded><![CDATA[<p>take a look at the photos here:</p>
<p><a href="http://pascal-schwarz.ch/gallery2/main.php?g2_itemId=7631">http://pascal-schwarz.ch/gallery2/main.php?g2_itemId=7631</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2011/08/19/holiday-gran-canaria/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>java class helping to understand floats</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2011/03/14/java-class-helping-to-understand-floats/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2011/03/14/java-class-helping-to-understand-floats/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 20:04:15 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=178</guid>
		<description><![CDATA[i tried to better understand how float values are stored on a computer so i decided to write a little class that should help me with this.
IMPORTANT NOTE: i can&#8217;t be held responsible for anything that this class does or does not, you&#8217;ve been warned :p
list of know issues:


the methods floatUnderstandingFromLongValue() and floatUnderstandingFromDoubleValue() return WRONG [...]]]></description>
			<content:encoded><![CDATA[<p>i tried to better understand how float values are stored on a computer so i decided to write a <em>little</em> class that should help me with this.</p>
<p><strong>IMPORTANT NOTE:</strong> i can&#8217;t be held responsible for anything that this class does or does not, you&#8217;ve been warned :p</p>
<p><strong>list of know issues:<br />
</strong></p>
<ul>
<li>the methods floatUnderstandingFromLongValue() and floatUnderstandingFromDoubleValue() return <strong>WRONG FLOATS!</strong></li>
<li>maybe the method getMantissaBitsSignificanceString() is also not working correctly, especially with really small numbers (E=-126)</li>
<li>code has gotten a little confusing</li>
<li>things could probably be coded more efficiently</li>
</ul>
<p>you can download the source from here:<br />
<a href="http://pascal-schwarz.ch/stuff/FloatUnderstanding/FloatUnderstanding.java">http://pascal-schwarz.ch/stuff/FloatUnderstanding/FloatUnderstanding.java</a><br />
<a href="http://pascal-schwarz.ch/stuff/FloatUnderstanding/TestRecalcMultiThread.java">http://pascal-schwarz.ch/stuff/FloatUnderstanding/TestRecalcMultiThread.java</a></p>
<p>if you have any feedback, please use the comment-functionality under this post.</p>
<p><strong>Update (20.03.2011):<br />
</strong></p>
<ul>
<li>better handling of denormalized values (getMantissaValue(), getMantissaSignificanceString(), getExponentValue(), &#8230;..)</li>
<li>included a multithreaded recalcFloatValue-Tester</li>
<li>the fabric-methods floatUnderstandingFromLongValue() and floatUnderstandingFromDoubleValue() <em>ARE NOT FIXED</em> yet</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2011/03/14/java-class-helping-to-understand-floats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>remember this?</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2010/12/05/remember-this/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2010/12/05/remember-this/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 18:26:10 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=173</guid>
		<description><![CDATA[just love it  

]]></description>
			<content:encoded><![CDATA[<p>just love it <img src='http://pascal-schwarz.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/390lXDsYs_M?fs=1&amp;hl=de_DE" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/390lXDsYs_M?fs=1&amp;hl=de_DE" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2010/12/05/remember-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nice ssh option for tunneling</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2010/06/07/nice-ssh-option-for-tunneling/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2010/06/07/nice-ssh-option-for-tunneling/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 17:39:37 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=171</guid>
		<description><![CDATA[didn&#8217;t know about this so i always used a little http proxy (tinyproxy) on my server, but this is not needed as i just learned;
see here: http://dltj.org/article/ssh-as-socks-proxy/
]]></description>
			<content:encoded><![CDATA[<p>didn&#8217;t know about this so i always used a little http proxy (tinyproxy) on my server, but this is not needed as i just learned;</p>
<p><a href="http://dltj.org/article/ssh-as-socks-proxy/">see here: http://dltj.org/article/ssh-as-socks-proxy/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2010/06/07/nice-ssh-option-for-tunneling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>strange n900 pricing</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2010/04/10/strange-n900-pricing/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2010/04/10/strange-n900-pricing/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 11:20:07 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=167</guid>
		<description><![CDATA[i&#8217;ll probably buy a nokia n900 to (finally!) replace my nice htc touch hd which is broken because of windows mobile (how could htc do this, after all?!).
i was quite surprised about the price differences between digitec.ch and mobilezone and swisscom-shop;

price with extending my contract another year at swisscom shop: about chf 750.-
price with extending [...]]]></description>
			<content:encoded><![CDATA[<p>i&#8217;ll probably buy a nokia n900 to (finally!) replace my nice htc touch hd which is broken because of windows mobile (how could htc do this, after all?!).<br />
i was quite surprised about the price differences between digitec.ch and mobilezone and swisscom-shop;</p>
<ul>
<li>price with extending my contract another year at swisscom shop: about chf 750.-</li>
<li>price with extending my contract another 2 years at mobilezone: about chf 730.-</li>
<li>price WITHOUT CONTRACT at digitec: chf 690.-</li>
</ul>
<p>strange eh?</p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2010/04/10/strange-n900-pricing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>what sucks about sbb</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2010/03/10/only-thing-that-sucks-about-sbb/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2010/03/10/only-thing-that-sucks-about-sbb/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 06:11:10 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=163</guid>
		<description><![CDATA[following situation

i&#8217;m living near olten (egerkingen)
normally i work in aarau, so i have a subscription for egerkingen &#8211; aarau
sometimes i have to visit clients around zurich

now you think: &#8220;easy, you&#8217;ll just have to buy a ticket from aarau to zurich&#8221;&#8230; but that isnt the case:
if the train stops in aarau (and its enough if it [...]]]></description>
			<content:encoded><![CDATA[<p>following situation</p>
<ul>
<li>i&#8217;m living near olten (egerkingen)</li>
<li>normally i work in aarau, so i have a subscription for egerkingen &#8211; aarau</li>
<li>sometimes i have to visit clients around zurich</li>
</ul>
<p>now you think: &#8220;easy, you&#8217;ll just have to buy a ticket from aarau to zurich&#8221;&#8230; but that isnt the case:<br />
if the train stops in aarau (and its enough if it just stops, no need to change the train or something), you may buy a ticket aarau &#8211; zurich and won&#8217;t have any problem. <strong>but if the train goes directly from olten to zurich, without stop in aarau, you have to buy a ticket olten &#8211; zurich, or you&#8217;ll have to pay a monetary fine (CHF 80.-)&#8230;as if you would not have any ticket at all!</strong></p>
<p>but&#8230;. what is the difference for sbb?</p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2010/03/10/only-thing-that-sucks-about-sbb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>updating windows 7 rc to final</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2010/01/24/updating-windows-7-rc-to-final/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2010/01/24/updating-windows-7-rc-to-final/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 12:11:02 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=158</guid>
		<description><![CDATA[just wanted to create a little post about the possibility and my experiences with the upgrade;

to allow the update, steps as described on this howtogeek post are needed.
the upgrade must be run from your running windows 7 rc installation, not from the cd or usb-stick
it will take around 30 minutes to complete

there were only a [...]]]></description>
			<content:encoded><![CDATA[<p>just wanted to create a little post about the possibility and my experiences with the upgrade;</p>
<ol>
<li>to allow the update, steps as described on <a href="http://www.howtogeek.com/howto/3075/how-to-upgrade-the-windows-7-rc-to-rtm/">this howtogeek post</a> are needed.</li>
<li>the upgrade must be run from your running windows 7 rc installation, not from the cd or usb-stick</li>
<li>it will take around 30 minutes to complete</li>
</ol>
<p>there were only a few problems after the upgrade;</p>
<ul>
<li>nvidia driver was still working, but no games had antialiasing nor anisotropic filtering &#8211; after upgrading the driver, this works fine again</li>
<li>according to the upgrade compatibility check hamachi would have to be reinstalled, i just removed it</li>
<li>tricky: daemon tools (sptd) has problems after the upgrade, however, this can be fixed like described on <a href="http://geekswithblogs.net/apopovsky/archive/2009/08/14/re-installing-daemon-tools-lite-and-sptd-on-windows-7.aspx">this blog</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2010/01/24/updating-windows-7-rc-to-final/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>getting hp w2216 to work with ubuntu 9.10 beta on ibm z60m (radeon x600mobility)</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2009/10/05/getting-second-monitor-hp-w2216-to-work-with-ubuntu-9-10-beta-on-ibm-z60m-radeon-x600mobility/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2009/10/05/getting-second-monitor-hp-w2216-to-work-with-ubuntu-9-10-beta-on-ibm-z60m-radeon-x600mobility/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 14:10:10 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=152</guid>
		<description><![CDATA[this was strange;
usually, when xrandr outputs the following:



Screen 0: minimum 320 x 200, current 1680 x 1050, maximum 1680 x 1680



VGA-0 connected 1680&#215;1050+0+0 (normal left inverted right x axis y axis) 465mm x 291mm



&#160; &#160;1680&#215;1050 &#160; &#160; &#160;60.0*+



&#160; &#160;1600&#215;1000 &#160; &#160; &#160;60.0 &#160;



&#160; &#160;1280&#215;1024 &#160; &#160; &#160;75.0 &#160; &#160; 60.0 &#160;



&#160; &#160;1440&#215;900 &#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>this was strange;</p>
<p>usually, when <code>xrandr</code> outputs the following:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">Screen 0: minimum 320 x 200, current 1680 x 1050, maximum 1680 x 1680
</div>
</li>
<li class="li1">
<div class="de1">VGA-0 connected 1680&#215;1050+0+0 (normal left inverted right x axis y axis) 465mm x 291mm
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1680&#215;1050 &nbsp; &nbsp; &nbsp;60.0*+
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1600&#215;1000 &nbsp; &nbsp; &nbsp;60.0 &nbsp;
</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp;1280&#215;1024 &nbsp; &nbsp; &nbsp;75.0 &nbsp; &nbsp; 60.0 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1440&#215;900 &nbsp; &nbsp; &nbsp; 59.9 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1280&#215;960 &nbsp; &nbsp; &nbsp; 60.0 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1152&#215;864 &nbsp; &nbsp; &nbsp; 75.0 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1152&#215;720 &nbsp; &nbsp; &nbsp; 60.0 &nbsp;
</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp;1024&#215;768 &nbsp; &nbsp; &nbsp; 75.0 &nbsp; &nbsp; 60.0 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;832&#215;624 &nbsp; &nbsp; &nbsp; &nbsp;74.6 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;800&#215;600 &nbsp; &nbsp; &nbsp; &nbsp;75.0 &nbsp; &nbsp; 60.3 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;640&#215;480 &nbsp; &nbsp; &nbsp; &nbsp;75.0 &nbsp; &nbsp; 59.9 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;720&#215;400 &nbsp; &nbsp; &nbsp; &nbsp;70.1 &nbsp;
</div>
</li>
<li class="li2">
<div class="de2">DVI-0 connected (normal left inverted right x axis y axis)
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1360&#215;768 &nbsp; &nbsp; &nbsp; 59.8 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1152&#215;864 &nbsp; &nbsp; &nbsp; 60.0 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1024&#215;768 &nbsp; &nbsp; &nbsp; 60.0 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;800&#215;600 &nbsp; &nbsp; &nbsp; &nbsp;60.3 &nbsp;
</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp;640&#215;480 &nbsp; &nbsp; &nbsp; &nbsp;59.9 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">LVDS connected 1680&#215;1050+0+0 (normal left inverted right x axis y axis) 331mm x 207mm
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1680&#215;1050 &nbsp; &nbsp; &nbsp;60.1*+ &nbsp; 50.1 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1400&#215;1050 &nbsp; &nbsp; &nbsp;60.0 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1280&#215;1024 &nbsp; &nbsp; &nbsp;59.9 &nbsp;
</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp;1440&#215;900 &nbsp; &nbsp; &nbsp; 59.9 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1280&#215;960 &nbsp; &nbsp; &nbsp; 59.9 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1280&#215;854 &nbsp; &nbsp; &nbsp; 59.9 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1280&#215;800 &nbsp; &nbsp; &nbsp; 59.8 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1280&#215;720 &nbsp; &nbsp; &nbsp; 59.9 &nbsp;
</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp;1152&#215;768 &nbsp; &nbsp; &nbsp; 59.8 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;1024&#215;768 &nbsp; &nbsp; &nbsp; 59.9 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;800&#215;600 &nbsp; &nbsp; &nbsp; &nbsp;59.9 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;640&#215;480 &nbsp; &nbsp; &nbsp; &nbsp;59.4 &nbsp;
</div>
</li>
<li class="li1">
<div class="de1">S-video disconnected (normal left inverted right x axis y axis)</div>
</li>
</ol>
</div>
<p>(don&#8217;t ask me where dvi-0 comes from&#8230;)<br />
one would think a simple <code>xrandr --output VGA-0 --auto</code> would activate the second monitor. however, this doesn&#8217;t change anything. instead, i have to use the following:</p>
<p><code>xrandr --output VGA-0 --auto --same-as LVDS</code><br />
after closing the notebook lid, i get a picture on my monitor&#8230; but i may not turn off lvds or dvi-0, or the monitor (on vga) will turn off&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2009/10/05/getting-second-monitor-hp-w2216-to-work-with-ubuntu-9-10-beta-on-ibm-z60m-radeon-x600mobility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vmware workstation on ubuntu 9.10 beta</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2009/10/03/vmware-workstation-on-ubuntu-9-10-beta/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2009/10/03/vmware-workstation-on-ubuntu-9-10-beta/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 14:35:36 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=149</guid>
		<description><![CDATA[just installed the new ubuntu beta ond my notebook which i use for work. i need vmware on it for the xp vm that i have to use at work.
as always with new kernels and x-servers, vmware doesn&#8217;t just work even when using the newest version (6.5.3). in order to get it to work more [...]]]></description>
			<content:encoded><![CDATA[<p>just installed the new ubuntu beta ond my notebook which i use for work. i need vmware on it for the xp vm that i have to use at work.<br />
as always with new kernels and x-servers, vmware doesn&#8217;t just work even when using the newest version (6.5.3). in order to get it to work more or less, i needed to do the following things:</p>
<ol>
<li>start the installer with a special option and killing all tries to compile the modules, as described in here: <a href="http://www.google.ch/url?sa=t&amp;source=web&amp;ct=res&amp;cd=2&amp;url=http%3A%2F%2Fwww.mogilowski.net%2Flang%2Fde-de%2F2009%2F09%2F13%2Fvmware-workstation-player-installer-6-5-3-hang%2F&amp;ei=-V_HSvGRDoeImwP_npw9&amp;rct=j&amp;q=vmware+6.5.3+hang&amp;usg=AFQjCNGzgfSbnBOPPsxqcVTJ89iNUhwsTg">blog post by Sebastian Mogilowski</a></li>
<li>add the <code>line export VMWARE_USE_SHIPPED_GTK=force</code> to the file <code>/etc/vmware/bootstrap</code>, as described in this <a href="http://communities.vmware.com/thread/228636;start=30&amp;tstart=0">vmware thread</a> (go to page 3)</li>
</ol>
<p>i think it&#8217;s really time to change to virtualbox which is completely open, has better integration and works more reliable&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2009/10/03/vmware-workstation-on-ubuntu-9-10-beta/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>compression using fifo&#8217;s</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2009/08/28/compression-using-fifos/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2009/08/28/compression-using-fifos/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 14:08:03 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=144</guid>
		<description><![CDATA[little problem, smart solution;
i&#8217;m backing up my citrix xenserver vm&#8217;s using the command



xe template-export



i write the backup directly to a cifs-mounted share on the network. however, i need to compress those images, ideally before i send them over the network. the problem is that the template-export command doesn&#8217;t support writing to stdout, which would allow [...]]]></description>
			<content:encoded><![CDATA[<p>little problem, smart solution;</p>
<p>i&#8217;m backing up my citrix xenserver vm&#8217;s using the command</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">xe template-export</div>
</li>
</ol>
</div>
<p>i write the backup directly to a cifs-mounted share on the network. however, i need to compress those images, ideally before i send them over the network. the problem is that the template-export command doesn&#8217;t support writing to stdout, which would allow me to pipe it through gzip.</p>
<p>fortunately, there&#8217;s a way which allows me to pipe it through gzip nevertheless. i&#8217;m using a fifo;<br />
1st step: create a fifo</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">mkfifo gzipfifo</div>
</li>
</ol>
</div>
<p>2nd: start gzip and let it wait for data from the fifo and write to another file (in my case on the cifs-share)</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">gzip -c &gt; /mnt/backup/PMIRZ_Firewall_Demo.xva.gz &lt; gzipfifo &amp;</div>
</li>
</ol>
</div>
<p>3rd: write your backup to the fifo, instead of the mounted volume</p>
<p>NHAAAA, just noticed that the template-export command doesn&#8217;t want to write to files that already exist&#8230; but the above works for other things as well</pre>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2009/08/28/compression-using-fifos/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>problems with enigmail after update/reinstallation of ubuntu</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2009/08/15/problems-with-enigmail-after-updatereinstallation-of-ubuntu/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2009/08/15/problems-with-enigmail-after-updatereinstallation-of-ubuntu/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 08:11:21 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=138</guid>
		<description><![CDATA[just had a little problem to fix;
when i opened an encrypted or signed message in thunderbird, the error &#8220;the enigmime service is not available&#8221; was shown. however, enigmail and thunderbird were installed and even setting the path to the gpg binary manually doesn&#8217;t fix the problem.
however, it&#8217;s not too difficult to fix;



apt-get remove &#8211;purge enigmail



this [...]]]></description>
			<content:encoded><![CDATA[<p>just had a little problem to fix;</p>
<p>when i opened an encrypted or signed message in thunderbird, the error &#8220;the enigmime service is not available&#8221; was shown. however, enigmail and thunderbird were installed and even setting the path to the gpg binary manually doesn&#8217;t fix the problem.</p>
<p>however, it&#8217;s not too difficult to fix;</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">apt-get remove &#8211;purge enigmail</div>
</li>
</ol>
</div>
<p>this uninstalls enigmail, including global settings. it&#8217;s not enough however, you&#8217;ll have to open thunderbird and remove it using the extras &#8211; add-on&#8217;s dialogue. afterwards, you may reinstall enigmail and it works as always.</p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2009/08/15/problems-with-enigmail-after-updatereinstallation-of-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System Administrators Day</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2009/07/31/system-administrators-day/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2009/07/31/system-administrators-day/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 11:36:56 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=135</guid>
		<description><![CDATA[well, not much to say, just read it.

]]></description>
			<content:encoded><![CDATA[<p>well, not much to say, just read it.<a href="http://www.sysadminday.com"><br />
<img src="http://www.sysadminday.com/images/thank-468x60.gif" alt="SysAdminDay" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2009/07/31/system-administrators-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP Universal Print Driver with Citrix on Windows 2008 x64</title>
		<link>http://pascal-schwarz.ch/blog/index.php/2009/07/15/hp-universal-print-driver-with-citrix-on-windows-2008-x64/</link>
		<comments>http://pascal-schwarz.ch/blog/index.php/2009/07/15/hp-universal-print-driver-with-citrix-on-windows-2008-x64/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 07:45:12 +0000</pubDate>
		<dc:creator>iSO</dc:creator>
				<category><![CDATA[media]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://pascal-schwarz.ch/blog/?p=130</guid>
		<description><![CDATA[seems like there is a quite bad problem with HP Universal Print Driver 4.7 (and older) when used on a Citrix Server. According to some forum threads, the issues were resolved in version 4.7.2, however, this version is not available for public download, one needs to contact HP support to get it.
as I did this, [...]]]></description>
			<content:encoded><![CDATA[<p>seems like there is a quite bad problem with HP Universal Print Driver 4.7 (and older) when used on a Citrix Server. According to some forum threads, the issues were resolved in version 4.7.2, however, this version is not available for public download, one needs to contact HP support to get it.</p>
<p>as I did this, and I want to help other admins, here is a link: <a title="Download HP Universal Print Driver 4.7.2 (PCL5, PCL6 and PS)" href="http://pascal-schwarz.ch/stuff/upd_472_pcl5_pcl6_ps.zip">Download HP Universal Print Driver 4.7.2 (PCL5, PCL6 and PS)</a></p>
<p>Note: I did not test the driver yet, but it was obtained from HP directly</p>
<p><strong>Update:</strong> just changing the driver on the printserver did not help so far&#8230;.</p>
<p><strong>Update 2:</strong> seems like we could fix the problem by using the newly released specific driver for the hp color laserjet 5550 instead of the universal print driver</p>
]]></content:encoded>
			<wfw:commentRss>http://pascal-schwarz.ch/blog/index.php/2009/07/15/hp-universal-print-driver-with-citrix-on-windows-2008-x64/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

