<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2germanfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>evølutiøn-515.net</title>
	
	<link>http://blog.evolution515.net</link>
	<description>Chaos ist nur eine andere Bezeichung für steigende Komplexität.</description>
	<lastBuildDate>Wed, 03 Jun 2009 22:55:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/evolution515" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="evolution515" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2Fevolution515" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://www.bloglines.com/sub/http://feeds.feedburner.com/evolution515" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Ffeeds.feedburner.com%2Fevolution515" src="http://www.netvibes.com/img/add2netvibes.gif">Subscribe with Netvibes</feedburner:feedFlare><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2Fevolution515" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2Fevolution515" src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif">Subscribe with Pageflakes</feedburner:feedFlare><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://add.my.yahoo.com/content?lg=de&amp;url=http%3A%2F%2Ffeeds.feedburner.com%2Fevolution515" src="http://us.i1.yimg.com/us.yimg.com/i/de/my/addtomyyahoo4.gif">Subscribe with Mein Yahoo!</feedburner:feedFlare><item>
		<title>How to setup HTTPS for your Apache2</title>
		<link>http://blog.evolution515.net/article/how-to-setup-https-for-your-apache2/</link>
		<comments>http://blog.evolution515.net/article/how-to-setup-https-for-your-apache2/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 15:32:56 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Administratives]]></category>
		<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=555</guid>
		<description><![CDATA[Basic Information
First off, you need a SSL-Certificate for HTTPS. This certificates are usualy checked by your browser against SSL providers such as VeriSign for validity. If the outcame is invalid, some website may have been replaced with a fake-version by a hacker. The result is, that your browser warns you that the certificate for the [...]]]></description>
			<content:encoded><![CDATA[<h2>Basic Information</h2>
<p>First off, you need a SSL-Certificate for HTTPS. This certificates are usualy checked by your browser against SSL providers such as VeriSign for validity. If the outcame is invalid, some website may have been replaced with a fake-version by a hacker. The result is, that your browser warns you that the certificate for the site is invalid and it probalby was hacked or stuff like this (there was also a bug on creating invalid certificates on Debian-Linux some time ago *G*).</p>
<p>Anyway, you can still add the certificate as exception and get SSL-connection to the website, so no one is seeing what you are actually doing on that site or what data is beeing transferred (e.g. your E-Mail Client).</p>
<h2>Basic Setup</h2>
<p><strong>The easiest way to setup this stuff is as of following (assuming using Debian/Ubuntu and Apache2):</strong></p>
<blockquote><p>$ apt-get install openssl<br />
$ mkdir  -P /etc/apache2/ssl/<br />
$ openssl req $@ -new -x509 -days 365 -nodes -out server.crt -keyout server.key</p></blockquote>
<p><strong>Then add something like this to your Apache2-Configuration:</strong></p>
<blockquote><p>NameVirtualHost 443</p>
<p>&lt;VirtualHost *:443&gt;</p>
<p>SSLEngine on<br />
SSLOptions +FakeBasicAuth +ExportCertData +StrictRequire<br />
SSLCertificateFile /etc/apache2/ssl/server.crt<br />
SSLCertificateKeyFile /etc/apache2/ssl/server.key<br />
# SSLProtocol -all +TLSv1 +<em>SSLv3<br />
</em>SSLProtocol all -SSLv2 <em><br />
</em></p>
<p><em>[...]</em></p>
<p>&lt;/VirtualHost&gt;</p></blockquote>
<p>Basically, that&#8217;s it! Don&#8217;t forget to restart apache and also note that SSL2 is outdated and therefore unsecure. Be aware of that on using MSIE-Browsers from Microsoft! So i just disallowed it here in the example above. It also has opions set for using Basic HTTP-Auth on HTTPS and sets also some SSL-specific apache environmental veriables.</p>
<p>If Apache doesn&#8217;t start up look under /var/log/apache2/ for error messages!</p>
<h2>Extended Setup</h2>
<p>Some snippets if you already have a server key or want need to create your own, for having it signed and so on. If you set a password for a server key – which is indeed required for secuerity reasons – note, that Apache asks for it on startup.</p>
<p><strong>Create a server key</strong></p>
<blockquote><p>openssl genrsa -des3 -out server.key 1024</p></blockquote>
<p><strong>You can convert the secure key to an unsecure („without password“):</strong></p>
<blockquote><p>$ openssl rsa -in server.key -out server.key.insecure</p></blockquote>
<p><strong>Create a basic  certificate for your key by using this:</strong></p>
<blockquote><p>$ openssl req -new -key server.key -out server.csr</p></blockquote>
<p><strong>Then sign it:</strong></p>
<blockquote><p>$ openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt</p></blockquote>
<p><strong>Same stuff with insecure key:</strong></p>
<blockquote><p>$ openssl x509 -req -days 365 -in server.csr -signkey server.key.insecure -out server.crt</p></blockquote>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/evolution515?a=goRnnwSTlTw:xZ0vife0y7w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/evolution515?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=goRnnwSTlTw:xZ0vife0y7w:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/evolution515?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=goRnnwSTlTw:xZ0vife0y7w:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/evolution515?i=goRnnwSTlTw:xZ0vife0y7w:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=goRnnwSTlTw:xZ0vife0y7w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/evolution515?i=goRnnwSTlTw:xZ0vife0y7w:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=goRnnwSTlTw:xZ0vife0y7w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/evolution515?i=goRnnwSTlTw:xZ0vife0y7w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=goRnnwSTlTw:xZ0vife0y7w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/evolution515?i=goRnnwSTlTw:xZ0vife0y7w:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/how-to-setup-https-for-your-apache2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It’s getting sweet for tweeties on this blog ;)</title>
		<link>http://blog.evolution515.net/article/its-getting-sweet-for-tweeties-here-on-this-blog/</link>
		<comments>http://blog.evolution515.net/article/its-getting-sweet-for-tweeties-here-on-this-blog/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 20:27:33 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=543</guid>
		<description><![CDATA[Ever minded that moment you wanna post just some cool links to your blog but didn&#8217;t want to write a whole article. So you you just close the browser windows, and that&#8217;s it? No! 
No more! I remembered twitter.com today and thought it would be cool to include that service here. After hammering repeatingly twittrrrr [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Ever minded that moment you wanna post just some cool links to your blog but didn&#8217;t want to write a whole article. So you you just close the browser windows, and that&#8217;s it? No! </strong></p>
<p><a href="http://www.drweb.de/magazin/20-twitter-icons-websites/"><img class="alignleft size-full wp-image-547" style="margin-right: 2em;" title="Twitter.com" src="http://blog.evolution515.net/media/twitterific.png" alt="Twitter.com" width="138" height="134" /></a>No more! I remembered <a href="http://www.twitter.com">twitter.com </a>today and thought it would be cool to include that service here. After hammering repeatingly twitt<em>r<span style="text-decoration: line-through;">rrr</span></em> into the address bar I noticed Twitter is <em>not </em>that stylish Web 2.0 R-thing. Oh dear! Damn Web 2.0!</p>
<div class="dean_ch" style="white-space: wrap;">&lt;?php<br />
if (!empty($_SERVER['HTTP_REFERER']) || $_SERVER['REQUEST_URI']==&#8221;)<br />
include(&#8216;twitter.php&#8217;);<br />
?&gt;</div>
<p>Nonetheless just look at the top of this page and you see a nice twitter box . Implementation is done via <a href="http://www.simplepie.org/">SimplePIE</a>. Same thing on the right side about the <em>shared headlines <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/evolution515?a=3Idxg3dBJQc:O6nAI6ZLmwQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/evolution515?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=3Idxg3dBJQc:O6nAI6ZLmwQ:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/evolution515?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=3Idxg3dBJQc:O6nAI6ZLmwQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/evolution515?i=3Idxg3dBJQc:O6nAI6ZLmwQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=3Idxg3dBJQc:O6nAI6ZLmwQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/evolution515?i=3Idxg3dBJQc:O6nAI6ZLmwQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=3Idxg3dBJQc:O6nAI6ZLmwQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/evolution515?i=3Idxg3dBJQc:O6nAI6ZLmwQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=3Idxg3dBJQc:O6nAI6ZLmwQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/evolution515?i=3Idxg3dBJQc:O6nAI6ZLmwQ:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/its-getting-sweet-for-tweeties-here-on-this-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally! Webfonts are becoming a reality (via @font-face)!</title>
		<link>http://blog.evolution515.net/article/finally-webfonts-are-becoming-a-reality-font-face/</link>
		<comments>http://blog.evolution515.net/article/finally-webfonts-are-becoming-a-reality-font-face/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 18:13:32 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Browser]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=540</guid>
		<description><![CDATA[Great things to come! Browser support for Webfonts via CSS @font-face:

Internet Explorer 4–7 : Embedded OpenType (EOT)
Safari 3.1: TrueType, OpenType(TT), OpenType(PS)
Opera 10 alpha: TrueType, OpenType(TT), OpenType(PS)
Firefox 3.1 beta: TrueType, OpenType(TT), OpenType(PS)

Somehow i knew the browser from hell plays the devil&#8217;s game again   MSIE8 probably should have it, too. But I would have to [...]]]></description>
			<content:encoded><![CDATA[<h3><strong>Great things to come! Browser support for Webfonts</strong> <strong>via CSS @font-face:</strong></h3>
<ul>
<li><strong>Internet Explorer 4–7 : </strong>Embedded OpenType (EOT)</li>
<li><strong>Safari 3.1:</strong> TrueType, OpenType(TT), OpenType(PS)</li>
<li><strong>Opera 10 alpha:</strong> TrueType, OpenType(TT), OpenType(PS)</li>
<li><strong>Firefox 3.1 beta:</strong> TrueType, OpenType(TT), OpenType(PS)</li>
</ul>
<p>Somehow i knew the browser from hell plays the devil&#8217;s game again <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  MSIE8 probably should have it, too. But I would have to check back for it.</p>
<p><strong>Here&#8217;s a nice presentation and a font matrix about the topic by Richard Rutter:</strong></p>
<ul>
<li><a href="http://webtypography.net/talks/skillswap09/">Presentation on web typography</a></li>
<li><a href="http://24ways.org/2007/increase-your-font-stacks-with-font-matrix">Font Matrix</a></li>
</ul>
<p>Well, as he tells us typographers will go wild on beeing scared about seeing their oh sooo expensive fonts everywhere embedded in the web. Perhaps it will be so. I don&#8217;t mind. This is a good chance for<em> creative common</em> fonts and yet unknown font designers to get known at least among the good web designers!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/evolution515?a=d7Nf3qtbS_w:hMHXlusGOYU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/evolution515?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=d7Nf3qtbS_w:hMHXlusGOYU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/evolution515?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=d7Nf3qtbS_w:hMHXlusGOYU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/evolution515?i=d7Nf3qtbS_w:hMHXlusGOYU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=d7Nf3qtbS_w:hMHXlusGOYU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/evolution515?i=d7Nf3qtbS_w:hMHXlusGOYU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=d7Nf3qtbS_w:hMHXlusGOYU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/evolution515?i=d7Nf3qtbS_w:hMHXlusGOYU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=d7Nf3qtbS_w:hMHXlusGOYU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/evolution515?i=d7Nf3qtbS_w:hMHXlusGOYU:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/finally-webfonts-are-becoming-a-reality-font-face/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Introduction to Virtualisation on Linux</title>
		<link>http://blog.evolution515.net/article/an-introduction-to-virtualisation-on-linux/</link>
		<comments>http://blog.evolution515.net/article/an-introduction-to-virtualisation-on-linux/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 13:03:30 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[openvz]]></category>
		<category><![CDATA[paravirtualization]]></category>
		<category><![CDATA[uml]]></category>
		<category><![CDATA[virtual machines]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=525</guid>
		<description><![CDATA[There are several kinds of virtualization techniques which provide similar features but differ in the degree of abstraction and the methods used for virtualization. Here is a little overview I copied and pasted from some websites (links at the end of the article).

Virtual machines (VMs) 
Virtual machines emulate some real or fictional hardware, which in [...]]]></description>
			<content:encoded><![CDATA[<p><strong>There are several kinds of virtualization techniques which provide similar features but differ in the degree of abstraction and the methods used for virtualization. Here is a little overview I copied and pasted from some websites (links at the end of the article).</strong></p>
<p><a href="http://en.wikipedia.org/wiki/Operating_system-level_virtualization"></a></p>
<h3>V<span class="mw-headline">irtual machines (VMs) </span></h3>
<p><strong>Virtual machines</strong> emulate some real or fictional hardware, which in turn requires real resources from the <em>host</em> (the machine running the VMs). This approach, used by most <em>system emulators</em>, allows the emulator to run an arbitrary <em>guest operating system</em> without modifications because guest OS is not aware that it is not running on real hardware. The main issue with this approach is that some CPU instructions require additional privileges and may not be executed in user space thus requiring a <em>virtual machines monitor</em> (VMM) to analyze executed code and make it safe on-the-fly.</p>
<ul>
<li>The hardware emulation approach is used by VMWare, <a class="external text" title="http://fabrice.bellard.free.fr/qemu/" rel="nofollow" href="http://fabrice.bellard.free.fr/qemu/">QEMU</a>, <a title="Virtual PC" href="http://en.wikipedia.org/wiki/Virtual_PC">Virtual PC</a>, <a title="VirtualBox" href="http://en.wikipedia.org/wiki/VirtualBox">VirtualBox</a> and <a title="Parallels Workstation" href="http://en.wikipedia.org/wiki/Parallels_Workstation">Parallels Workstation</a>.</li>
<li>Runs a complete virtualized OS as a separate process, sometimes with a mix of virtual and real hardware.</li>
<li>Probably the slowest virtualisation technique, but due to some recent changes to CPU support for virtualisation this can be run a bit faster than it could be before.</li>
<li>Does not need root privilege to run.</li>
</ul>
<h3><span class="mw-headline"> Paravirtualization </span></h3>
<p>This technique also requires a VMM, but most of its work is performed in the <em>guest OS</em> code, which in turn is <em>modified</em> to support this VMM and avoid unnecessary use of privileged instructions. The paravirtualization technique also enables running different OS on a single server, but requires them to be ported, i.e. they should “know“ they are running under the <a href="http://en.wikipedia.org/wiki/Hypervisor">hypervisor</a>.</p>
<ul>
<li>Used in <a title="Xen" href="http://en.wikipedia.org/wiki/Xen">Xen</a>, <a title="User-mode Linux" href="http://en.wikipedia.org/wiki/User-mode_Linux">UML</a>, <a class="mw-redirect" title="CoLinux" href="http://en.wikipedia.org/wiki/CoLinux">CoLinux</a></li>
<li>The Kernel has to be part of the guest OS.</li>
<li> Runs as a mix of virtual and real hardware.</li>
<li>Xen is often considedered to be buggy so most users prefer therefore UML, but Xen may be faster.</li>
<li>A UML guest OS runs around 2x slower than the host OS.</li>
<li>Kernel changes are basically not necessary, but often required by the hypervisor and can lower the overhead by taking advantage of the host CPU support for virtualisation.</li>
<li>Both Xen and UML have support for <a title="Thread-local storage" href="http://en.wikipedia.org/wiki/Thread-local_storage">Thread Local Storage</a> (introduced by Xen)</li>
</ul>
<h3>Operating system-level <a title="Virtualization">virtualization</a></h3>
<p>This method seperates the <a class="mw-redirect" title="Kernel (computer science)" href="http://en.wikipedia.org/wiki/Kernel_%28computer_science%29">kernel</a> of an <a title="Operating system" href="http://en.wikipedia.org/wiki/Operating_system">operating system</a> and therefore allows multiple isolated user-space instances, instead of just one. Such instances (often called containers, VEs, VPSs or jails) may look and feel like a real server, from the point of view of its owner. On Unix systems, this technology can be thought of as an advanced implementation of the standard <a title="Chroot" href="http://en.wikipedia.org/wiki/Chroot">chroot</a> mechanism.</p>
<p>OS-level virtualization systems have been designed to provide the required isolation and security to run multiple applications or copies of the same OS (but different distributions of the OS) on the same server. In addition to isolation mechanisms, the kernel often provides resource management features to limit the impact of one container&#8217;s activities on the other containers.</p>
<ul>
<li><a class="external text" title="http://openvz.org/" rel="nofollow" href="http://openvz.org/">OpenVZ</a>, <a class="external text" title="http://www.swsoft.com/products/virtuozzo" rel="nofollow" href="http://www.swsoft.com/products/virtuozzo">Virtuozzo</a>, <a class="external text" title="http://linux-vserver.org/" rel="nofollow" href="http://linux-vserver.org/">Linux-VServer</a>, <a class="external text" title="http://www.sun.com/bigadmin/content/zones/" rel="nofollow" href="http://www.sun.com/bigadmin/content/zones/">Solaris Zones</a> and <a class="external text" title="http://www.freebsd.org/doc/en_US.ISO8859-1/books/arch-handbook/jail.html" rel="nofollow" href="http://www.freebsd.org/doc/en_US.ISO8859-1/books/arch-handbook/jail.html">FreeBSD Jails</a> are examples of OS-level virtualization.</li>
<li>little or no overhead due to sharing a host kernel</li>
<li>not as flexible as other virtualization approaches</li>
<li> can <em>not </em>host a guest operating system different from the host OS</li>
<li>host system can be detected by intruder</li>
<li>good mix between security and speed</li>
<li><strong>OpenVZ</strong> is probably the fastest solution</li>
<li><strong>chroot:</strong> Shares process space. File system access is restricted. Further restrictions can be imposed by the use of capabilities.</li>
<li><strong>chroot</strong> does not virtualize system calls, access to block devices or virtual file systems (such as <tt>/proc</tt> and <tt>/sys</tt> on Linux; not provided by default!)</li>
<li><strong>vserver:</strong> Access to process space is restricted. The use of capabilities and contexts is made simpler by vserver-utils. Needs kernel changes.</li>
<li>useful for honeypotting by simulating a real system running network services.</li>
</ul>
<h2><span class="mw-headline"> Short comparison </span></h2>
<p>The three techniques differ in complexity of implementation, breadth of OS support, performance in comparison with standalone server, and level of access to common resources. For example, VMs have wider scope of usage, but poor performance. Para-VMs have better performance, but can support fewer OS because of need to modify the original OS.</p>
<p>Virtualization on the OS level provides the best performance and scalability compared to other approaches. Performance difference of such systems can be as low as 1…3%, comparing with that of a standalone server. <a class="mw-redirect" title="Virtual Environment" href="http://wiki.openvz.org/Virtual_Environment">Virtual Environments</a> are usually also much simpler to administer as all of them can be accessed and administered from the host system. Generally, such systems are the best choice for server consolidation of same OS workloads.</p>
<p>Working under linux UML provides a quick and easy way for creating linux test systems.  For doing the real deal my choice would be OpenVZ, because it is not only the fastest solution but more easy to handle than chroots. If you ever need other operating systems use Zen for productive virtualisation, and the good old Virtual Machines for test systems &#8211; i recommand Sun&#8217;s VirtualBox, which probably can run a little bit instabil. Therefore use VMWare on windows!</p>
<p>Ah yeah… sorry, i couldn&#8217;t test the Solaris and BSD solutions, but i would be very interested in them. I guess Unix is stil a little bit ahead in enterprise features. I wonder what my Red Hat Enterprise pal would say <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong>Here are some links on tutorials, wikis and so on:</strong></p>
<ul>
<li><a href="http://blog.evolution515.net/wp-admin/post.php?action=edit&amp;post=525&amp;message=7">Debian Tutorial on UML (1)</a></li>
<li><a href="http://jclement.ca/uml/">Debian Tutorial on UML (2)</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=617225">Ubuntu Tutorial on OpenVZ</a></li>
<li><a href="http://download.openvz.org/template/precreated/">OpenVZ Template Systems</a></li>
<li><a href="http://en.wikipedia.org/wiki/Comparison_of_platform_virtual_machines">Wikipedia: Comparison of platform virtual machines</a></li>
<li><a href="http://wiki.openvz.org/Introduction_to_virtualization">OpenVZ Wiki: Introduction to virtualization</a><em> (most is ripped from there)</em></li>
<li><a href="http://en.wikipedia.org/wiki/Operating_system-level_virtualization">Wikipedia: Operating system-level virtualization</a></li>
<li><a href="http://www.pro-linux.de/work/virtual-ha/virtual-ha3.html">Pro-Linux: Article on Xen and high availibility virtual servers</a> <em>(german language!)</em></li>
<li><a href="http://www.hpl.hp.com/techreports/2007/HPL-2007-59.pdf">HPs review on Xen vs. OpenVZ<br />
</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/evolution515?a=zq0kS9CUD7k:4-KvyZjGYH4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/evolution515?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=zq0kS9CUD7k:4-KvyZjGYH4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/evolution515?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=zq0kS9CUD7k:4-KvyZjGYH4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/evolution515?i=zq0kS9CUD7k:4-KvyZjGYH4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=zq0kS9CUD7k:4-KvyZjGYH4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/evolution515?i=zq0kS9CUD7k:4-KvyZjGYH4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=zq0kS9CUD7k:4-KvyZjGYH4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/evolution515?i=zq0kS9CUD7k:4-KvyZjGYH4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=zq0kS9CUD7k:4-KvyZjGYH4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/evolution515?i=zq0kS9CUD7k:4-KvyZjGYH4:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/an-introduction-to-virtualisation-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aaaargh! MSIE must die! Flicker problem solved!</title>
		<link>http://blog.evolution515.net/article/aaaargh-msie-must-die-flicker-problem-solved/</link>
		<comments>http://blog.evolution515.net/article/aaaargh-msie-must-die-flicker-problem-solved/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 16:19:54 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Browser]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[flicker]]></category>
		<category><![CDATA[msie]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=520</guid>
		<description><![CDATA[&#60;head&#62;
&#60;title&#62;&#60;?php print $head_title; ?&#62;&#60;/title&#62;
&#60;?php print $head; ?&#62;
&#60;?php print $styles; ?&#62;
&#60;?php print $scripts; ?&#62;
&#60;script type=&#34;text/javascript&#34;&#62;&#60;?php /* Needed to avoid Flash of Unstyled Content in MSIE */ ?&#62; &#60;/script&#62;
&#60;/head&#62;
So stupiiiid! But a trick I didn&#8217;t know yet… from the Drupal Zen Theme.
]]></description>
			<content:encoded><![CDATA[<div class="dean_ch" style="white-space: wrap;">&lt;head&gt;<br />
&lt;title&gt;&lt;?php <a href="http://www.php.net/print"><span class="kw3">print</span></a> <span class="re0">$head_title</span>; ?&gt;&lt;/title&gt;<br />
<span class="kw2">&lt;?php</span> <a href="http://www.php.net/print"><span class="kw3">print</span></a> <span class="re0">$head</span>; <span class="kw2">?&gt;</span><br />
<span class="kw2">&lt;?php</span> <a href="http://www.php.net/print"><span class="kw3">print</span></a> <span class="re0">$styles</span>; <span class="kw2">?&gt;</span><br />
<span class="kw2">&lt;?php</span> <a href="http://www.php.net/print"><span class="kw3">print</span></a> <span class="re0">$scripts</span>; <span class="kw2">?&gt;</span><br />
&lt;script type=<span class="st0">&quot;text/javascript&quot;</span>&gt;&lt;?php <span class="coMULTI">/* Needed to avoid Flash of Unstyled Content in MSIE */</span> <span class="kw2">?&gt;</span> <span class="kw2">&lt;/script&gt;</span><br />
&lt;/head&gt;</div>
<p>So stupiiiid! But a trick I didn&#8217;t know yet… from the <a href="http://drupal.org/project/zen">Drupal Zen Theme</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/evolution515?a=zhmm9kfLaE8:LMLWAARR-FI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/evolution515?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=zhmm9kfLaE8:LMLWAARR-FI:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/evolution515?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=zhmm9kfLaE8:LMLWAARR-FI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/evolution515?i=zhmm9kfLaE8:LMLWAARR-FI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=zhmm9kfLaE8:LMLWAARR-FI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/evolution515?i=zhmm9kfLaE8:LMLWAARR-FI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=zhmm9kfLaE8:LMLWAARR-FI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/evolution515?i=zhmm9kfLaE8:LMLWAARR-FI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=zhmm9kfLaE8:LMLWAARR-FI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/evolution515?i=zhmm9kfLaE8:LMLWAARR-FI:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/aaaargh-msie-must-die-flicker-problem-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resetting the MySQL root password…</title>
		<link>http://blog.evolution515.net/article/resetting-mysql-root-password/</link>
		<comments>http://blog.evolution515.net/article/resetting-mysql-root-password/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 12:00:48 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Datenbanken]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=259</guid>
		<description><![CDATA[A little snippet you may need from time to time  
$ /etc/init.d/mysql stop
$ killall mysqld; sleep 5; killall -9 mysqld
$ sudo /usr/bin/mysqld_safe &#8211;skip-grant-tables &#38;amp;
$ mysql
mysql&#62; USE mysql;
mysql&#62; UPDATE user SET Password=PASSWORD&#40;&#8216;myNewPAssword&#8217;&#41; WHERE Host=&#8216;localhost&#8217; AND User=&#8216;root&#8217;;
mysql&#62; exit;
$ /etc/init.d/mysql stop # &#40;no &#8216;restart&#8217; here or mysql may reload without grant-tables!&#41;
$ /etc/init.d/mysql start
]]></description>
			<content:encoded><![CDATA[<p>A little snippet you may need from time to time <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div class="dean_ch" style="white-space: wrap;">$ /etc/init.d/mysql stop<br />
$ <span class="kw2">killall</span> mysqld; <span class="kw2">sleep</span> <span class="nu0">5</span>; <span class="kw2">killall</span> <span class="nu0">-9</span> mysqld<br />
$ <span class="kw2">sudo</span> /usr/bin/mysqld_safe &#8211;skip-grant-tables &amp;amp;<br />
$ mysql<br />
mysql&gt; USE mysql;<br />
mysql&gt; UPDATE user SET <span class="re2">Password=</span>PASSWORD<span class="br0">&#40;</span><span class="st0">&#8216;myNewPAssword&#8217;</span><span class="br0">&#41;</span> WHERE <span class="re2">Host=</span><span class="st0">&#8216;localhost&#8217;</span> AND <span class="re2">User=</span><span class="st0">&#8216;root&#8217;</span>;<br />
mysql&gt; <span class="kw3">exit</span>;<br />
$ /etc/init.d/mysql stop <span class="re3"># <span class="br0">&#40;</span>no </span><span class="st0">&#8216;restart&#8217;</span> here or mysql may reload without grant-tables!<span class="br0">&#41;</span><br />
$ /etc/init.d/mysql start</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/evolution515?a=0huB6ZzSKks:INSOoAvLZJU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/evolution515?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=0huB6ZzSKks:INSOoAvLZJU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/evolution515?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=0huB6ZzSKks:INSOoAvLZJU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/evolution515?i=0huB6ZzSKks:INSOoAvLZJU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=0huB6ZzSKks:INSOoAvLZJU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/evolution515?i=0huB6ZzSKks:INSOoAvLZJU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=0huB6ZzSKks:INSOoAvLZJU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/evolution515?i=0huB6ZzSKks:INSOoAvLZJU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=0huB6ZzSKks:INSOoAvLZJU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/evolution515?i=0huB6ZzSKks:INSOoAvLZJU:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/resetting-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Giving PDFs an “Apple Keynote” flavor (on Linux and Windows)</title>
		<link>http://blog.evolution515.net/article/giving-pdfs-an-apple-keynote-flavor-on-linux-and-windows/</link>
		<comments>http://blog.evolution515.net/article/giving-pdfs-an-apple-keynote-flavor-on-linux-and-windows/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 12:26:09 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[apple keynote]]></category>
		<category><![CDATA[impressive]]></category>
		<category><![CDATA[keyjnote]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=505</guid>
		<description><![CDATA[Still I don&#8217;t have an Apple Mac or Keynote to make one of these smooth candy-like presentations.But now but there is now another more standard-compliant (OASIS) solution out there to flavor up your presentations.
It has been around awhile under the name of KeyJnote which Apple didn&#8217;t like, so now it is called Impress!ve – hopefully [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-506" title="impressve" src="http://blog.evolution515.net/media/impressve-300x223.png" alt="impressve" width="276" height="206" /><strong>Still I don&#8217;t have an Apple Mac or Keynote to make one of these smooth candy-like presentations.But now but there is now another more standard-compliant (OASIS) solution out there to flavor up your presentations.</strong></p>
<p>It has been around awhile under the name of <em>KeyJnote</em> which Apple didn&#8217;t like, so now it is called <em>Impress!ve – </em>hopefully FOSS will like. It simply displays your presentations using full OpenGL eye-candy and adds also some nice features.</p>
<p>All you have to do ist to export your Presentations to PDF, best done in OpenImpress that allows javascript&#8217;ed “animated” PDF <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>There&#8217;s also an option to add more specific scripting to your presentation using an <em>.info</em>-file like:</p>
<div class="dean_ch" style="white-space: wrap;">PageProps = {<br />
&nbsp; &nbsp; 1: { &#8216;title&#8217;: &#8216;Title Page XXX&#8217;, &#8216;transition&#8217;: PagePeel },<br />
&nbsp; &nbsp; 2: { &#8216;title&#8217;: &#8216;Introduction Einf&#252;hruing&#8217; },<br />
&nbsp; &nbsp; 3: { &#8216;video&#8217;: &#8216;video.flv&#8217; },<br />
&nbsp; &nbsp; 5: { &#8216;timeout&#8217;: 3500 },<br />
&nbsp; &nbsp; 8: { &#8216;overview&#8217;: False },<br />
}</div>
<p>The project is around version 0.2.x so has still to develop. It runs stable and I like the approach – better than converting everything to Flash for consistency. I guess the thing we really need is a new extension to an XML-based presentation format like we have in <em>OpenImpress</em>. Or probably <a href="http://developer.apple.com/technotes/tn2002/tn2067.html">Apple&#8217;s Keynote XML</a> which seems to be also an open format. But still i muss cool looking templates for presentations and beveled header text and so on…</p>
<p><strong>More information and downloads can be found here:</strong><br />
<a href="http://impressive.sourceforge.net/">http://impressive.sourceforge.net/</a></p>
<p><strong>UPDATE: </strong>Following switch does make much sense on slower computers…</p>
<dl>
<dt><code>-R <em>&lt;X&gt;</em>x<em>&lt;Y&gt;</em></code> or <code>--meshres <em>&lt;X&gt;</em>x<em>&lt;Y&gt;</em></code></dt>
<dd>Most effects subdivide the visible screen into a mesh of rectangular or quadratic pieces, each with its own coordinates and alpha blend values. Using this parameter, the resolution of the subdivision mesh can be defined. The default value is 48&#215;36. On slow machines, lower values like 24&#215;18 or 12&#215;9 can heavily speed up transition rendering at the cost of visual quality. On the other hand, higher values like 64&#215;48 or 96&#215;72 improve quality, but use much more CPU cycles.</dd>
</dl>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/evolution515?a=Oze4ef7G16U:JN9h1wqXDkc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/evolution515?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=Oze4ef7G16U:JN9h1wqXDkc:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/evolution515?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=Oze4ef7G16U:JN9h1wqXDkc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/evolution515?i=Oze4ef7G16U:JN9h1wqXDkc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=Oze4ef7G16U:JN9h1wqXDkc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/evolution515?i=Oze4ef7G16U:JN9h1wqXDkc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=Oze4ef7G16U:JN9h1wqXDkc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/evolution515?i=Oze4ef7G16U:JN9h1wqXDkc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=Oze4ef7G16U:JN9h1wqXDkc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/evolution515?i=Oze4ef7G16U:JN9h1wqXDkc:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/giving-pdfs-an-apple-keynote-flavor-on-linux-and-windows/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>The power of vim and Dojo</title>
		<link>http://blog.evolution515.net/article/the-power-of-vim-and-dojo/</link>
		<comments>http://blog.evolution515.net/article/the-power-of-vim-and-dojo/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 21:47:57 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=489</guid>
		<description><![CDATA[…or why for some still oldskool editors rule. Not really convincing me  
http://dojotdg.zaffra.com/2009/01/becoming-more-productive-with-dojo-and-vim-screencast/
]]></description>
			<content:encoded><![CDATA[<p>…or why for some still oldskool editors rule. Not really convincing me <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><a href="http://blog.evolution515.net/wp-admin/post-new.php">http://dojotdg.zaffra.com/2009/01/becoming-more-productive-with-dojo-and-vim-screencast/</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/evolution515?a=oPaC7ErsaZM:joIhnf9Wyd0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/evolution515?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=oPaC7ErsaZM:joIhnf9Wyd0:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/evolution515?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=oPaC7ErsaZM:joIhnf9Wyd0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/evolution515?i=oPaC7ErsaZM:joIhnf9Wyd0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=oPaC7ErsaZM:joIhnf9Wyd0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/evolution515?i=oPaC7ErsaZM:joIhnf9Wyd0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=oPaC7ErsaZM:joIhnf9Wyd0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/evolution515?i=oPaC7ErsaZM:joIhnf9Wyd0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=oPaC7ErsaZM:joIhnf9Wyd0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/evolution515?i=oPaC7ErsaZM:joIhnf9Wyd0:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/the-power-of-vim-and-dojo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coolest Slideshow-Screensavers on earth (Windows)</title>
		<link>http://blog.evolution515.net/article/coolest-slideshow-screensavers-on-earth-windows/</link>
		<comments>http://blog.evolution515.net/article/coolest-slideshow-screensavers-on-earth-windows/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 21:36:21 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[glslideshow]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[screensaver]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=201</guid>
		<description><![CDATA[Probably you know the glslideshow-Screensaver from Linux (also on OS X):

A1:1 conversion of the screensaver is Nostalgic by Gregg. Set image delay to 24sec and a transition of 5sec to run it smoothly.
The MotionPicture-Screensaver is similar. You better also tweak the setting here or it might run to fast.
Microsoft has also a similar screensaver, but [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Probably you know the glslideshow-Screensaver from Linux (also on OS X):</strong></p>
<ul>
<li>A1:1 conversion of the screensaver is <a href="http://www.greggman.com/nostalgic">Nostalgic</a> by Gregg. Set image delay to 24sec and a transition of 5sec to run it smoothly.</li>
<li>The <a href="http://www.cs.ucr.edu/~gstitt/motionpicture/index.html">MotionPicture</a>-Screensaver is similar. You better also tweak the setting here or it might run to fast.</li>
<li>Microsoft has also a similar screensaver, but it cannot read subdirectories of your image folder. You may consider to download the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=d219b9da-9bb2-42e1-9313-9af968b5d492&amp;DisplayLang=en">Images of Ireland</a> (Validation required) which includes the screensaver instead of paying $20</li>
<li>Last but not least you should have a look at the <a href="http://pack.google.com/screensaver.html">Google Photos Screensaver </a> from the english <a href="http://pack.google.com/intl/en/pack_installer.html?hl=en&amp;gl=us">Google Pack</a>. You won&#8217;t see it in the german Google-Pack, probably because it is fed by <a href="http://groups.google.com/group/google-pack/web/check-out-this-feed">Photofeeds</a> like the one on flickr. Anyway i encountered two or three problems with the screensaver, not wanting to switch back from the OpenGL or DirectX-Mode on exit and so let me see my desktop again. The only chance was to reboot. Also i dislike not beeing able to switch of the info-bars and the <a class="zem_slink" title="Google logo" rel="wikipedia" href="http://en.wikipedia.org/wiki/Google_logo">Google-logo</a> and i also don&#8217;t like also seeing mini-sized photos.</li>
</ul>
<p><strong>Here are some feeds i found interesting:</strong></p>
<ul>
<li><a href="http://www.earthshots.org/screensaver.php">Earthshots.com</a></li>
<li><a href="http://api.flickr.com/services/feeds/photos_public.gne?id=1587948589&amp;tags=sexy,club,house&amp;tagmode=all&amp;format=rss2">flickr: Club pictures</a></li>
<li><a href="http://api.flickr.com/services/feeds/photos_public.gne?tags=sexy,techno&amp;tagmode=all&amp;format=rss2">flickr: Club pictures II</a></li>
<li><a href="http://api.flickr.com/services/feeds/photos_public.gne?tags=ministry%20of%20sound&amp;tagmode=all&amp;format=rss2">flickr: Club pictures III (Ministry of Sound)</a></li>
<li><a href="http://api.flickr.com/services/feeds/photos_public.gne?tags=playboy,sexy&amp;tagmode=all&amp;format=rss2">flickr: Erotic Photos I &#8211; Playboy Bunnies I</a></li>
<li><a href="http://api.flickr.com/services/feeds/photos_public.gne?tags=playboy,chick&amp;tagmode=all&amp;format=rss2">flickr: Erotic Photos II &#8211; Playboy bunnies II<br />
</a></li>
<li><a href="http://api.flickr.com/services/feeds/photos_public.gne?tags=sexy,model&amp;tagmode=all&amp;format=rss2">flickr: Erotic Photos III &#8211; Sexy Models</a></li>
<li><a href="http://api.flickr.com/services/feeds/photos_public.gne?tags=erotic,bw&amp;tagmode=all&amp;format=rss2">flickr: Erotic Photos VI &#8211; b/w</a></li>
<li><a href="http://api.flickr.com/services/feeds/photos_public.gne?id=1587948589&amp;tags=polar,arctic&amp;tagmode=any&amp;format=rss2">flickr: Polar and Arctic Pictures</a></li>
<li><a href="http://api.flickr.com/services/feeds/photos_public.gne?id=12002611@N05&amp;lang=en-us&amp;format=rss_200">flickr: Photos from Lone Cypress</a></li>
<li><a href="http://feeds.feedburner.com/LivesciencecomImageOfTheDay">LiveScience.com &#8211; Image of the Day</a></li>
<li><a href="http://feeds.feedburner.com/LivesciencecomAmazingImages">LiveScience.com &#8211; Amazing Pictures</a></li>
<li><a href="http://picasaweb.google.com/data/feed/base/user/tagezphoto/albumid/5004753079870525505?kind=photo&amp;alt=rss&amp;hl=en_US">PicasaWeb from Google.com</a></li>
<li><a href="http://feeds.feedburner.com/SpacecomImageOfTheDay">Space.com &#8211; Image of the Day</a></li>
<li><a href="http://feeds.feedburner.com/space/XRSS">Space.com &#8211; Amazing Images</a></li>
</ul>
<p><strong>Anyway, it&#8217;s easy to find more pictures:</strong></p>
<pre>http://api.flickr.com/services/feeds/photos_public.gne?tags=<span style="color:red;">&lt;your tags here, separeted by comma&gt;</span>&amp;tagmode=all&amp;format=rss2</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/evolution515?a=sdU3ol0xWk0:4nddz1ZeCdw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/evolution515?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=sdU3ol0xWk0:4nddz1ZeCdw:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/evolution515?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=sdU3ol0xWk0:4nddz1ZeCdw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/evolution515?i=sdU3ol0xWk0:4nddz1ZeCdw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=sdU3ol0xWk0:4nddz1ZeCdw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/evolution515?i=sdU3ol0xWk0:4nddz1ZeCdw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=sdU3ol0xWk0:4nddz1ZeCdw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/evolution515?i=sdU3ol0xWk0:4nddz1ZeCdw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=sdU3ol0xWk0:4nddz1ZeCdw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/evolution515?i=sdU3ol0xWk0:4nddz1ZeCdw:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/coolest-slideshow-screensavers-on-earth-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploads via HTTP are still an issue…</title>
		<link>http://blog.evolution515.net/article/uploads-via-http-are-still-an-issue/</link>
		<comments>http://blog.evolution515.net/article/uploads-via-http-are-still-an-issue/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 21:33:05 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[aurigma]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[upload]]></category>
		<category><![CDATA[upload applet]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=408</guid>
		<description><![CDATA[Even in the days of Web 2.0 you encounter many errors when it comes to Uploads via HTTP. The protocol was never made for uploads or better to say: there are still enough bugs in implementations and the protocol itself. 
Very familar, e.g. is the problem of having a meter on upload progress. And i [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Even in the days of Web 2.0 you encounter many errors when it comes to Uploads via HTTP. The protocol was never made for uploads or better to say: there are still enough bugs in implementations and the protocol itself. </strong></p>
<p><strong>Very familar, e.g. is the problem of having a meter on upload </strong><strong>progress</strong><strong>. And i also don&#8217;t want to mention the problems of WebDAV implementation of Windows for now, or the limitations of firewalls or proxies&#8230; </strong></p>
<p><strong>But let&#8217;s have a look on solutions provided today in the Web for Uploads…</strong></p>
<h3><strong>Flash/HTTP</strong></h3>
<p>We have a modified version of R6 running on a webshop with regular uploads of 20-70MB files. If upload goes to fast – like on business lines with upstream ≥3Mb – Flash is likely to throw errors telling the visitor a script is running too slow. Then the customer has to choose „continue“ or to „cancel“, which usually ends up in canceling the job  <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>This behavior is caused by Flash calling the „onFileChunkComplete“-Event (or something) too often, or let&#8217;s say after every 4096 bytes sent, which can result in many many calls if you have a good upstream bandwidth.</p>
<p>Second, there are also those „unknown errors“ in Flash caused at runtime. The source yet is unknown and it seems to continue with Flash10 and  some little amount of customers smaller than one percent share. Sorry, <em>unknown </em>means <em>unknown </em>and Adobe won&#8217;t give support here! we&#8217;re back to Flash9  <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_confused.gif' alt=':-?' class='wp-smiley' /> </p>
<p>Yet the same thing happens to JavaScript if update goes too fast and too often, e.g. by using a progress bar constantly being updated (20-50times in the second). Therefore I had to split up the graphical update process to a seperate class that just goes on update intervals calling the <em>current/total-values</em> of the FileUpload-Class.</p>
<p>Well using Flash as upload client is nice, especially with the ability to use real sockets. For Flash9 the HTTP methods don&#8217;t provide the possibility of splitting large files – so you could upload them in seperate chunks. It&#8217;s about  security.</p>
<p>Then Flash10 possibly could do now (by accepting local files), but here we have the issue of having the upload beeing fired from Flash itself &#8211; scripting doesn&#8217;t work anymore, so no <em>hidden</em> flash uploader, that could do the job  <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_cry.gif' alt=':cry:' class='wp-smiley' /> </p>
<p>But customer complaints still continues… especially form those using MSIE and don&#8217;t get a thing right.</p>
<h3>PHP and APC, for now. HTTP again…</h3>
<p>Okay, usually you gotta think this works now. It&#8217;s out now for long enough.  But fail of proof!</p>
<p>I leeched some script form <a href="http://www.phpriot.com/articles/php-ajax-file-uploads">PHPRiot</a> yesterday by Quentin Zervaas, fixed some bugs (<em>while(1=1) </em>is great idea in JavaScript  <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_eek.gif' alt='8-O' class='wp-smiley' /> ), added a file limit check and hoped i finally would have something <em>that really works</em>.  But it didn&#8217;t:</p>
<ul>
<li>Multiple file-fields do not work with APC</li>
<li>If file uploaded is greater than far greater than limit, apc throws out 0-values for current and total</li>
<li>Sometimes just seems stop working somehow; but after an apache restart apache it works again  <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_cry.gif' alt=':cry:' class='wp-smiley' /> </li>
</ul>
<p>I tried so many ‘solutions’ now and somehow it really seems to me, that monitoring the upload by calling a server-side status-script always has some problems. Probably it is really an Apache-issue… we&#8217;ll have too see…</p>
<h3>Sliced HTTP Upload via Plugins &#8211; a solution?</h3>
<p>I already mentioned it in the Flash/HTTP section, and indeed it&#8217;s more safe, because the file chunks are simply smaller!</p>
<p>I did many tests with Apache, and often it just happens that Apache closes a TCP connection on big file uploads. The source is yet unknown to me. Probably it has to do with Apache itself. I didn&#8217;t encounter the problem when using FastCGI and a Perl-Script to handle my upload.</p>
<p>So, i guess doing sliced upload is a good option. But then you could only use Flash10 which has other restrictions or Java. Yep, that thing that only works on 70-80%  of user browsers, MSIE for the rest that reports about having Java supported – true indeed – the other problem is: does it really run on those often misconfigured and compromised customer systems?</p>
<p>Well Flash10 now does, but have some limitations we probably could live with:</p>
<ul>
<li>load() and save() APIs can only be called in response to user interaction (such as a button click).</li>
<li>locations of the loaded and save files are not exposed to ActionScript.</li>
</ul>
<p>Since the API is now asynchronous (non-blocking),</p>
<h3><strong>Final match: HTTP vs. FTP-Uploads in the client<br />
</strong></h3>
<ul>
<li>HTTP was not made for upload!</li>
<li>use more bandwidth than you actually need (base64!)</li>
<li>HTTP is not resumeable (but you could retry on splitted chunks)</li>
</ul>
<p>Let&#8217;s summariuze: You can only monitor what was uplaoded by having control over your client and you can only split files, when you have access on it.</p>
<p>Use a Java-Applet or code a Flash-Client that works over FTP! And use a FTP-Server that is secure and can handle virtual users, like <em>vsftpd</em><strong>. </strong>Then<strong> code some backend,</strong></p>
<h3>Yes! Probably <em>it is</em> a solution. But you still have the problems with users not supperting Java, or who complain about Java „loading“ too long. Here are some other good tries, that usually work:</h3>
<ul>
<li><a href="http://www.aurigma.com/">http://www.aurigma.com/</a></li>
<li><a href="http://www.jupload.biz/">http://www.jupload.biz/</a></li>
<li><a href="http://www.javaatwork.com">http://www.javaatwork.com</a>/</li>
<li><a href="http://upload.thinfile.com/">http://upload.thinfile.com/</a></li>
</ul>
<p>We&#8217;ll see further when the first FTP libraries for Flash 10 are finished.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/evolution515?a=akfzEgwWZf4:w6ozgppdxPg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/evolution515?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=akfzEgwWZf4:w6ozgppdxPg:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/evolution515?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=akfzEgwWZf4:w6ozgppdxPg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/evolution515?i=akfzEgwWZf4:w6ozgppdxPg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=akfzEgwWZf4:w6ozgppdxPg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/evolution515?i=akfzEgwWZf4:w6ozgppdxPg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=akfzEgwWZf4:w6ozgppdxPg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/evolution515?i=akfzEgwWZf4:w6ozgppdxPg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/evolution515?a=akfzEgwWZf4:w6ozgppdxPg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/evolution515?i=akfzEgwWZf4:w6ozgppdxPg:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/uploads-via-http-are-still-an-issue/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>
