<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<feed xmlns="http://www.w3.org/2005/Atom">

	<title>Planet Hoyer</title>
	<link rel="self" href="http://planet.surfsite.org/atom.xml"/>
	<link href="http://planet.surfsite.org/"/>
	<id>http://planet.surfsite.org/atom.xml</id>
	<updated>2012-02-04T21:30:04+00:00</updated>
	<generator uri="http://www.planetplanet.org/">Planet/2.0 +http://www.planetplanet.org</generator>

	<entry xml:lang="en-us">
		<title type="html">Fedora 15 - 8 services you can most likely disable</title>
		<link href="http://www.harald-hoyer.de/personal/blog/fedora-15-8-services-you-can-most-likely-disable"/>
		<id>http://www.harald-hoyer.de/personal/blog/fedora-15-8-services-you-can-most-likely-disable</id>
		<updated>2011-05-25T11:55:00+00:00</updated>
		<content type="html">&lt;p&gt;If you installed Fedora 15 from the live CD you will end up with some system services enabled, which you most likely do not need _ever_.&lt;/p&gt;
&lt;p&gt;These services are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;fcoe&lt;/b&gt; and &lt;b&gt;lldpad&lt;/b&gt;, only needed, if you have fibre channel over ethernet devices&lt;/li&gt;
&lt;li&gt;&lt;b&gt;iscsi&lt;/b&gt; and &lt;b&gt;iscsid&lt;/b&gt;, only needed, if you have iSCSI devices&lt;/li&gt;
&lt;li&gt;&lt;b&gt;livesys&lt;/b&gt; and &lt;b&gt;livesys-late&lt;/b&gt;, only needed for the live CD&lt;/li&gt;
&lt;li&gt;&lt;b&gt;mdmonitor&lt;/b&gt;, only needed, if you have RAID devices&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can disable them with system-config-services or by:&lt;/p&gt;
&lt;p&gt;# chkconfig &amp;lt;servicename&amp;gt; off&lt;/p&gt;
&lt;p&gt;&amp;lt;rant mode&amp;gt;anaconda really should do this for you... I filed a &lt;a class=&quot;external-link&quot; href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=707553&quot;&gt;bug&lt;/a&gt; for this&amp;lt;/rant mode&amp;gt;&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Fedora 15 Boot Optimization (from 45 to 26 seconds)</title>
		<link href="http://www.harald-hoyer.de/personal/blog/fedora-15-boot-optimization"/>
		<id>http://www.harald-hoyer.de/personal/blog/fedora-15-boot-optimization</id>
		<updated>2011-05-24T11:50:00+00:00</updated>
		<content type="html">&lt;p&gt;If you want to run Fedora 15 on a slow spinning disk, then you have to customize it a bit, to get fast boot times.&lt;/p&gt;
&lt;p&gt;First we choose a manual disk layout and use primary partitions and format them with ext4. In my case this results in:&lt;/p&gt;
&lt;pre&gt;sda1 ext4 /boot&lt;br /&gt;sda2 swap&lt;br /&gt;sda3 ext4 /&lt;/pre&gt;
&lt;p&gt;After the first boot, setup of the user, etc. and 2 reboots (always reboot 2 times, before taking the measurement, because readahead needs to adapt to the changed boot process), I measure 45 seconds from the grub menu to the graphical login screen. To get the grub menu, just hold down &amp;lt;ALT&amp;gt; in the boot phase. 45 seconds is a little bit slow compared to the &lt;a class=&quot;internal-link&quot; href=&quot;http://www.harald-hoyer.de/../../linux/boot-time-distro-comparison&quot;&gt;other distributions&lt;/a&gt;. systemd-analyse gives me the output: Startup finished in 5585ms (kernel) + 5509ms (initrd) + 21847ms (userspace) = 32942ms&lt;/p&gt;
&lt;p&gt;The next step is to disable the initramfs, because the kernel can boot from an ext4 partition without it. Because I know how to rescue my system, I can set the root device directly to sda3 and tell the kernel which filesystem type to use. My /etc/grub.conf looks like this:&lt;/p&gt;
&lt;pre&gt;title Fedora (2.6.38.6-26.rc1.fc15.i686.PAE)&lt;br /&gt; root (hd0,0)&lt;br /&gt; kernel /vmlinuz-2.6.38.6-26.rc1.fc15.i686.PAE ro root=/dev/sda3 rootfstype=ext4 rhgb quiet&lt;br /&gt;#    initrd /initramfs-2.6.38.6-26.rc1.fc15.i686.PAE.img&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;Rebooting gives 40 seconds to the login screen. systemd-analyse prints:  Startup finished in 7897ms (kernel) + 21470ms (userspace) = 29367ms&lt;/p&gt;
&lt;p&gt;Because I don't use any LVM, RAID or encrypted devices, I can safely turn off all fedora-* services. Additionally I turn off the plymouth boot splash, because I want speed and not eye candy. To turn off these services, you have to use the /dev/null softlink mechanism, because these services cannot be disabled by &quot;systemctl disable&quot;. A bonus with that mechanism is, that no rpm %post script turns them on automatically, without me knowing :-)&lt;/p&gt;
&lt;pre&gt;# cd /lib/systemd/system&lt;br /&gt;# for i in fedora-* plymouth-*; do sudo ln -s /dev/null /etc/systemd/system/$i;done&lt;/pre&gt;
&lt;p&gt;Now the boot time is down to 37 seconds. systemd-analyse prints: Startup finished in 7894ms (kernel) + 17992ms (userspace) = 25887ms&lt;/p&gt;
&lt;p&gt;From now on, you really have to know what you are doing and how to revert your actions. To compare Fedora 15 with e.g. Ubuntu, I will now turn off all services except sshd. The result will be a Linux system without mail, firewall, printing and selinux security.&lt;/p&gt;
&lt;pre&gt;$ for i in abrt-ccpp abrt-oops cups mdmonitor netfs nfslock pcscd portreserve rpcbind rpcgssd rpcidmapd sendmail smolt ip6tables iptables sandbox selinux; do sudo chkconfig $i off;done&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;To disable selinux, edit /etc/selinux/config and/or add &quot;selinux=0&quot; to the kernel command line. My /etc/grub.conf now looks like this:&lt;/p&gt;
&lt;pre&gt;title Fedora (2.6.38.6-26.rc1.fc15.i686.PAE)&lt;br /&gt; root (hd0,0)&lt;br /&gt; kernel /vmlinuz-2.6.38.6-26.rc1.fc15.i686.PAE ro root=/dev/sda3 rootfstype=ext4 selinux=0&lt;br /&gt;#    initrd /initramfs-2.6.38.6-26.rc1.fc15.i686.PAE.img&lt;/pre&gt;
&lt;p&gt;A reboot shows, that we are now down to a nice 26 seconds. systemd-analyse prints: Startup finished in 6157ms (kernel) + 12048ms (userspace) = 18206ms&lt;/p&gt;
&lt;p&gt;Because I turned off selinux, I can also remove some packages :-)&lt;/p&gt;
&lt;pre&gt;# sudo yum remove $(rpm -qf --qf '%{name}\n' /etc/init.d/auditd /lib/systemd/system/{abrtd.service,mcelog.service})&lt;/pre&gt;
&lt;p&gt;I also like the idea of automounting (systemd's automount feature was an idea of mine :-) ). So I turn /boot in a &quot;mount on demand&quot; mountpoint. Also having /tmp as a tmpfs is one way to reduce disk activity (useful for e.g. a slow flash disk).&lt;/p&gt;
&lt;p&gt;My resulting /etc/fstab looks like this:&lt;/p&gt;
&lt;pre&gt;/dev/sda3  /                       ext4    defaults        1 1&lt;br /&gt;/dev/sda1  /boot                   ext4    noauto,comment=systemd.automount     1 2&lt;br /&gt;/dev/sda2  swap                    swap    defaults        0 0&lt;br /&gt;tmpfs      /tmp                    tmpfs   defaults        0 0&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;A reboot gives still 26 seconds, systemd-analyse: Startup finished in 6121ms (kernel) + 12772ms (userspace) = 18894ms&lt;/p&gt;
&lt;p&gt;To see the difference readahead makes for the system, I turn it off temporarily and reboot&lt;/p&gt;
&lt;pre&gt;# cd /lib/systemd/system&lt;br /&gt;# for i in *readahead*; do systemctl disable $i;done&lt;br /&gt;rm '/etc/systemd/system/default.target.wants/systemd-readahead-collect.service'&lt;br /&gt;rm '/etc/systemd/system/default.target.wants/systemd-readahead-replay.service'&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;Without readahead it takes 32 seconds to be able to login. systemd-analyse says: Startup finished in 6125ms (kernel) + 10992ms (userspace) = 17118ms&lt;/p&gt;
&lt;p&gt;As we can see it's real 26 versus 32 seconds. The output of systemd-analyse would be misleading, if we only relied on that!!&lt;/p&gt;
&lt;p&gt;So, because I like 26 seconds more, I turn on readahead again :-) To check, if readahead has an updated list, do a &quot;ls -l /.readahead&quot; to see the timestamp and check the return status of readahead (&quot;systemctl status systemd-readahead-collect.service&quot;). There might be a selinux related bug, because with selinux turned on, the collector always returned with error status 1 in my testing.&lt;/p&gt;
&lt;pre&gt;# cd /lib/systemd/system &lt;br /&gt;# for i in *readahead*; do systemctl enable $i;done&lt;/pre&gt;
&lt;p&gt;For the reference here is the list of services, that are started:&lt;/p&gt;
&lt;pre&gt;# LANG=C chkconfig --list|fgrep 5:on&lt;br /&gt;&lt;br /&gt;Note: This output shows SysV services only and does not include native&lt;br /&gt; systemd services. SysV configuration data might be overridden by native&lt;br /&gt; systemd configuration.&lt;br /&gt;&lt;br /&gt;cpuspeed           0:off    1:on    2:on    3:on    4:on    5:on    6:off&lt;br /&gt;sshd               0:off    1:off    2:on    3:on    4:on    5:on    6:off&lt;br /&gt;&lt;/pre&gt;
&lt;pre&gt;# systemctl&lt;br /&gt;boot.automount            loaded active waiting       boot.automount&lt;br /&gt;dev-hugepages.automount   loaded active waiting       Huge Pages File System Automount Point&lt;br /&gt;dev-mqueue.automount      loaded active waiting       POSIX Message Queue File System Automount Point&lt;br /&gt;proc-sys...misc.automount loaded active waiting       Arbitrary Executable File Formats File System Automount Point&lt;br /&gt;sys-kern...ebug.automount loaded active waiting       Debug File System Automount Point&lt;br /&gt;sys-kern...rity.automount loaded active waiting       Security File System Automount Point&lt;br /&gt;sys-devi...ock-sdb.device loaded active plugged       Flash_HS-CF&lt;br /&gt;sys-devi...ock-sdc.device loaded active plugged       Flash_HS-COMBO&lt;br /&gt;sys-devi...d-card1.device loaded active plugged       SB Live! EMU10k1&lt;br /&gt;sys-devi...net-em1.device loaded active plugged       82540EM Gigabit Ethernet Controller&lt;br /&gt;sys-devi...da-sda1.device loaded active plugged       ST380011A&lt;br /&gt;sys-devi...da-sda2.device loaded active plugged       ST380011A&lt;br /&gt;sys-devi...da-sda3.device loaded active plugged       ST380011A&lt;br /&gt;sys-devi...ock-sda.device loaded active plugged       ST380011A&lt;br /&gt;sys-devi...ock-sr0.device loaded active plugged       PIONEER_DVD-RW_DVR-105&lt;br /&gt;sys-devi...d-card0.device loaded active plugged       82801EB/ER (ICH5/ICH5R) AC'97 Audio Controller&lt;br /&gt;sys-devi...y-ttyS1.device loaded active plugged       /sys/devices/platform/serial8250/tty/ttyS1&lt;br /&gt;sys-devi...y-ttyS2.device loaded active plugged       /sys/devices/platform/serial8250/tty/ttyS2&lt;br /&gt;sys-devi...y-ttyS3.device loaded active plugged       /sys/devices/platform/serial8250/tty/ttyS3&lt;br /&gt;sys-devi...y-ttyS0.device loaded active plugged       /sys/devices/pnp0/00:08/tty/ttyS0&lt;br /&gt;sys-devi...ock-md0.device loaded active plugged       /sys/devices/virtual/block/md0&lt;br /&gt;sys-devi...ty-tty0.device loaded active plugged       /sys/devices/virtual/tty/tty0&lt;br /&gt;sys-devi...ty-tty1.device loaded active plugged       /sys/devices/virtual/tty/tty1&lt;br /&gt;sys-devi...y-tty10.device loaded active plugged       /sys/devices/virtual/tty/tty10&lt;br /&gt;sys-devi...y-tty11.device loaded active plugged       /sys/devices/virtual/tty/tty11&lt;br /&gt;sys-devi...y-tty12.device loaded active plugged       /sys/devices/virtual/tty/tty12&lt;br /&gt;sys-devi...ty-tty2.device loaded active plugged       /sys/devices/virtual/tty/tty2&lt;br /&gt;sys-devi...ty-tty3.device loaded active plugged       /sys/devices/virtual/tty/tty3&lt;br /&gt;sys-devi...ty-tty4.device loaded active plugged       /sys/devices/virtual/tty/tty4&lt;br /&gt;sys-devi...ty-tty5.device loaded active plugged       /sys/devices/virtual/tty/tty5&lt;br /&gt;sys-devi...ty-tty6.device loaded active plugged       /sys/devices/virtual/tty/tty6&lt;br /&gt;sys-devi...ty-tty7.device loaded active plugged       /sys/devices/virtual/tty/tty7&lt;br /&gt;sys-devi...ty-tty8.device loaded active plugged       /sys/devices/virtual/tty/tty8&lt;br /&gt;sys-devi...ty-tty9.device loaded active plugged       /sys/devices/virtual/tty/tty9&lt;br /&gt;-.mount                   loaded active mounted       /&lt;br /&gt;home-harald-.gvfs.mount   loaded active mounted       /home/harald/.gvfs&lt;br /&gt;media.mount               loaded active mounted       Media Directory&lt;br /&gt;sys-fs-f...nections.mount loaded active mounted       /sys/fs/fuse/connections&lt;br /&gt;tmp.mount                 loaded active mounted       /tmp&lt;br /&gt;systemd-...d-console.path loaded active waiting       Dispatch Password Requests to Console Directory Watch&lt;br /&gt;systemd-...word-wall.path loaded active waiting       Forward Password Requests to Wall Directory Watch&lt;br /&gt;accounts-daemon.service   loaded active running       Accounts Service&lt;br /&gt;acpid.service             loaded active running       ACPI Event Daemon&lt;br /&gt;atd.service               loaded active running       Job spooling tools&lt;br /&gt;avahi-daemon.service      loaded active running       Avahi mDNS/DNS-SD Stack&lt;br /&gt;console-...daemon.service loaded active running       Console Manager&lt;br /&gt;console-...-start.service loaded active exited        Console System Startup Logging&lt;br /&gt;cpuspeed.service          loaded active exited        LSB: processor frequency scaling support&lt;br /&gt;crond.service             loaded active running       Command Scheduler&lt;br /&gt;dbus.service              loaded active running       D-Bus System Message Bus&lt;br /&gt;getty@tty2.service        loaded active running       Getty on tty2&lt;br /&gt;getty@tty3.service        loaded active running       Getty on tty3&lt;br /&gt;getty@tty4.service        loaded active running       Getty on tty4&lt;br /&gt;getty@tty5.service        loaded active running       Getty on tty5&lt;br /&gt;getty@tty6.service        loaded active running       Getty on tty6&lt;br /&gt;hwclock-load.service      loaded active exited        Apply System Clock UTC Offset&lt;br /&gt;irqbalance.service        loaded active running       irqbalance daemon&lt;br /&gt;NetworkManager.service    loaded active running       Network Manager&lt;br /&gt;prefdm.service            loaded active running       Display Manager&lt;br /&gt;rc-local.service          loaded active exited        /etc/rc.local Compatibility&lt;br /&gt;remount-rootfs.service    loaded active exited        Remount Root FS&lt;br /&gt;rsyslog.service           loaded active running       System Logging Service&lt;br /&gt;rtkit-daemon.service      loaded active running       RealtimeKit Scheduling Policy Service&lt;br /&gt;smartd.service            loaded active running       Self Monitoring and Reporting Technology (SMART) Daemon&lt;br /&gt;sshd.service              loaded active running       LSB: Start up the OpenSSH server daemon&lt;br /&gt;system-s...yboard.service loaded active running       System Setup Keyboard&lt;br /&gt;systemd-logger.service    loaded active running       Stdio Syslog Bridge&lt;br /&gt;systemd-...ollect.service loaded active exited        Collect Read-Ahead Data&lt;br /&gt;systemd-...replay.service loaded active exited        Replay Read-Ahead Data&lt;br /&gt;systemd-...pi-vfs.service loaded active exited        Remount API VFS&lt;br /&gt;systemd-sysctl.service    loaded active exited        Apply Kernel Variables&lt;br /&gt;systemd-...-setup.service loaded failed failed        Recreate Volatile Files and Directories&lt;br /&gt;systemd-...ssions.service loaded active exited        Permit User Sessions&lt;br /&gt;systemd-...-setup.service loaded active exited        Setup Virtual Console&lt;br /&gt;udev-trigger.service      loaded active exited        udev Coldplug all Devices&lt;br /&gt;udev.service              loaded active running       udev Kernel Device Manager&lt;br /&gt;avahi-daemon.socket       loaded active listening     Avahi mDNS/DNS-SD Stack Activation Socket&lt;br /&gt;dbus.socket               loaded active running       D-Bus System Message Bus Socket&lt;br /&gt;syslog.socket             loaded active running       Syslog Socket&lt;br /&gt;systemd-initctl.socket    loaded active listening     /dev/initctl Compatibility Named Pipe&lt;br /&gt;systemd-logger.socket     loaded active running       Stdio Syslog Bridge Socket&lt;br /&gt;systemd-shutdownd.socket  loaded active listening     Delayed Shutdown Socket&lt;br /&gt;udev.socket               loaded active listening     udev Kernel Device Manager Socket&lt;br /&gt;dev-sda2.swap             loaded active active        /dev/sda2&lt;br /&gt;basic.target              loaded active active        Basic System&lt;br /&gt;cryptsetup.target         loaded active active        Encrypted Volumes&lt;br /&gt;getty.target              loaded active active        Login Prompts&lt;br /&gt;graphical.target          loaded active active        Graphical Interface&lt;br /&gt;local-fs.target           loaded active active        Local File Systems&lt;br /&gt;multi-user.target         loaded active active        Multi-User&lt;br /&gt;network.target            loaded active active        Network&lt;br /&gt;sockets.target            loaded active active        Sockets&lt;br /&gt;sound.target              loaded active active        Sound Card&lt;br /&gt;swap.target               loaded active active        Swap&lt;br /&gt;sysinit.target            loaded active active        System Initialization&lt;br /&gt;syslog.target             loaded active active        Syslog&lt;br /&gt;time-sync.target          loaded active active        System Time Synchronized&lt;br /&gt;systemd-...ead-done.timer loaded active elapsed       Stop Read-Ahead Data Collection 10s After Completed Startup&lt;br /&gt;systemd-...es-clean.timer loaded active waiting       Daily Cleanup of Temporary Directories&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;For the reference here is the &lt;a class=&quot;internal-link&quot; href=&quot;http://www.harald-hoyer.de/personal/blog/fedora-15-dmesg/view&quot;&gt;dmesg output&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">dracut Talk at LinuxTag</title>
		<link href="http://www.harald-hoyer.de/personal/blog/dracut-talk-at-linuxtag"/>
		<id>http://www.harald-hoyer.de/personal/blog/dracut-talk-at-linuxtag</id>
		<updated>2011-05-02T08:45:00+00:00</updated>
		<content type="html">&lt;p&gt;I'll be giving a &lt;a class=&quot;external-link&quot; href=&quot;http://www.linuxtag.org/2011/de/program/themenschwerpunkte/entwicklung-technologie/vortragsdetails.html?talkid=330&quot;&gt;talk about dracut&lt;/a&gt; at LinuxTag in Berlin on Friday, 13.05.2011, Berlin I, 16:30-17:00 Uhr&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Dracut moved to kernel.org</title>
		<link href="http://www.harald-hoyer.de/personal/blog/dracut-moved-to-kernel.org"/>
		<id>http://www.harald-hoyer.de/personal/blog/dracut-moved-to-kernel.org</id>
		<updated>2011-03-18T10:31:12+00:00</updated>
		<content type="html">&lt;p class=&quot;callout&quot;&gt;Please update your links!&lt;/p&gt;
&lt;h3&gt;Git:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;git://git.kernel.org/pub/scm/boot/dracut/dracut.git &lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://git.kernel.org/pub/scm/boot/dracut/dracut.git&quot;&gt;http://git.kernel.org/pub/scm/boot/dracut/dracut.git&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;https://git.kernel.org/pub/scm/boot/dracut/dracut.git&quot;&gt;https://git.kernel.org/pub/scm/boot/dracut/dracut.git&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Git Web:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://git.kernel.org/?p=boot/dracut/dracut.git&quot;&gt;http://git.kernel.org/?p=boot/dracut/dracut.git&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Git Web RSS Feed:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://git.kernel.org/?p=boot/dracut/dracut.git;a=rss&quot;&gt;http://git.kernel.org/?p=boot/dracut/dracut.git;a=rss&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Project Documentation:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://www.kernel.org/pub/linux/utils/boot/dracut/dracut.html&quot;&gt;http://www.kernel.org/pub/linux/utils/boot/dracut/dracut.html&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Project Download:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://www.kernel.org/pub/linux/utils/boot/dracut/&quot;&gt;http://www.kernel.org/pub/linux/utils/boot/dracut/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Project Wiki: 	&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://dracut.wiki.kernel.org/&quot;&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://dracut.wiki.kernel.org/&quot;&gt;http://dracut.wiki.kernel.org&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Mac Book Touchpad Driver for Fedora 15+</title>
		<link href="http://www.harald-hoyer.de/personal/blog/mac-book-touchpad-driver-for-fedora-15"/>
		<id>http://www.harald-hoyer.de/personal/blog/mac-book-touchpad-driver-for-fedora-15</id>
		<updated>2011-03-03T11:47:05+00:00</updated>
		<content type="html">&lt;p&gt;If you own a Mac Book with a bcm5974 touchpad, you might know that it is a PITA to drag and drop with the synaptics driver. If you reach the end of the pad, you cannot drag any further and adding a second finger, just emulates the right mouse button. So here is the solution, the multitouch driver from &lt;a class=&quot;external-link&quot; href=&quot;http://bitmath.org/code/multitouch/&quot;&gt;http://bitmath.org/code/multitouch&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I created an rpm, which is for review here:&lt;/p&gt;
&lt;p&gt;https://bugzilla.redhat.com/show_bug.cgi?id=681826&lt;/p&gt;
&lt;p&gt;Just rebuild the src.rpm and install the resulting package and you are ready to restart the X server. And if you want to review the package, please do so! :-)&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">FOSDEM 2011</title>
		<link href="http://www.harald-hoyer.de/personal/blog/fosdem-2011"/>
		<id>http://www.harald-hoyer.de/personal/blog/fosdem-2011</id>
		<updated>2011-02-05T12:20:00+00:00</updated>
		<content type="html">&lt;p&gt;Again, this year I attend FOSDEM in Brussels, not giving a talk this time, but you will find me at the Fedora booth and at several tracks (especially the systemd talk of Lennart).&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">FUDCon Zürich 2010</title>
		<link href="http://www.harald-hoyer.de/personal/blog/fudcon-zurich-2010"/>
		<id>http://www.harald-hoyer.de/personal/blog/fudcon-zurich-2010</id>
		<updated>2010-09-20T09:15:00+00:00</updated>
		<content type="html">&lt;p&gt;It was fun to meet you guys in person (again) :-)&lt;/p&gt;
&lt;p&gt;I uploaded some of my photos to Picasa&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;http://picasaweb.google.com/harald.hoyer/FudConZurich&quot;&gt;&lt;img src=&quot;http://lh3.ggpht.com/_juxBCYjkE_0/TJciPWfWANI/AAAAAAAAAl0/9reEq14Qtmw/s800/IMG_0534.CR2.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;From &lt;a href=&quot;http://picasaweb.google.com/harald.hoyer/FudConZurich&quot;&gt;FUDCon Zürich&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Ipod m4a to mp3 converter</title>
		<link href="http://www.harald-hoyer.de/personal/blog/ipod-m4a-to-mp3-converter"/>
		<id>http://www.harald-hoyer.de/personal/blog/ipod-m4a-to-mp3-converter</id>
		<updated>2010-04-28T12:10:00+00:00</updated>
		<content type="html">&lt;p&gt;With Fedora 13 you can connect your ipod and nautilus will show you several folders. One is named &quot;Purchases&quot; and I found several .m4a and .plist files in there. Just put them in a folder and run my &lt;a href=&quot;http://www.harald-hoyer.de/personal/blog/m4aconvert.py&quot;&gt;python script&lt;/a&gt; and you will get mp3 files with proper idtags :-)&lt;/p&gt;
&lt;p&gt;You might need to install faad2 from rpmfusion and id3v2.&lt;/p&gt;
&lt;pre&gt;$ python m4aconvert.py *.plist
&lt;/pre&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Enforce https</title>
		<link href="http://hartwin-hoyer.de/2010/04/22/force-https/"/>
		<id>http://hartwin-hoyer.de/2010/04/22/force-https/</id>
		<updated>2010-04-22T11:04:47+00:00</updated>
		<content type="html">&lt;p&gt;If you want to enforce the users of your Apache server to use https instead of http, you can write a Rewrite which works without the mod_ssl module.&lt;br /&gt;
The Rewrite is stored either in your httpd configuration or in a .htaccess file.&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
RewriteCond %{HTTPS} off&lt;br /&gt;
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301]&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Sometimes you run into problems with authentication systems which are configured in a .htaccess file too. This leads to double authentications which you want to avoid because the first authentication works through http (which is bad enough), then the rewrite is putting you to https and you have to authenticate again.&lt;br /&gt;
To avoid this, you can store the configuration of the authentication system into your ssl httpd configuration in a directory tag. This ensures that the user of your web-server when landing on http does not have to authenticate but will be placed to https and have to authenticate there.&lt;/p&gt;
&lt;p&gt;If you do not have access to the ssl configuration you might want to test out&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
SSLOptions +StrictRequire&lt;br /&gt;
SSLRequireSSL&lt;br /&gt;
SSLRequire %{HTTP_HOST} eq &amp;#8220;http://yourservername&amp;#8221;&lt;br /&gt;
ErrorDocument 403 https://yourservername&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
in your .htaccess file. I have to admit i didn&amp;#8217;t test the SSLRequireSSL option by myself, but it worked for some people.&lt;/p&gt;
&lt;p&gt;For more information about Rewrites, .htaccess files and ssl support, have a look at the &lt;a href=&quot;http://httpd.apache.org/docs/&quot;&gt;Apache httpd documentation&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Dracut Talk at FOSDEM 2010</title>
		<link href="http://www.harald-hoyer.de/personal/blog/dracut-talk-on-fosdem-2010"/>
		<id>http://www.harald-hoyer.de/personal/blog/dracut-talk-on-fosdem-2010</id>
		<updated>2010-02-26T09:15:00+00:00</updated>
		<content type="html">&lt;p&gt;Along with the other &lt;a href=&quot;http://meetings-archive.debian.net/pub/debian-meetings/2010/fosdem10/&quot;&gt;distribution talks&lt;/a&gt; at FOSDEM 2010 a video of my talk about Dracut is now online &lt;a href=&quot;http://meetings-archive.debian.net/pub/debian-meetings/2010/fosdem10/high/Dracut_a_generic_modular_initramfs_generation_tool.ogv&quot;&gt;highres&lt;/a&gt;/&lt;a href=&quot;http://meetings-archive.debian.net/pub/debian-meetings/2010/fosdem10/low/Dracut_a_generic_modular_initramfs_generation_tool.ogv&quot;&gt;lowres&lt;/a&gt;. You might also be interested in the &lt;a href=&quot;http://www.harald-hoyer.de/personal/files/dracut-fosdem-2010.pdf&quot;&gt;slides&lt;/a&gt;. And yes, I should not use &quot;whatever&quot; that often :-)&lt;/p&gt;
&lt;div class=&quot;mozilla-video-control&quot; id=&quot;video-player&quot;&gt; 
&lt;div class=&quot;video-player-no-flash&quot;&gt;This video requires a browser with support for open video: 					
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.mozilla.com/firefox/&quot;&gt;Firefox&lt;/a&gt; 3.5 or greater&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.apple.com/safari/&quot;&gt;Safari&lt;/a&gt; 3.1 or greater&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Commuting</title>
		<link href="http://hartwin-hoyer.de/2010/01/20/commuting/"/>
		<id>http://hartwin-hoyer.de/2010/01/20/commuting/</id>
		<updated>2010-01-20T09:04:26+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/4052720138/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2619/4052720138_0416a81e84_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/4052720138/&quot;&gt;Commuting&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;
&lt;p&gt;New bus-station in Böblingen&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Shell Gnome Notification Applet</title>
		<link href="http://www.harald-hoyer.de/personal/blog/shell-gnome-notification-applet"/>
		<id>http://www.harald-hoyer.de/personal/blog/shell-gnome-notification-applet</id>
		<updated>2009-10-09T07:50:00+00:00</updated>
		<content type="html">&lt;p&gt;Because my internet connection is very flaky at the moment, I needed to know, if my internet connection is still up. Because my DSL modem is a&amp;nbsp; Speedport W 503V, which does not run Linux on it, I had to query the connection status in another way. Luckily it has a web interface, which shows the internet status without the need to log in. So I wrote a little shell script which &quot;parses&quot; the html page. In fact the parsing doesn't have to be very sophisticated, it's just a simple grep. Then I found out about zenity, which provides a nice shell interface to create a visual representation on the desktop.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src=&quot;http://www.harald-hoyer.de/personal/files/ledon.png&quot; alt=&quot;&quot; class=&quot;image-inline&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src=&quot;http://www.harald-hoyer.de/personal/files/ledoff.png&quot; alt=&quot;&quot; class=&quot;image-inline&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;The trick is, to open zenity with an extra file descriptor in &quot;--listen&quot; mode. So you can change the state of the notification dynamically. Here is the &lt;a href=&quot;http://www.harald-hoyer.de/personal/files/internet.sh&quot;&gt;simple shell script&lt;/a&gt;. Maybe you can tweak it for your needs.&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Move</title>
		<link href="http://hartwin-hoyer.de/2009/09/03/move/"/>
		<id>http://hartwin-hoyer.de/2009/09/03/move/</id>
		<updated>2009-09-03T14:23:20+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3884499962/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2667/3884499962_e3e724ed8c_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3884499962/&quot;&gt;Move&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/p&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;
&lt;p&gt;Played around with Gimp using this howto:&lt;br /&gt;
&lt;a href=&quot;http://www.photoshopsupport.com/tutorials/or/cross-processing.html&quot;&gt;http://www.photoshopsupport.com/tutorials/or/cross-processing.html&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Emerald</title>
		<link href="http://hartwin-hoyer.de/2009/08/19/emerald/"/>
		<id>http://hartwin-hoyer.de/2009/08/19/emerald/</id>
		<updated>2009-08-19T09:01:22+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3836499648/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2488/3836499648_2d7904c963_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3836499648/&quot;&gt;Emerald&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A dragonfly at the Lake of Böblingen&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Glowing-Time</title>
		<link href="http://hartwin-hoyer.de/2009/08/19/glowing-time/"/>
		<id>http://hartwin-hoyer.de/2009/08/19/glowing-time/</id>
		<updated>2009-08-19T06:12:15+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3797006405/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3569/3797006405_19f306434c_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3797006405/&quot;&gt;Glowing-Time&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Found this one on a small green place right beside a parking-lot.&lt;br /&gt;
It seems to be a Malope trifida.&lt;br /&gt;
No pp aside from cropping and tagging.&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Rush Hour</title>
		<link href="http://hartwin-hoyer.de/2009/07/06/rush-hour/"/>
		<id>http://hartwin-hoyer.de/2009/07/06/rush-hour/</id>
		<updated>2009-07-06T06:38:23+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3646893685/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3609/3646893685_7e7fa4d9fe_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3646893685/&quot;&gt;Rush Hour&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I just wanted to take a photo of this bee and then this little lady bug appeared.&lt;/p&gt;
&lt;p&gt;Explored #467&lt;br /&gt;
Thank You &lt;img src=&quot;http://hartwin-hoyer.de/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry>
		<title type="html">Europa Park 2009</title>
		<link href="http://www.herward-hoyer.de/blogs/europa-park-2009"/>
		<id>http://www.herward-hoyer.de/blogs/europa-park-2009</id>
		<updated>2009-06-02T06:48:34+00:00</updated>
		<content type="html">&lt;h3&gt;13.05.05 05:00 Uhr - 09:00 Uhr: Die Anreise&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;Der Zeitplan sah in etwa genau wie im letzten Jahr aus. Brötchen schmieren und einpacken hatte ich allerdings aus zeittechnischen Gründen schon auf den Vortag verschoben. Schließlich musste ja noch der dritte im Bunde abgeholt werden.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;05:00 Uhr: Aufstehen&lt;/li&gt;&lt;li&gt;05:30 Uhr - 06:15 Uhr: Autofahrt nach Böblingen&lt;br /&gt;&lt;/li&gt;&lt;li&gt;06:15 Uhr - 07:30 Uhr: Autofahrt nach Rust&lt;/li&gt;&lt;li&gt;08:30 Uhr: Kaufen der ersten Eintrittskarte&lt;/li&gt;&lt;li&gt;08:30 Uhr - 09:00 Uhr: Warten auf Parköffnung in der deutschen Allee&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Da ich dieses Jahr auf das Beweisfoto mit Zeitstempel verzichtet habe, ist es schwer nachvollziehbar zu welcher Zeit wir die einzelnen Attraktionen besucht haben. Die chronologische Reihenfolge für die folgende Aufzählung beruht auf einer eher schlampig erstellten Zusammenfassung mit Bleistift und Clipboard nach dem Parkbesuch.&lt;/p&gt;
&lt;h3&gt;09:00 Uhr - 11:00 Uhr: Der Vormittag&lt;/h3&gt;
&lt;p&gt;Unser erstes Ziel sollte Blue Fire und der neue Themenbereich Island
sein. Etwas ernüchternd mussten wir feststellen, dass die Attraktion
morgens von 09:00 Uhr - 11:00 Uhr wegen Wartungsarbeiten noch
geschlossen ist. Wir entschieden uns dann den leeren hinteren
Parkbereich von Portugal bis zu Silver-Star abzuklappern.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id2928.htm&quot;&gt;1 x Atlantika Supersplash&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id972.htm&quot;&gt;1 x Euro Mir&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id3403.htm&quot;&gt;1 x Pegasus&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id1891.htm&quot;&gt;1 x Poseidon&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id1414.htm&quot;&gt;1 x Silver Star&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.epfans.info/?id=1515,12,11&amp;amp;&quot;&gt;1 x Fjord-Rafting&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.epfans.info/?id=1510,12,11&amp;amp;&quot;&gt;1 x Vindjammer&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id1414.htm&quot;&gt;4 x Silver Star&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.epfans.info/?id=1486,12,11&amp;amp;&quot;&gt;1 x Fluch der Kasandra&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.epfans.info/?id=1484,12,11&amp;amp;&quot;&gt;1 x Abenteuer Atlantis&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;11:00 Uhr - 17:00 Uhr: Die Jagt nach dem Kick&lt;/h3&gt;
Jetzt sollte es soweit sein, Blue Fire öffnet seine Tore und wir trotteten brav nach Island. Als wir pünktlich um 11 Uhr ankamen sahen wir, wie sich eine lange Schlange, die sich vor der Attraktion gebildet hatte, langsam in Bewegung
&lt;p&gt; setzt. Perfektes Timing!&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id4074.htm&quot;&gt;5 x Blue Fire&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.epfans.info/?id=1520,12,11&amp;amp;&quot;&gt;1 x Tiroler Wildwasserbahn&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id975.htm&quot;&gt;1 x Aplenexpress &quot;Enzian&quot;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id972.htm&quot;&gt;1 x Euro Mir&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id974.htm&quot;&gt;1 x Schweizer Bobbahn&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id973.htm&quot;&gt;1 x Eurosat&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id971.htm&quot;&gt;1 x Matterhorn Blitz&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id1891.htm&quot;&gt;2 x Poseidon (sitzengeblieben)&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id1414.htm&quot;&gt;1 x Silver Star (First Row)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Kaffee trinken und Eis essen im franzsöschen Teil des Parks&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;17:00 Uhr - 18:00 Uhr: Der krönende Abschluß&lt;br /&gt;&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.epfans.info/?id=1519,12,11&amp;amp;&quot;&gt;1 x Piraten in Batavia&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rcdb.com/m/de/id4074.htm&quot;&gt;3 x Blue Fire&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Die neue Achterbahn Blue Fire Megacoaster&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;Ob eine Achterbahn gut oder schlecht ist, lässt sich meines Erachtens nur schlecht in Zahlen ausdrücken. Blue Fire ist weder die schnellste, noch die höchste und schon gar nicht die Achterbahn mit den meisten Kopfüberelementen in Europa und schon gar nicht auf der Welt.&lt;/p&gt;
&lt;p&gt;Die Fahrt mit ihr ist allerdings unbeschreiblich gut. Der Zug gleitet sanft und sehr ruhig über die blauen Stahlschienen. Das Geräusch erinnert ganz und gar nicht an einen Eisenbahnzug, sondern eher an das Geräusch von Skates bei einer rasanten Bergabfahrt. Die Streckenführung ist sehr dynamisch, wild verschlungen, gut durchdacht und sehr abwechslungsreich.&lt;/p&gt;
&lt;p&gt;Hier muss man den Ingeneuren für die Planung und Umsetzung dieser Achterbahn wirklich ein unglaublich grosses Kompliment aussprechen. Mit Blue Fire hat es Mack-Rides geschafft sich in die oberste Riege der Achterbahnhersteller einzureihen.&lt;/p&gt;
&lt;h3&gt;Der Parkbesuch 2009 - Das Fazit&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;Der diesjährige Parkbesuch im Europa Park zählt wohl zu den erfolgreichsten Parkbesuchen, wenn man von der Anzahl der bestrittenen Fahrten auf diversen Fahrtgeschäften ausgeht. Zugegeben - etwas verrückt muss man schon sein um eine solchen Tag im Europa Park zu absolvieren. Ein &quot;normaler&quot; Parkbesuch war das auch für mich nicht und war in dem Fall nur mit meinen Brüdern und meinem ebenfalls total achterbahnverrückten Arbeitskollegen möglich. Leider hat mir das lustige &lt;a class=&quot;external-link&quot; href=&quot;http://www.epfans.info/?id=1487,12,11&amp;amp;&quot;&gt;Geisterschloss&lt;/a&gt; und das schwindtelige &lt;a class=&quot;external-link&quot; href=&quot;http://www.epfans.info/?id=1496,12,11&amp;amp;&quot;&gt;Kaffiekopjes&lt;/a&gt; gefehlt. Zwei Fahrgeschäfte die mir doch sehr am Herzen liegen.&lt;/p&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Yellow</title>
		<link href="http://hartwin-hoyer.de/2009/05/25/yellow/"/>
		<id>http://hartwin-hoyer.de/2009/05/25/yellow/</id>
		<updated>2009-05-25T13:03:38+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3443584777/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3652/3443584777_fbd222f2c3_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3443584777/&quot;&gt;Yellow&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/p&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Icecream Flower</title>
		<link href="http://hartwin-hoyer.de/2009/05/25/icecream-flower/"/>
		<id>http://hartwin-hoyer.de/2009/05/25/icecream-flower/</id>
		<updated>2009-05-25T13:02:37+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3462161401/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3619/3462161401_1b1e9312c3_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3462161401/&quot;&gt;Icecream Flower&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;
&lt;p&gt;This flower reminds me of icecream &lt;img src=&quot;http://hartwin-hoyer.de/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Duet</title>
		<link href="http://hartwin-hoyer.de/2009/05/25/duet/"/>
		<id>http://hartwin-hoyer.de/2009/05/25/duet/</id>
		<updated>2009-05-25T13:02:22+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3446379975/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3358/3446379975_e2197269a3_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3446379975/&quot;&gt;Duet&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Explored. Thank You &lt;img src=&quot;http://hartwin-hoyer.de/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Sunset</title>
		<link href="http://hartwin-hoyer.de/2009/05/25/sunset/"/>
		<id>http://hartwin-hoyer.de/2009/05/25/sunset/</id>
		<updated>2009-05-25T13:01:59+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3398615082/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3613/3398615082_f19bcdc7b8_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3398615082/&quot;&gt;Sunset&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Sunset over the Caribbean Sea&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Dracut</title>
		<link href="http://www.harald-hoyer.de/personal/blog/dracut"/>
		<id>http://www.harald-hoyer.de/personal/blog/dracut</id>
		<updated>2009-05-12T14:20:00+00:00</updated>
		<content type="html">&lt;p&gt;Quoting Jeremy Katz:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;As Dave Jones started talking about months ago at Kernel Summit and LPC, there's a lot of duplication between distros on the tools used to generate the initramfs as well as the contents and how the initramfs works.  Ultimately, there's little reason for this not to be something that is shared and worked on by everyone.  Added to this is the fact that everyone's infrastructures for this have grown up over a long-ish period of time without significant amounts of reworking for the way that the kernel and early boot works these days.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Therefore Jeremy Katz started on a project, dracut, to be a new initramfs tool that can be used across various distributions.&lt;/p&gt;
&lt;p&gt;End of March I took over the project. To open up the development and keep it distribution neutral, I created a &lt;a class=&quot;external-link&quot; href=&quot;http://www.harald-hoyer.de/dracut-moved-to-kernel.org&quot;&gt;sourceforge project&lt;/a&gt;. Somehow interest in dracut faded and development stalled. Though, the current state allows booting from several distributions, there is still a lot to do. Have a look at the&lt;a class=&quot;external-link&quot; href=&quot;http://www.harald-hoyer.de/dracut-moved-to-kernel.org&quot;&gt; trac wiki&lt;/a&gt; and the &lt;a class=&quot;external-link&quot; href=&quot;http://www.harald-hoyer.de/dracut-moved-to-kernel.org&quot;&gt;TODO&lt;/a&gt; page, if you want to help. Using dracut and obsoleting nash/mkinitrd is a &lt;a href=&quot;https://fedoraproject.org/wiki/Features/Dracut&quot;&gt;Fedora Feature for F12&lt;/a&gt;, so any help is appreciated.&lt;/p&gt;
&lt;h2&gt;UPDATE:&lt;/h2&gt;
&lt;p&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.harald-hoyer.de/dracut-moved-to-kernel.org&quot;&gt;dracut moved to kernel.org&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Added Ubuntu 8.10 and 9.04 to the Bootchart Comparison of popular Linux Distributions</title>
		<link href="http://www.harald-hoyer.de/personal/blog/added-ubuntu-8.10-and-9.04-to-the-bootchart"/>
		<id>http://www.harald-hoyer.de/personal/blog/added-ubuntu-8.10-and-9.04-to-the-bootchart</id>
		<updated>2009-04-17T13:59:06+00:00</updated>
		<content type="html">&lt;p&gt;Added Ubuntu 8.10 and 9.04 to the &lt;a href=&quot;http://www.harald-hoyer.de/../../../linux/boot-time-distro-comparison&quot;&gt;Bootchart Comparison of popular Linux Distributions.&lt;/a&gt; Ubuntu 9.04 seems to be faster as Fedora 11 in first sight, but Ubuntu starts several daemons after the X start. Nevertheless for the user experience it is 4 seconds faster.&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Updated the Bootchart Comparison of popular Linux Distributions</title>
		<link href="http://www.harald-hoyer.de/personal/blog/updated-the-bootchart-comparison-of-popular-linux"/>
		<id>http://www.harald-hoyer.de/personal/blog/updated-the-bootchart-comparison-of-popular-linux</id>
		<updated>2009-04-17T10:30:00+00:00</updated>
		<content type="html">&lt;p&gt;Added Fedora 10 and Fedora 11 to the &lt;a href=&quot;http://www.harald-hoyer.de/../../linux/boot-time-distro-comparison&quot;&gt;Bootchart Comparison of popular Linux Distributions.&lt;/a&gt; The good progression in boot time can be seen easily.&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Internet with your mobile Phone over Bluetooth with NetworkManager</title>
		<link href="http://www.harald-hoyer.de/personal/blog/internet-with-your-mobile-phone-over-bluetooth"/>
		<id>http://www.harald-hoyer.de/personal/blog/internet-with-your-mobile-phone-over-bluetooth</id>
		<updated>2009-03-24T09:55:00+00:00</updated>
		<content type="html">&lt;p&gt;Sometimes you want to connect to the internet with your mobile phone over bluetooth with your laptop.&lt;/p&gt;
&lt;p&gt;To make this task easier I wrote a &lt;a href=&quot;http://www.harald-hoyer.de/dialup-bluetooth.py&quot;&gt;small python script&lt;/a&gt;. It needs pybluez and bluez.&lt;/p&gt;
&lt;pre&gt;# yum install pybluez bluez&lt;/pre&gt;
&lt;p&gt;Then you can start the python script as root:&lt;/p&gt;
&lt;pre&gt;# python &lt;a href=&quot;http://www.harald-hoyer.de/dialup-bluetooth.py&quot;&gt;dialup-bluetooth.py&lt;/a&gt;&lt;/pre&gt;
&lt;p&gt;It first searches for all bluetooth devices, which provide the Dialup Service, and displays a list, where you can select your mobile.&lt;/p&gt;
&lt;p&gt;Then it calls rfcomm and creates a rfcomm tty, which is bound to the bluetooth channel, and inserts a fake serial modem to hal with hal-device.&lt;/p&gt;
&lt;p&gt;This triggers NetworkManager, and after 2 seconds your mobile phone should be displayed in the NetworkManager list as a GSM device, which you can configure and use in NetworkManager.&lt;/p&gt;
&lt;p&gt;Maybe someone feels like doing a clean implementation, using the D-BUS interface for bluetooth, hal and NetworkManager.&lt;/p&gt;
&lt;p&gt;Have fun!&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Summary of the Fedora 11 - 20 Seconds Boot Feature - Test Day</title>
		<link href="http://www.harald-hoyer.de/personal/blog/20_Seconds_Boot_Feature_Test_Day"/>
		<id>http://www.harald-hoyer.de/personal/blog/20_Seconds_Boot_Feature_Test_Day</id>
		<updated>2009-03-02T15:54:59+00:00</updated>
		<content type="html">&lt;p&gt;On the &lt;a href=&quot;https://fedoraproject.org/wiki/QA/Test_Days/2009-02-19&quot;&gt;20 Seconds Boot Feature Test Day&lt;/a&gt; a lot of helpful people generated bootcharts from the latest rawhide build in various install configurations like &quot;Desktop&quot;, &quot;Server&quot; and &quot;Minimal&quot;.&lt;/p&gt;
&lt;p&gt;To extract the information from the bootchart logs and analyze them, I wrote a &lt;a href=&quot;http://harald.fedorapeople.org/bootcharts/bootana.py&quot;&gt;quick and dirty python script&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The network initscript has a variable duration due to external dependencies, like network card negotiation with the switch or getting the IP from the DHCP server (more than 50 seconds sometimes!!!!). Because of this, I have subtracted the duration of it from the resulting time.&lt;/p&gt;
&lt;p&gt;Resulting Tables with png bootcharts:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt; &lt;a title=&quot;QA:Testcase bootchart personal&quot; href=&quot;http://harald.fedorapeople.org/bootcharts/myservices.html&quot;&gt;QA:Testcase_bootchart_personal&lt;/a&gt;
&lt;/li&gt;&lt;li&gt; &lt;a title=&quot;QA:Testcase bootchart desktop&quot; href=&quot;http://harald.fedorapeople.org/bootcharts/desktop.html&quot;&gt;QA:Testcase_bootchart_desktop (with full desktop)&lt;/a&gt;
&lt;/li&gt;&lt;li&gt; &lt;a title=&quot;QA:Testcase bootchart desktop&quot; href=&quot;http://harald.fedorapeople.org/bootcharts/fulldesktop.html&quot;&gt;QA:Testcase_bootchart_full_desktop&lt;/a&gt;&lt;/li&gt;&lt;li&gt; &lt;a title=&quot;QA:Testcase bootchart server&quot; href=&quot;http://harald.fedorapeople.org/bootcharts/server.html&quot;&gt;QA:Testcase_bootchart_server&lt;/a&gt;
&lt;/li&gt;&lt;li&gt; &lt;a title=&quot;QA:Testcase bootchart minimal&quot; href=&quot;http://harald.fedorapeople.org/bootcharts/minimal.html&quot;&gt;QA:Testcase_bootchart_minimal&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;What we can see from the result, of course disk I/O speed and CPU speed are the major factors, which determine the boot speed.&lt;/p&gt;
&lt;p&gt;Other I/O factors include:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;disk fragmentation&lt;/li&gt;&lt;li&gt;type of filesystem used&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;But that it is not what we are looking for. We want to eliminate unnecessary bottle necks, where neither CPU or I/O is the limiting factor or where unexpected I/O or CPU activities are happening.&lt;/p&gt;
&lt;p&gt;For example, as we can see in &lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;https://fedoraproject.org/w/uploads/3/3b/Bootchart-a02fad60-dcf8-48d7-9de0-4d67a050313d-desktop.png&quot;&gt;https://fedoraproject.org/w/uploads/3/3b/Bootchart-a02fad60-dcf8-48d7-9de0-4d67a050313d-desktop.png&lt;/a&gt; restorecon is called in rc.sysinit on /dev , nash-hotplug is running and CPU is 
100% for 4 seconds with practically no disk I/O.&lt;/p&gt;
&lt;p&gt;Fortunately this is fixed already in latest mkinitrd by &lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://git.fedorahosted.org/git/?p=mkinitrd;a=commitdiff;h=d539443a6ebe8868a73daffa88adfc408838bc21;hp=9253a1b55376b491bf612f00ec1d3edc66502a3f&quot;&gt;http://git.fedorahosted.org/git/?p=mkinitrd;a=commitdiff;h=d539443a6ebe8868a73daffa88adfc408838bc21;hp=9253a1b55376b491bf612f00ec1d3edc66502a3f&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This bootchart is especially useful, because the whole boot process is taking so long, because the disk and CPU is so slow.&lt;/p&gt;
&lt;p&gt;What we also see, in comparison to other distributions, is the long time spent before rc.sysinit is even started. First there is the kernel loading and initialization and second there is
nash with a whole udev implementation and plymouth started. While nash
is nice to have, because a lot of variants of root devices are
supported, efforts for a &lt;a class=&quot;external-link&quot; href=&quot;http://lkml.org/lkml/2008/12/17/318&quot;&gt;unified cross distribution initrd&lt;/a&gt; are
underway. We will see, if that helps or increases boot time in the
future.&lt;/p&gt;
&lt;p&gt;
For example on my Dell, the time until rc.sysinit is started varies between 5 and 10 seconds. So this fluctuation has to be recognized when comparing bootcharts (even from the same distribution and machine).&lt;/p&gt;
&lt;p&gt;Next thing started after nash is rc.sysinit. There have bugzillas filed against some applications, which do not clean up their state directories, resulting in a long &quot;find and remove&quot; action in rc.sysinit (&lt;a title=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=485974&quot; class=&quot;external text&quot; href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=485974&quot;&gt;var/run/gdm/auth-for* directories not removed.... slows boot)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The big thing started in rc.sysinit is, of course, start_udev. start_udev first removes all files in /dev, creates all basic nodes, runs restorecon on them and begins replaying all kernel hotplug events. This triggers module loading and the creation of all hardware device nodes for the hardware found on the system. Module loading is taking the most part of I/O and CPU here. If you consider to speedup modprobe, keep in mind that even loading all modules via insmod by hand takes nearly as much time as using modprobe with dependency resolution and database reading. On my systems the difference between using insmod and modprobe was not recognizable at all. So, I would conclude that most of the time is spent reading the module files from disk and most CPU is spent in the kernel with module and hardware initialization.&lt;/p&gt;
&lt;p&gt;Of course some points make your system noticeable slower in this part:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;use of /etc/udev/makedev.d/. If there are files in /etc/udev/makedev.d, MAKEDEV is called, which in turn reads a lot of files from /etc/makedev.d, which takes a lot of time on some systems.&lt;/li&gt;&lt;li&gt;too many scripts in /lib/udev/rules.d or /etc/udev/rules.d. On some systems you do not need all rule files. Some rules are executed on every device added, just to catch a corner case, which might never happen on your system.&lt;/li&gt;&lt;li&gt;some 3rd party rules are very badly designed and implement a kind of busy polling. Watch out for them and report them to the package owner and/or on bugzilla.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;In the example bootchart we can also immediately see the effect of some components, which are slow or can be started on demand:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;rpc services (&lt;a title=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=479587&quot; class=&quot;external text&quot; href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=479587&quot;&gt;disturbing hacks to start nfs-utils services on demand (not entirely serious)&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;cupsd (&lt;a title=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=480668&quot; class=&quot;external text&quot; href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=480668&quot;&gt;(RFC, PATCH) start cups on demand, using xinetd&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fedora-system-keyboard, which starts the whole python interpreter with a lot of I/O happening for that. (&lt;a href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=483817&quot;&gt;https://bugzilla.redhat.com/show_bug.cgi?id=483817&lt;/a&gt;)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;dellWirelessCtl has a lot of I/O here.&lt;/li&gt;&lt;li&gt;HAL is growing and growing and takes more and more time to startup.&lt;/li&gt;&lt;li&gt;NetworkManager starting wpa_supplicant even for static network interfaces which do not require authentication and DHCP. So the service of wpa_supplicant is never used. (&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=482823&quot;&gt;https://bugzilla.redhat.com/show_bug.cgi?id=482823)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Xorg is having a significant time with no I/O and full CPU&lt;/li&gt;&lt;li&gt;Bluetooth and IRDA being started (&lt;a title=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=484345&quot; class=&quot;external text&quot; href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=484345&quot;&gt;start the bluetooth service via udev&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;cpuspeed with no I/O and CPU&lt;/li&gt;&lt;li&gt;microcode has a sleep (&lt;a title=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=479898&quot; class=&quot;external text&quot; href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=479898&quot;&gt;microcode_ctl busy polling&lt;/a&gt; &lt;a href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=479898&quot;&gt;microcode_ctl ships a pointless init script&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;An Ideal Boot Setup&lt;/h3&gt;
&lt;p&gt;In an ideally boot setup CPU and I/O is maxed out the whole boot process.&lt;/p&gt;
&lt;p&gt;Ways of how to achieve this:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;readahead all files used to fill the memory disk cache in parallel to the normal boot process&lt;br /&gt;&lt;/li&gt;&lt;li&gt;avoid sleeps&lt;/li&gt;&lt;li&gt;run services which do not depend on each other in parallel&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;An ideal init process would take the premier goal (in the desktop case it would be the login screen), start everything what is needed for it with first priority and start the rest in parallel or delayed with low (I/O and CPU) priority.&lt;/p&gt;
&lt;p&gt;What is needed to achieve that:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Dependencies! This is why I once started the LSB Header bugzilla tracker. &lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=246824&quot;&gt;https://bugzilla.redhat.com/show_bug.cgi?id=246824&lt;/a&gt;&lt;/li&gt;&lt;li&gt;An init process, which knows about the dependencies and the primary goal and sets up the I/O and CPU priorities.&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;What you can do now to speed up your boot process&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;install and run prelink&lt;/li&gt;&lt;li&gt;install and run readahead / preload&lt;/li&gt;&lt;li&gt;maybe defragment a heavy fragmented filesystem?&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;What to keep in mind as a developer&lt;br /&gt;&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;try to start services on demand (might be hardware dependent, use udev/hal or just look in /sys if the hardware is even there)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;do not cause heavy I/O on start up (like reading a whole big databases in memory or reading big log files, or using an interpreter (like fedora-setup-keyboard)), or use a low I/O priority&lt;br /&gt;&lt;/li&gt;&lt;li&gt;do not use sleep 1, if you are busy polling, use &quot;sleep 0.2&quot; or find another mechanism&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;If your udev rule does not have to be executed at boot time, consider using the ENV{STARTUP}!=&quot;1&quot; condition.&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;What did the test day achieve?&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;As an immediate outcome of the test day, I modified readahead and released readahead-1.4.8 with the following changes:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;set low I/O priority (no more regression in boot time with readahead)&lt;/li&gt;&lt;li&gt;moved data files from /etc/readahead.d to /var/lib/readahead&lt;/li&gt;&lt;li&gt;don't start readahead from readahead.event, if system has less than 384MB&lt;/li&gt;&lt;/ul&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Hispaniolan Woodpecker</title>
		<link href="http://hartwin-hoyer.de/2009/02/16/exotic-bird/"/>
		<id>http://hartwin-hoyer.de/2009/02/16/exotic-bird/</id>
		<updated>2009-02-17T09:55:22+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3283414361/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3247/3283414361_4c5167a4ed_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3283414361/&quot;&gt;Hispaniolan Woodpecker&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/p&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;
&lt;p&gt;Taken in the Dominican Republic&lt;/p&gt;
&lt;p&gt;Melanerpes striatus&lt;/p&gt;
&lt;p&gt;It is endemic to the island.&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry>
		<title type="html">Die neue Achterbahn 2009 im Europa Park &quot;Blue Fire&quot; Teil 2</title>
		<link href="http://www.herward-hoyer.de/blogs/die-neue-achterbahn-2009-im-europa-park-blue-fire-teil-2"/>
		<id>http://www.herward-hoyer.de/blogs/die-neue-achterbahn-2009-im-europa-park-blue-fire-teil-2</id>
		<updated>2009-01-30T21:25:40+00:00</updated>
		<content type="html">&lt;h3&gt;Die Fakten&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;Name der Achterbahn: Blue Fire&lt;br /&gt;&lt;/li&gt;&lt;li&gt;80 Meter LIM-Antrieb&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Höchster Punkt 38m&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Länge 1.056 Meter&lt;/li&gt;&lt;li&gt;Höchstgeschwindigkeit: 100 km/h&lt;/li&gt;&lt;li&gt;Dauer der Fahrt ca. 03:20 Minuten &lt;br /&gt;&lt;/li&gt;&lt;li&gt;Anzahl der Züge: 5 Stück&lt;/li&gt;&lt;li&gt;Fahrgäste pro Zug: 20 Personen&lt;/li&gt;&lt;li&gt;Gesamtkapazität: 1720 Personen/h&lt;/li&gt;&lt;li&gt;Hersteller: MACK Rides GmbH &amp;amp; Co. KG&lt;/li&gt;&lt;li&gt;Kombination aus Launch Coaster mit Überschlagselementen und Dark Ride&amp;nbsp;&lt;/li&gt;&lt;li&gt;Rückhaltesystem ohne Schulterbügel&lt;/li&gt;&lt;li&gt;
&lt;p&gt;eventuelle Weltneuheit: höchster Looping bei einer Katapultbahn in Europa&lt;/p&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;1. Teaser Video vom Europa-Park&lt;/h3&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;h3&gt;2. Teaser Video vom Europa-Park&lt;/h3&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;h3&gt;Video vom Loopingschluss am 22.10.2008&lt;/h3&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;h3&gt;Interview mit Michael Mack&lt;/h3&gt;

&lt;h3&gt;Sehr orginalgetreuer nachbau der Achterbahn mit Nolimits&lt;/h3&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;Siehe auch:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.epfans.info/?id=2275&amp;amp;&quot;&gt;Baustellen Bilder vom 14.11.2008&lt;/a&gt; auf den Seiten des offiziellen Europa-Park Fanclubs&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.mack-rides.de/leseobjekte.pdf?id=614o&quot;&gt;Produktkatalog der Firma Mack-Rides&lt;/a&gt; (im Teil Lauched Coaster gibt es Bilder des Zuges der neuen Achterbahn)&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Die neue Achterbahn 2009 im Europa Park &quot;Blue Fire&quot; Teil 3</title>
		<link href="http://www.herward-hoyer.de/blogs/die-neue-achterbahn-2009-im-europa-park-blue-fire-teil-3"/>
		<id>http://www.herward-hoyer.de/blogs/die-neue-achterbahn-2009-im-europa-park-blue-fire-teil-3</id>
		<updated>2009-01-30T21:25:12+00:00</updated>
		<content type="html">&lt;h3&gt;Die Fakten&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;Name der Achterbahn: Blue Fire&lt;br /&gt;&lt;/li&gt;&lt;li&gt;80 Meter LIM-Antrieb&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Höchster Punkt 38m&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Länge 1.056 Meter&lt;/li&gt;&lt;li&gt;Höchstgeschwindigkeit: 100 km/h&lt;/li&gt;&lt;li&gt;Dauer der Fahrt ca. 03:20 Minuten &lt;br /&gt;&lt;/li&gt;&lt;li&gt;Anzahl der Züge: 5 Stück&lt;/li&gt;&lt;li&gt;Fahrgäste pro Zug: 20 Personen&lt;/li&gt;&lt;li&gt;Gesamtkapazität: 1720 Personen/h&lt;/li&gt;&lt;li&gt;Hersteller: MACK Rides GmbH &amp;amp; Co. KG&lt;/li&gt;&lt;li&gt;Kombination aus Launch Coaster mit Überschlagselementen und Dark Ride&amp;nbsp;&lt;/li&gt;&lt;li&gt;Rückhaltesystem ohne Schulterbügel&lt;/li&gt;&lt;li&gt;
&lt;p&gt;eventuelle Weltneuheit: höchster Looping bei einer Katapultbahn in Europa&lt;/p&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Sehr aktueller und orginalgetreuer Nachbau der Achterbahn mit Nolimits&lt;/h3&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;h3&gt;Aktuelle Bilder&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.ep-fans.info/?id=2317&amp;amp;PHPSESSID=0bbf33966d8b7b50fda78206628981be&quot;&gt;Baustellenbilder&lt;/a&gt; auf &lt;a class=&quot;external-link&quot; href=&quot;http://www.ep-fans.info&quot;&gt;ep-fans&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Tolle Bilder der Achterbahn &lt;a class=&quot;external-link&quot; href=&quot;http://lifthill.net/galerie/baustelle-europa-park_de/&quot;&gt;Blue-Fire bei Nacht&lt;/a&gt; auf &lt;a class=&quot;external-link&quot; href=&quot;http://lifthill.net&quot;&gt;Lifthil.net&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">HowTo: .Net Entwicklung unter Fedora mit Monodevelop</title>
		<link href="http://www.herward-hoyer.de/blogs/howto-.net-entwicklung-unter-fedora-mit-monodevelop"/>
		<id>http://www.herward-hoyer.de/blogs/howto-.net-entwicklung-unter-fedora-mit-monodevelop</id>
		<updated>2009-01-19T09:38:59+00:00</updated>
		<content type="html">&lt;h2&gt;Monodevelop&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;Das Pendant unter Linux für die Integrierte Entwicklungsumgebung (IDE) Visual Studio heißt unter Linux Monodevelop.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.monodevelop.com/Main_Page&quot;&gt;Monodevelop&lt;/a&gt; ist Teil des Monoprojektes und wird aktiv von Novel entwickelt.&lt;/p&gt;
&lt;h3&gt;Unterstützte Programmiersprachen:&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;

C#&lt;/li&gt;&lt;li&gt;Visual Basic .Net&lt;/li&gt;&lt;li&gt;Java&lt;/li&gt;&lt;li&gt;Boo&lt;/li&gt;&lt;li&gt;Nemerle&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Wichtigste Feature:&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;Code Completion&lt;/li&gt;&lt;li&gt;Class Management&lt;/li&gt;&lt;li&gt;Project Support&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Installation&lt;/h3&gt;
Um &lt;a class=&quot;external-link&quot; href=&quot;http://www.monodevelop.com/Main_Page&quot;&gt;Monodevelop&lt;/a&gt; zu installieren, öffnet man ein Terminal, wird root und installiert das Paket &lt;em&gt;monodevelop&lt;/em&gt; über yum.
&lt;pre&gt;$ su - 
Passwort:
# yum install monodevelop
&lt;/pre&gt;
&lt;h3&gt;Monodevelop Starten&lt;/h3&gt;
&lt;p&gt;&amp;nbsp;Anwendungen/Monodevelop&lt;/p&gt;
&lt;p&gt;oder über ein Terminal simpel mit&lt;/p&gt;
&lt;p&gt;$ monodevelop&lt;/p&gt;
&lt;h3&gt;Siehe Auch:&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/MonoDevelop&quot;&gt;Monodevelop auf Wikipedia&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.monodevelop.com/Main_Page&quot;&gt;Offizielle Monodevelop Webpage&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">GUA</title>
		<link href="http://hartwin-hoyer.de/2009/01/14/gua/"/>
		<id>http://hartwin-hoyer.de/2009/01/14/gua/</id>
		<updated>2009-01-14T10:45:12+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3196621352/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3431/3196621352_290c586acf_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3196621352/&quot;&gt;GUA&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Sky</title>
		<link href="http://hartwin-hoyer.de/2009/01/14/sky/"/>
		<id>http://hartwin-hoyer.de/2009/01/14/sky/</id>
		<updated>2009-01-14T09:22:57+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3195688515/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3517/3195688515_9a9968a8a2_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3195688515/&quot;&gt;Sky&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry>
		<title type="html">Die Evolution der Pinball Simulationen</title>
		<link href="http://www.herward-hoyer.de/blogs/die-evolution-der-pinball-simulationen"/>
		<id>http://www.herward-hoyer.de/blogs/die-evolution-der-pinball-simulationen</id>
		<updated>2009-01-09T23:36:27+00:00</updated>
		<content type="html">&lt;h2&gt;1992 - Pinball Dreams (Amiga)&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;Einer der ersten Flippersimulationen, die sich damals auf meinem Amiga 500 getummelt haben. Die Tische waren gut spielbar und die Musik war klasse.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://en.wikipedia.org/wiki/Pinball_Dreams&quot;&gt;Pinball Dreams auf Wikipedia&lt;/a&gt; (englisch)&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://wapedia.mobi/de/Pinball_Dreams&quot;&gt;Pinball Dreams auf Wapedia&lt;/a&gt; (deutsch)&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;



&lt;/p&gt;
&lt;h3&gt;Ignition&lt;/h3&gt;
&lt;p&gt;





&lt;/p&gt;
&lt;h3&gt;Steel Wheel&lt;/h3&gt;
&lt;p&gt;






&lt;/p&gt;
&lt;h3&gt;Beat Box&lt;/h3&gt;
&lt;p&gt;





&lt;/p&gt;
&lt;h3&gt;Nightmare table&lt;/h3&gt;
&lt;p&gt;






&lt;/p&gt;
&lt;h2&gt;1993 - Pinball Fantasies (Amiga)&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;Der Nachfolger von Pinball Deams hatte bessere Tische und coolere Musik. Die Segmentanzeigen vom Vorgänger wurde duch Dot-Matix ausgetauscht. Besonderes hohen Spielspass hatte ich mit meinen Brüdern auf dem Tisch Stones 'n Bones.&lt;/p&gt;
&lt;p&gt;Weitere Informationen zu Pinball Fantasies:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Pinball_Fantasies&quot;&gt;Wikipedia&lt;/a&gt; (deutsch)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://en.wikipedia.org/wiki/Pinball_Fantasies&quot;&gt;Wikipedia&lt;/a&gt; (eglisch)&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://wapedia.mobi/de/Pinball_Fantasies&quot;&gt;Wapedia&lt;/a&gt; (deutsch)&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;h3&gt;Stones 'n Bones&lt;/h3&gt;
&lt;p&gt;




&lt;/p&gt;
&lt;h3&gt;Billion Dollar Gameshow&lt;/h3&gt;
&lt;p&gt;




&lt;/p&gt;
&lt;h3&gt;Party Land&lt;/h3&gt;
&lt;p&gt;






&lt;/p&gt;
&lt;h3&gt;Speed Devils&lt;/h3&gt;
&lt;p&gt;




&lt;/p&gt;
&lt;h2&gt;1996 - Tilt! Hyper 3D Pinball (PC-Win95)&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;Tilt! war die erste Flippersimulation in 3D, die ich besass. Die Kugel ruckelte arg über den Spieltisch und die gerenderten Zwishensequenzen hätte man sich sparen können. Keiner der 4 mitgelieferten Tische bot längeranhaltenden Spielspass. Ein Fehlkauf, leider.&lt;/p&gt;
&lt;h3&gt;The Gangster&lt;/h3&gt;
&lt;p&gt;






&lt;/p&gt;
&lt;h3&gt;Fun Fair&lt;/h3&gt;
&lt;p&gt;






&lt;/p&gt;
&lt;h3&gt;The Monster&lt;/h3&gt;
&lt;p&gt;





&lt;/p&gt;
&lt;h2&gt;1997 - Pro Pinball - Timeshock (PC-Windows)&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;Schon die Verpackung parlt mit überguten Bewertungen der damalig einschlägigen Computerspielezeitschriften. Und sie haben Recht! Obwohl des Spiel einzig und allein aus nur einem Flippertisch besteht, fesselt mich diese Simulation auch heute noch am Meissten.&lt;/p&gt;
&lt;p&gt;Sehr gut positionierte Spielelemente, schier unendlich viele Missionen, nahezu perfekte Ballphysik und aufregende Musik macht Pro Pinball Timeshock zur Besten Flippersimulation, die mir bekannt ist.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Pro_Pinball&quot;&gt;Pro Pinball auf Wikipedia&lt;/a&gt;&lt;br /&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;





&lt;/p&gt;
&lt;h2&gt;1998 - Pro Pinball - Big Race USA (PC-Windows)&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;Der heiß ersehnte Nachfolger der Flippersimulation Timeshock. Bessere Ballphysik, ähnlich guter Sound und ebenfalls schier nicht enden wollende Vielzahl an Missionen.&lt;/p&gt;
&lt;p&gt;Erwähnenswert ist der wohl verrückteste Multiball den ich jeh erlebt habe. Leider ruckelt die Simulation ein bisschen. Vielleicht sollte ich mir doch erst noch einen besseren Rechner zulegen um dieses Spiel &lt;em&gt;richtig&lt;/em&gt; spielen zu können.&lt;/p&gt;
&lt;p&gt;Big Race USE übetrifft Timeshock mit der neueren Technik auf jeden Fall. Beim &lt;em&gt;Spielflow &lt;/em&gt;hat allerdings Timeshock immer noch die Nase vorn.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Pro_Pinball&quot;&gt;Pro Pinball auf Wikipedia&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;






&lt;/p&gt;
&lt;h2&gt;1999 - Pro Pinball - Fantastic Journey (PC-Windows)&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;Ein weiterer und gleichzeit der letzte Kandidat aus der Pro-Pinball Serie. Nochmals überarbeitete Ballphysik, Grafik- und Soundsystem.&lt;/p&gt;
&lt;p&gt;Ruckelt auf meinem Rechner genau wie Big Race USA und ist meiner Meinung noch schlechter im Gameflow als Big-Race USA. Trotzdem sehr spielbar.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Pro_Pinball&quot;&gt;Pro Pinball auf Wikipedia&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;




 &lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Howto: Fedora 10, animierter grafischer Bootprozess mit Plymouth</title>
		<link href="http://www.herward-hoyer.de/blogs/howto-fedora-10-animierter-grafischer-bootprozess-mit-plymouth"/>
		<id>http://www.herward-hoyer.de/blogs/howto-fedora-10-animierter-grafischer-bootprozess-mit-plymouth</id>
		<updated>2008-12-17T22:44:29+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;
&lt;h3&gt;Grub konfigurieren&lt;/h3&gt;
&lt;p&gt;Um &lt;a class=&quot;external-link&quot; href=&quot;http://www.gnu.org/software/grub/&quot;&gt;Grub&lt;/a&gt; zu konfigurieren, öffnet man ein Terminal, wird root und bearbeitet das Grub Konfigurationsfile.&lt;/p&gt;
&lt;pre&gt;$ su - 
Passwort:
# vim /etc/grub.conf&lt;/pre&gt;
&lt;p&gt;Hier das &lt;a class=&quot;external-link&quot; href=&quot;http://www.gnu.org/software/grub/&quot;&gt;Grub&lt;/a&gt; Konfigurationsfile:&lt;/p&gt;
&lt;pre&gt;&lt;em&gt;[...]&lt;/em&gt;
title Fedora (2.6.27.5-117.fc10.i686)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root (hd0,0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; kernel /vmlinuz-2.6.27.5-117.fc10.i686 &lt;em&gt;[...]&lt;/em&gt; rhgb quiet &lt;strong&gt;vga=792
&lt;/strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; initrd /initrd-2.6.27.5-117.fc10.i686.img&lt;/pre&gt;
&lt;p&gt;In die Kernel-Zeile wird &quot;&lt;strong&gt;vga=xxx&lt;/strong&gt;&quot; hinzugefügt. Die Zahl ergibt sich aus der Auflösung und der Farbtiefe. Untenstehende Tabelle sollte hierbei helfen.&lt;/p&gt;
&lt;table class=&quot;listing&quot;&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th align=&quot;center&quot;&gt;Farbtiefe&lt;/th&gt;
&lt;th align=&quot;center&quot;&gt;640*480&lt;br /&gt;&lt;/th&gt;
&lt;th align=&quot;center&quot;&gt;800*600&lt;br /&gt;&lt;/th&gt;
&lt;th align=&quot;center&quot;&gt;1024*768&lt;br /&gt;&lt;/th&gt;
&lt;th align=&quot;center&quot;&gt;1280*1024&lt;br /&gt;&lt;/th&gt;
&lt;th align=&quot;center&quot;&gt;1600*1200&lt;br /&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td align=&quot;right&quot;&gt;256&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;769&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;771&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;773&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;775&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;769&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align=&quot;right&quot;&gt;32768&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;784&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;787&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;790&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;793&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;797&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align=&quot;right&quot;&gt;65536&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;785&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;788&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;781&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;794&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;798&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align=&quot;right&quot;&gt;16,8M&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;786&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;789&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;792&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;795&lt;/td&gt;
&lt;td align=&quot;right&quot;&gt;799&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3&gt;Installieren der Plymouth-Plugins&lt;/h3&gt;
&lt;p&gt;Um die &lt;a class=&quot;external-link&quot; href=&quot;http://cgit.freedesktop.org/plymouth/&quot;&gt;Plymouth&lt;/a&gt;-Plugins zu installieren öffnet man sich ein Terminal und lädt sich mit yum die entsprechende Programmpakete herunter.&lt;/p&gt;
&lt;pre&gt;$ su -
Passwort:
# yum install plymouth-plugin-*&lt;/pre&gt;
&lt;p&gt;Folgende Plugins waren zu der Zeit als der Artikel geschrieben wurde verfügbar:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;plymouth-plugin-fade-in.i386&lt;/li&gt;&lt;li&gt;plymouth-plugin-label.i386&lt;/li&gt;&lt;li&gt;plymouth-plugin-pulser.i386&lt;/li&gt;&lt;li&gt;plymouth-plugin-solar.i386&lt;/li&gt;&lt;li&gt;plymouth-plugin-spinfinity.i386&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Konfigurieren von Plymouth&lt;/h3&gt;
Um &lt;a class=&quot;external-link&quot; href=&quot;http://cgit.freedesktop.org/plymouth/&quot;&gt;Plymouth&lt;/a&gt; zu konfigurieren, öffnet man ein Terminal, wird root und setzt das default plymouth plugin mit dem Befehl &quot;plymouth-set-default-plugin&quot;.
&lt;pre&gt;$ su -
Passwort:
# plymouth-set-default-plugin &lt;strong&gt;solar&lt;/strong&gt;
# /usr/libexec/plymouth/plymouth-update-initrd&lt;/pre&gt;
&lt;p&gt;Das Wort &lt;strong&gt;solar&lt;/strong&gt; lässt sich durch den jeweiligen Pluginnamen (fade-in, label, pulser, solar und spinfinity) ersetzen.&lt;/p&gt;
&lt;p&gt;Viel Spass beim rebooten.&lt;/p&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Fedora 10 - Boot Analysis</title>
		<link href="http://www.harald-hoyer.de/personal/blog/fedora-10-boot-analysis"/>
		<id>http://www.harald-hoyer.de/personal/blog/fedora-10-boot-analysis</id>
		<updated>2008-12-15T14:44:20+00:00</updated>
		<content type="html">&lt;p&gt;Hardware: Asus EeePC 901 with a flash disk.&lt;/p&gt;
&lt;p&gt;Time taken from entering the encrypted root disk password until the password can be entered (after pressing return in gdm). The 10 second wait in nash is ignored here (which really annoys me and seems to be fixed in newer mkinitrd versions).&lt;/p&gt;
&lt;p&gt;Default Live CD Installation:&amp;nbsp; 39s (&lt;a href=&quot;http://www.harald-hoyer.de/files/f10boot/bootchart-nonread.png&quot;&gt;bootchart&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;After installing readahead and running one collection boot process: 36s (&lt;a class=&quot;external-link&quot; href=&quot;http://www.harald-hoyer.de/files/f10boot/bootchart-readahead.png&quot;&gt;bootchart&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;At this point, I recognized that all processes (like newaliases), which call a fsync(), let the boot process wait until all data is written to disk. This is the same effect as the &lt;a href=&quot;http://shaver.off.net/diary/2008/05/25/fsyncers-and-curveballs/&quot;&gt;firefox sqlite fsync bug&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Mounting the root filessystem with relatime and turning off ordered data writing for the journal with&lt;/p&gt;
&lt;pre&gt;# tune2fs -o journal_data_writeback /dev/root&lt;/pre&gt;
&lt;p&gt;improved the situation (even though data might be old on the disk after a crash, but ext3 does not force the disk to empty the write cache anyway).&lt;/p&gt;
&lt;p&gt;Turning off setroubleshoot and fixing &lt;a title=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=476023&quot; class=&quot;external free&quot; href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=476023&quot;&gt;https://bugzilla.redhat.com/show_bug.cgi?id=476023&lt;/a&gt; and &lt;a title=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=476028&quot; class=&quot;external free&quot; href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=476028&quot;&gt;https://bugzilla.redhat.com/show_bug.cgi?id=476028&lt;/a&gt;: 32s (&lt;a href=&quot;http://www.harald-hoyer.de/files/f10boot/bootchart-readahead-nosetrouble.png&quot;&gt;bootchart&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;Turning off bootchart: 30s&lt;/p&gt;
&lt;p&gt;So all in all we have nearly accomplished the &lt;a href=&quot;http://fedoraproject.org/wiki/Features/30SecondStartup&quot;&gt;30 Second Startup Feature&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To reach the &lt;a href=&quot;http://fedoraproject.org/wiki/Features/20SecondStartup&quot;&gt;20 Second Startup Feature&lt;/a&gt;, we really have to tackle setroubleshootd. Also we might start to move basic services to upstart and start them in parallel (&lt;a href=&quot;http://www.harald-hoyer.de/files/f10boot/bootchart-readahead-nosetrouble-upstart.png&quot;&gt;bootchart&lt;/a&gt; with some services moved). Parallel booting will show no benefits with readahead and a small amount of active services, but the more services are turned on, the more you benefit with a parallel boot setup. Moving more basic modules to be compiled in the kernel also would gain some seconds. Speaking about modules, I ported Jakubs modprobe patch to the recent 3.6pre1 module-init-tools version. Though it nearly halves I/O, it would only safe us a fraction of a second here (not recognizable).&lt;/p&gt;
&lt;p&gt;In the end, we also have to extend our view to things that happen after the user logs in (&lt;a href=&quot;http://www.harald-hoyer.de/files/f10boot/bootchart-full.png&quot;&gt;bootchart&lt;/a&gt;) and do an extended analysis. Work is also in &lt;a href=&quot;http://mces.blogspot.com/2008/12/improving-login-time-part-3.html&quot;&gt;progress&lt;/a&gt; by Gnome developer   &lt;a href=&quot;http://mces.blogspot.com/&quot;&gt;Behdad Esfahbod&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Follow the &lt;a href=&quot;http://thread.gmane.org/gmane.linux.redhat.fedora.devel/100478&quot;&gt;discussion&lt;/a&gt; on fedora-devel.&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Fedora 10 - Disk IO</title>
		<link href="http://www.harald-hoyer.de/personal/blog/fedora-10-disk-io"/>
		<id>http://www.harald-hoyer.de/personal/blog/fedora-10-disk-io</id>
		<updated>2008-12-02T15:40:08+00:00</updated>
		<content type="html">&lt;p&gt;Identifying heavy disk IO tasks and reducing IO helps to shorten the boot time on e.g. a Asus EeePC.&lt;/p&gt;
&lt;p&gt;To measure IO, I installed a systemtap script to run as soon as rc.sysinit starts.&lt;/p&gt;
&lt;pre&gt;#! /usr/bin/env stap
# modified traceio.stp
# Copyright (C) 2007 Red Hat, Inc., Eugene Teo &amp;lt;eteo@redhat.com&amp;gt;
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#

global device_of_interest, dev, reads, writes, total_io

probe begin {
&amp;nbsp; /* Hack! Insert your MAJOR, MINOR of the 
     device you are interested in */
&amp;nbsp; device_of_interest = MKDEV(253, 1)
}

probe vfs.read.return {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (dev == device_of_interest)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; reads[execname()] += $return
}

probe vfs.write.return {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (dev == device_of_interest)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; writes[execname()] += $return
}

probe timer.s(1) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (p in reads)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; total_io[p] = 0
&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (p in writes)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; total_io[p] = 0
&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (p in reads)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; total_io[p] += reads[p]
&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (p in writes)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; total_io[p] += 5 * writes[p]
&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach(p in total_io- limit 10)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; printf(&quot;%15s r: %8d KiB w: %8d KiB\n&quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; p, reads[p]/1024,
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; writes[p]/1024)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; printf(&quot;\n&quot;)
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Note we don't zero out reads, writes,
&amp;nbsp;&amp;nbsp;&amp;nbsp; # so the values are cumulative since the script started.
}&lt;/pre&gt;
&lt;p&gt;Because on a EeePC disk writes are very slow (5 times slower than reading) they are weighted with factor 5.&lt;/p&gt;
&lt;p&gt;From rc.sysinit start to the gdm login screen, the top 5 IO tasks are on my Live-CD standard installation:&lt;/p&gt;
&lt;table class=&quot;plain&quot;&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;Read KiB&lt;/th&gt;
&lt;th&gt;Write KiB&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;modprobe&lt;/td&gt;
&lt;td&gt;5900&lt;/td&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;gconfd-2&lt;/td&gt;
&lt;td&gt;4827&lt;/td&gt;
&lt;td&gt;47&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;setroubleshootd&lt;/td&gt;
&lt;td&gt;4187&lt;/td&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;xkbcomp&lt;/td&gt;
&lt;td&gt;2961&lt;/td&gt;
&lt;td&gt;81&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;rpcbind&lt;/td&gt;
&lt;td&gt;3248&lt;/td&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;modprobe: I wonder what happened to &lt;a href=&quot;https://www.redhat.com/archives/fedora-devel-list/2008-October/msg00043.html&quot;&gt;Jakub's modprobe speedup patches&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;setroubleshootd: should really be more lightweight and needs a cleanup.&lt;/li&gt;&lt;li&gt;gconfd-2, xkbcomp: Behdad has currently &lt;a href=&quot;http://mces.blogspot.com/2008/11/improving-login-time-part-2-gnome.html&quot;&gt;been looking at the login process&lt;/a&gt;, which hopefully improved the situation a bit.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;rpcbind: will have to investigate, why it reads so much.&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Now, if you want to improve Fedora's boot speed, here is a starting point.&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Sun Fog</title>
		<link href="http://hartwin-hoyer.de/2008/11/26/sun-fog/"/>
		<id>http://hartwin-hoyer.de/2008/11/26/sun-fog/</id>
		<updated>2008-11-26T13:33:26+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3029769008/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3227/3029769008_35e9e8d2a5_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/3029769008/&quot;&gt;Sun Fog&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon ?&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I saw this and thought: &amp;#8220;wow, I need to take a picture of this.&amp;#8221;&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry>
		<title type="html">HowTo: Nachbau Blue-Fire in No Limits</title>
		<link href="http://www.herward-hoyer.de/blogs/howto-nachbau-blue-fire-in-no-limits"/>
		<id>http://www.herward-hoyer.de/blogs/howto-nachbau-blue-fire-in-no-limits</id>
		<updated>2008-11-23T12:59:05+00:00</updated>
		<content type="html">&lt;h3&gt;Aller Anfang ist schwer&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;Nachdem ich versucht habe die Strecke der Achterbahn frei Hand in &lt;a class=&quot;external-link&quot; href=&quot;http://www.nolimitscoaster.com/deutsch/&quot;&gt;No Limits&lt;/a&gt; zu entwerfen, musste ich ziemlich schnell festgestellt, dass es überhaupt keinen Sinn macht ohne Plan heranzugehen. Die Streckenführung war zwar ansatzweise richtig, jedoch befriedigte mich das Ergebnis in keinster Weise.&lt;/p&gt;
&lt;h3&gt;Die Streckenführung&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;Der erste Schritt war also irgendwo ein Layout herzubekommen. Wie bestellt kam ein &lt;a class=&quot;external-link&quot; href=&quot;http://www.ep-board.de/viewtopic.php?t=2949&amp;amp;postdays=0&amp;amp;postorder=asc&amp;amp;start=1740&quot;&gt;Posting&lt;/a&gt; im &lt;a class=&quot;external-link&quot; href=&quot;http://www.ep-board.de&quot;&gt;Europa-Park Fan Forum&lt;/a&gt; mit einem Streckenlayout der Achterbahn aus der Zeitschrift Euro-Amusement. (Besorgt euch das Bild bitte selber - Rechte zum download halte ich an dem Bild nicht!)&lt;/p&gt;
&lt;p&gt;Jetzt musste das Layout nur noch irgendwie in&lt;a class=&quot;external-link&quot; href=&quot;http://www.nolimitscoaster.com/deutsch/&quot;&gt; No Limits&lt;/a&gt; &quot;importiert&quot; werden. Meine ersten Überlegungen waren also den Plan auszudrucken und mit Lineal und Bleistift zu bemaßen. Diese Überlegung habe ich aber nach 5 Minuten gleich wieder verworfen. Der Aufwand wäre schlichtweg zu hoch.&lt;/p&gt;
&lt;h3&gt;Koordinatenfindung&lt;br /&gt;&lt;/h3&gt;
&lt;dl class=&quot;image-left captioned&quot;&gt;
&lt;dt&gt;&lt;a rel=&quot;lightbox&quot; href=&quot;http://www.herward-hoyer.de/blogs/bilder/screenshots-nachbau-blue-fire-in-nolimits/screenshot_Inkscape01.png&quot;&gt;&lt;img src=&quot;http://www.herward-hoyer.de/blogs/bilder/screenshots-nachbau-blue-fire-in-nolimits/screenshot_Inkscape01.png/image_mini&quot; alt=&quot;screenshot_Inkscape01.png&quot; title=&quot;screenshot_Inkscape01.png&quot; height=&quot;122&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/dt&gt;
 &lt;dd class=&quot;image-caption&quot;&gt;Das abgepauste Streckenlayout in Inkscape.&lt;/dd&gt;
&lt;/dl&gt;

&lt;p&gt;Das muss doch irgendwie einfacher gehen, schließlich habe ich doch einen Computer der für mich die Arbeit ganze erledigt und um es vereinfacht auszudrücken bin ich ja schon im Besitz der Koordinaten. Ein &lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Rastergrafik&quot;&gt;Rastergrafik&lt;/a&gt; ist ja nichts anderes als &quot;Pixel (X10|Y15) Farbe #deadbeef0&quot;. Man könnte also die Punkte in &lt;a class=&quot;external-link&quot; href=&quot;http://www.gimp.org/&quot;&gt;The Gimp&lt;/a&gt; anfahren und sich notieren. Ein Problem hierbei wäre allerdings das Finden der richtigen Punkte. Schließlich besteht eine &lt;a class=&quot;external-link&quot; href=&quot;http://www.nolimitscoaster.com/deutsch/&quot;&gt;No Limits&lt;/a&gt; Achterbahn aus &lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/B%C3%A9zierkurve&quot;&gt;Bézierkurven&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Das freie Vektorgrafik Programm &lt;a class=&quot;external-link&quot; href=&quot;http://www.inkscape.org/&quot;&gt;Inkscape&lt;/a&gt; besitzt die Möglichkeit &lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/B%C3%A9zierkurve&quot;&gt;Bézierkurven&lt;/a&gt; zu erstellen und &lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Rastergrafik&quot;&gt;Rastergrafiken&lt;/a&gt; zu darzustellen. Ich habe mir das Programm schnell heruntergeladen, installiert und habe die &lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Rastergrafik&quot;&gt;Rastergrafik&lt;/a&gt; des Streckenlayouts importiert. Mit dem Bézierkurven-Tool habe ich die Knotenpunkte gesetzt und den Streckenverlauf abgepaust.&lt;/p&gt;
&lt;p&gt;Das erzielte Ergebnis war ziemlich gut. Die Punkte, die ich gesetzt habe beschreiben folgende Regeln:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;der Eingang einer Kurve&lt;br /&gt;&lt;/li&gt;&lt;li&gt;der Scheitelpunkt der Kurve&lt;/li&gt;&lt;li&gt;der Ausgang einer Kurve&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;Jetzt hatte ich die Koordinaten der wichtigsten Punkte des Streckenverlaufes. Sie waren nur noch im &quot;Inkscape-Format&quot;&lt;/p&gt;
&lt;h3&gt;Die Umrechnung&lt;/h3&gt;
&lt;dl class=&quot;image-right captioned&quot;&gt;
&lt;dt&gt;&lt;a rel=&quot;lightbox&quot; href=&quot;http://www.herward-hoyer.de/blogs/bilder/screenshots-nachbau-blue-fire-in-nolimits/screenshot_Excel.png&quot;&gt;&lt;img src=&quot;http://www.herward-hoyer.de/blogs/bilder/screenshots-nachbau-blue-fire-in-nolimits/screenshot_Excel.png/image_mini&quot; alt=&quot;screenshot_Excel.png&quot; title=&quot;screenshot_Excel.png&quot; height=&quot;121&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/dt&gt;
 &lt;dd class=&quot;image-caption&quot;&gt;Die Umrechnung der Koordinaten in Excel.&lt;/dd&gt;
&lt;/dl&gt;

&lt;p&gt;Die gewonnen Koordinaten der einzelnen Knotenpunkte habe ich durch Copy&amp;amp;Paste in ein Tabellenkalkulationsprogramm übetragen. Wer kein Excel besitzt kann auch das freie Calc von &lt;a class=&quot;external-link&quot; href=&quot;http://de.openoffice.org/&quot;&gt;Open-Office&lt;/a&gt; nutzen.&lt;/p&gt;
&lt;p&gt;Zunächst habe ich meinen Nullpunkt festgesetzt. Ich habe hierzu das Ende der Station verwendet.&lt;/p&gt;
&lt;p&gt;Die Umrechnung der Inkscape-Koordinaten in Metern ist glaube ich mein kleiner Knackpunkt. Ich habe hierzu ein bekanntes Maß genommen und es anhand des Streckenlayouts umgerechnet.&lt;/p&gt;
&lt;p class=&quot;callout&quot;&gt;Länge des Launches 80m.&lt;/p&gt;
&lt;p&gt;Wirklich glücklich bin ich hierbei nicht.&lt;/p&gt;
&lt;h3&gt;Der Koordinatenübertrag in No Limits&lt;/h3&gt;
&lt;dl class=&quot;image-left captioned&quot;&gt;
&lt;dt&gt;&lt;a rel=&quot;lightbox&quot; href=&quot;http://www.herward-hoyer.de/blogs/bilder/screenshots-nachbau-blue-fire-in-nolimits/screenshot_NoLimits_01.png&quot;&gt;&lt;img src=&quot;http://www.herward-hoyer.de/blogs/bilder/screenshots-nachbau-blue-fire-in-nolimits/screenshot_NoLimits_01.png/image_mini&quot; alt=&quot;screenshot_NoLimits_01.png&quot; title=&quot;screenshot_NoLimits_01.png&quot; height=&quot;121&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/dt&gt;
 &lt;dd class=&quot;image-caption&quot;&gt;Die übetragenen Koordinaten aus der Tabellenkalkulation.&lt;/dd&gt;
&lt;/dl&gt;

&lt;p&gt;Die gewonnen Koordinaten mussten jetzt nur noch in &lt;a class=&quot;external-link&quot; href=&quot;http://www.nolimitscoaster.com/deutsch/&quot;&gt;No Limits &lt;/a&gt;per Hand übetragen werden. An dieser Stelle danke ich meiner Freundin, die so nett gewesen ist, mir die Koordinaten nach und nach vorzulesen, während ich die Kontenpunkte erstellte.&lt;/p&gt;
&lt;p&gt;Zugegeben. Der erste Eindruck ist nicht wirklich der Beste und sieht auch wirklich total verschoben aus.&lt;/p&gt;
&lt;dl class=&quot;image-right captioned&quot;&gt;
&lt;dt&gt;&lt;a rel=&quot;lightbox&quot; href=&quot;http://www.herward-hoyer.de/blogs/bilder/screenshots-nachbau-blue-fire-in-nolimits/screenshot_NoLimits_02.png&quot;&gt;&lt;img src=&quot;http://www.herward-hoyer.de/blogs/bilder/screenshots-nachbau-blue-fire-in-nolimits/screenshot_NoLimits_02.png/image_mini&quot; alt=&quot;screenshot_NoLimits_02.png&quot; title=&quot;screenshot_NoLimits_02.png&quot; height=&quot;121&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/dt&gt;
 &lt;dd class=&quot;image-caption&quot;&gt;Das Streckenlayout nach einigen Anpassungen.&lt;/dd&gt;
&lt;/dl&gt;

&lt;p&gt;Das Gewünschter Ergebnis stellte sich erst nach dem Anpassen der Kontrollpunkte der einzelnen Knoten ein.&lt;/p&gt;
&lt;h3&gt;Ausblick&lt;/h3&gt;
&lt;p&gt;Fertig ist die Achterbahn noch lange nicht und ich glaube der größte Teil der Arbeit liegt noch vor mir und eine Menge Eckdaten sind mir noch unbekannt.&lt;/p&gt;
&lt;h3&gt;Offene Fragen&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;Wie hoch ist die Achterbahn an den einzelnen (unbekannten) Punkten&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;Welche Neigung haben die Kurven&lt;/li&gt;&lt;li&gt;Wie wird die Achterbahn von der Blockaufteilung funktionieren&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Meine bisherige Arbeit zum downloaden&lt;/h3&gt;
&lt;p&gt;Ich stelle euch hier meine bisherige Arbeit zum frei zum Download und Weiterbearbeitung zu Verfügung. Seit nur so fair und verkauft meine hart erarbeiteten Ergebnisse nicht als eure Arbeit, sondern linkt auf diese Artikel meiner Homepage und lasst mich auch an euren Ergebnissen teilhaben. Ich diskutiere gerne über die Herangehensweise bei so einem Projekt und freue mich über jeden konstruktiven Vorschlag.&lt;/p&gt;
&lt;p&gt;Hinterlasst mir doch hierzu einfach eine Nachricht über mein &lt;a class=&quot;external-link&quot; href=&quot;http://www.herward-hoyer.de/contact-info&quot;&gt;Kontaktformular&lt;/a&gt;, oder schreibt mir einen Kommentar ([Add Comment] am unteren Ende der Seite)&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Der Streckenverlauf als &lt;a title=&quot;Blaupause Blue-Fire.svg&quot; class=&quot;internal-link&quot; href=&quot;http://www.herward-hoyer.de/blogs/files/downloads-nachbau-blue-fire-in-nolimits/Blaupause%20Blue-Fire.svg&quot;&gt;SVG-Vektorgrafik&lt;/a&gt; in Inkscape&lt;/li&gt;&lt;li&gt;Das &lt;a title=&quot;Koordinaten Blue-Fire.xls&quot; class=&quot;internal-link&quot; href=&quot;http://www.herward-hoyer.de/blogs/files/downloads-nachbau-blue-fire-in-nolimits/Koordinaten%20Blue-Fire.xls&quot;&gt;Excel-Sheet&lt;/a&gt; zum umrechnen der Koordinaten&lt;/li&gt;&lt;li&gt;Die erste Version des entstandenen Streckenverlaufs in No Limits als &lt;a title=&quot;Nolimits Coaster Blue-Fire Version 1&quot; class=&quot;internal-link&quot; href=&quot;http://www.herward-hoyer.de/blogs/files/downloads-nachbau-blue-fire-in-nolimits/BlueFire-HH-001.nltrack&quot;&gt;No Limits Track&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Element Tower Defense</title>
		<link href="http://www.herward-hoyer.de/blogs/element-tower-defense"/>
		<id>http://www.herward-hoyer.de/blogs/element-tower-defense</id>
		<updated>2008-11-15T14:14:28+00:00</updated>
		<content type="html">&lt;dl class=&quot;image-left captioned&quot;&gt;
&lt;dt&gt;&lt;a rel=&quot;lightbox&quot; href=&quot;http://www.herward-hoyer.de/blogs/bilder/warcraft-screenshots-iii-element-tower-defense/war3%202008-11-11%2023-24-45-93.PNG&quot;&gt;&lt;img src=&quot;http://www.herward-hoyer.de/blogs/bilder/warcraft-screenshots-iii-element-tower-defense/war3%202008-11-11%2023-24-45-93.PNG/image_thumb&quot; alt=&quot;Warcraft III Element Tower Defense Screenshot 5&quot; title=&quot;Warcraft III Element Tower Defense Screenshot 5&quot; height=&quot;96&quot; width=&quot;128&quot; /&gt;&lt;/a&gt;&lt;/dt&gt;
 &lt;dd class=&quot;image-caption&quot;&gt;Screenshot aus der Warcraft III Funmap Element Tower Defense.&lt;/dd&gt;
&lt;/dl&gt;

&lt;p&gt;Element Tower Defense ist eine Custom-Map für 8 Spieler und funktioniert im großen und ganzen wie die restlichen Tower Defense Spiele.&lt;/p&gt;
&lt;p&gt;Anfangs beginnt man das Match mit dem Bauen von Kanonen- und Pfeiltürmen. Nach jemdem 5. Level bekommt ihr ein Holz, mit dem ihr im Shop ein Element beschwören könnt.&lt;/p&gt;
&lt;p&gt;Ihr könnt zwischen Feuer, Erde, Wasser, Licht und Dunkelheit wählen. Das beschwörte Element läuft dann wie die restlichen Creeps durch das Labyrinth und muß von euren Türmen zur Strecke gebracht werden. Habt ihr es erledigt, seit ihr dazu berechtigt die Element-Türme des jeweils erlegten Elementes zu bauen.&lt;/p&gt;
&lt;dl class=&quot;image-right captioned&quot;&gt;
&lt;dt&gt;&lt;a rel=&quot;lightbox&quot; href=&quot;http://www.herward-hoyer.de/blogs/bilder/warcraft-screenshots-iii-element-tower-defense/war3%202008-11-11%2023-26-42-51.PNG&quot;&gt;&lt;img src=&quot;http://www.herward-hoyer.de/blogs/bilder/warcraft-screenshots-iii-element-tower-defense/war3%202008-11-11%2023-26-42-51.PNG/image_thumb&quot; alt=&quot;Warcraft III Element Tower Defense Screenshot 10&quot; title=&quot;Warcraft III Element Tower Defense Screenshot 10&quot; height=&quot;96&quot; width=&quot;128&quot; /&gt;&lt;/a&gt;&lt;/dt&gt;
 &lt;dd class=&quot;image-caption&quot;&gt;Screenshot aus der Warcraft III Funmap Element Tower Defense.&lt;/dd&gt;
&lt;/dl&gt;

&lt;p&gt;Der Reiz des Spieles liegt in der Kombination der Elementen. So kann man, wenn man mit Wasser und Licht&amp;nbsp; einen Eis-Turm bauen.&lt;/p&gt;
&lt;p&gt;Wer nicht im Besitz von Warcraft III ist, der kann sich an der Flashversion von Element Tower Defense probieren. Hier gibt es zwar nicht so viele Elemente, jedoch bietet diese Variante genügent Spielspass um sich die Zeit zu vertreiben.&lt;/p&gt;
&lt;h3&gt;Element Tower Defense Flash Game&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://ftp.blizzard.com/pub/war3/maps/spotlight/Element%20TD%202.5.zip&quot;&gt;Element Tower Defense Warcraft III Map herunterladen&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.novelconcepts.co.uk/FlashElementTD/play.asp&quot;&gt;Element Tower Defense als Flashgame spielen&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Neues Level bei Netshift</title>
		<link href="http://www.herward-hoyer.de/blogs/neues-level-bei-netshift"/>
		<id>http://www.herward-hoyer.de/blogs/neues-level-bei-netshift</id>
		<updated>2008-11-15T12:55:49+00:00</updated>
		<content type="html">&lt;p&gt;Dieses Mal habe ich versucht ein nicht ganz so schwieriges Level zu machen, was mir aber nicht unbedingt gelungen ist. Ich denk einfach manchmal zu kompliziert. Was ich besonders schön finde, ist wenn ich mir das Replay eines anderen Spielers ansehe und feststelle, dass er eine effizientere Methode gefunden hat mein Level zu lösen, als ich mir das gedacht hatte. Ich sags ja, ich denk einfach manchmal zu kompliziert!&lt;/p&gt;
&lt;p&gt;



&lt;/p&gt;
&lt;h3&gt;Spielsteuerung&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt; mit den Pfeiltasten oder mit WASD kannst du dich bewegen&lt;/li&gt;&lt;li&gt;mit Enter kannst du Gegenstände aufnehmen und ablegen&lt;/li&gt;&lt;li&gt;mit Space kannst du Raketen abschießen, die du vorher aufgenommen hast&lt;/li&gt;&lt;li&gt;mit R kannst du neu starten&lt;/li&gt;&lt;li&gt;mit M schaltest du den Ton ein und aus&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Wenn du mehr willst...&lt;/p&gt;
&lt;a class=&quot;external-link&quot; href=&quot;http://www.foon.co.uk/farcade/netshift&quot;&gt;http://www.foon.co.uk/farcade/netshift&lt;/a&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Netshift</title>
		<link href="http://www.herward-hoyer.de/blogs/netshift"/>
		<id>http://www.herward-hoyer.de/blogs/netshift</id>
		<updated>2008-11-15T12:54:54+00:00</updated>
		<content type="html">&lt;p&gt;Manche Arbeitgeber haben ihren Netzadministratoren aufgetregen alle Seiten mit fragwürdigem Inhalt zu blockieren. Darunter sind nahezu alle Flashgames. Nur eine wahnsinnig tolle Ausnahme ist mir unter die Augen gekommen: http://www.foon.co.uk . Diese Seite enthält keine der üblichen Schlüsselwörter, was für pausenfüllende Entspannung vor, während und nach der Arbeit sorgt...&lt;/p&gt;
&lt;p&gt;

&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Spielsteuerung&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt; mit den Pfeiltasten oder mit WASD kannst du dich bewegen&lt;/li&gt;&lt;li&gt;mit Enter kannst du Gegenstände aufnehmen und ablegen&lt;/li&gt;&lt;li&gt;mit Space kannst du Raketen abschießen, die du vorher aufgenommen hast&lt;/li&gt;&lt;li&gt;mit R kannst du neu starten&lt;/li&gt;&lt;li&gt;mit M schaltest du den Ton ein und aus&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Wenn du mehr willst...&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.foon.co.uk/farcade/netshift&quot;&gt;http://www.foon.co.uk/farcade/netshift&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Neues Netshift- Level nur für Herward</title>
		<link href="http://www.herward-hoyer.de/blogs/neues-netshift-level-nur-fur-herward"/>
		<id>http://www.herward-hoyer.de/blogs/neues-netshift-level-nur-fur-herward</id>
		<updated>2008-11-15T12:54:06+00:00</updated>
		<content type="html">&lt;p&gt;Jetzt hat er ein eigenes Level, jetzt muss ich es ihn nur noch spielen lassen.&lt;/p&gt;
&lt;p&gt;



&lt;/p&gt;
&lt;h3&gt;Spielsteuerung&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt; mit den Pfeiltasten oder mit WASD kannst du dich bewegen&lt;/li&gt;&lt;li&gt;mit Enter kannst du Gegenstände aufnehmen und ablegen&lt;/li&gt;&lt;li&gt;mit Space kannst du Raketen abschießen, die du vorher aufgenommen hast&lt;/li&gt;&lt;li&gt;mit R kannst du neu starten&lt;/li&gt;&lt;li&gt;mit M schaltest du den Ton ein und aus&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Wenn du mehr willst...&lt;/p&gt;
&lt;a class=&quot;external-link&quot; href=&quot;http://www.foon.co.uk/farcade/netshift&quot;&gt;http://www.foon.co.uk/farcade/netshift&lt;/a&gt;
&lt;div class=&quot;relatedItems&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;visualClear&quot;&gt;&lt;/div&gt;
&lt;h5 class=&quot;hiddenStructure&quot;&gt;Artikelaktionen&lt;/h5&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Warcraft III - Pflaumi vs. MIFRU</title>
		<link href="http://www.herward-hoyer.de/blogs/warcraft-iii-pflaumi-vs.-mifru"/>
		<id>http://www.herward-hoyer.de/blogs/warcraft-iii-pflaumi-vs.-mifru</id>
		<updated>2008-11-06T00:12:01+00:00</updated>
		<content type="html">&lt;dl class=&quot;image-left captioned&quot;&gt;
&lt;dt&gt;&lt;a rel=&quot;lightbox&quot; href=&quot;http://www.herward-hoyer.de/blogs/bilder/warcraft-iii-screenshots-pflaumi-vs.-mirfu/War3%202008-11-06%2000-28-42-95.PNG&quot;&gt;&lt;img src=&quot;http://www.herward-hoyer.de/blogs/bilder/warcraft-iii-screenshots-pflaumi-vs.-mirfu/War3%202008-11-06%2000-28-42-95.PNG/image_mini&quot; alt=&quot;Warcraft III - Pflaumi vs. MIFRU Screenshot 8&quot; title=&quot;Warcraft III - Pflaumi vs. MIFRU Screenshot 8&quot; height=&quot;150&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/dt&gt;
 &lt;dd class=&quot;image-caption&quot;&gt;Screenshot aus dem Warcraft III Replay Pflaumi vs. MIFRU&lt;/dd&gt;
&lt;/dl&gt;

&lt;p&gt;Meine gute alte Anfänger Solo Strategie. Einen frühen Friedhof als Basis für die Aas-Käfer des Gruftlordes gepaart mit Gruftbestien. Als zweiter Hero der Lich-König und im späten Spiel jede Menge Frostwyrms.&lt;/p&gt;
&lt;p&gt;Während des Spieles treffe ich 2-3 Mal auf &lt;a class=&quot;external-link&quot; href=&quot;http://www.battle.net/war3/ladder/w3xp-player-profile.aspx?Gateway=Northrend&amp;amp;PlayerName=MIFRU&quot;&gt;MIFRU&lt;/a&gt;, der mir mit seinem Bergkönig mir meine Gruftbestien aus dem Spiel nimmt.&lt;/p&gt;
&lt;p&gt;Keine Ahnung, ob &lt;a class=&quot;external-link&quot; href=&quot;http://www.battle.net/war3/ladder/w3xp-player-profile.aspx?Gateway=Northrend&amp;amp;PlayerName=MIFRU&quot;&gt;MIRFU&lt;/a&gt; richtig spielt, denn er verliert im Kampf zwischendurch mal seinen Erzmagier und wird zum Schluß von meinen Frostwyrms überrannt.&lt;/p&gt;
&lt;p&gt;Wer mich mal in Action sehen will, der sei eingeladen sich das Replay herunterzuladen und anzuschauen.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Das Warcraft III Replay zum &lt;a title=&quot;Pflaumi vs. MIRFU&quot; class=&quot;internal-link&quot; href=&quot;http://www.herward-hoyer.de/blogs/files/warcraft-iii-replays/Pflaumi%20vs%20MIRFU.w3g&quot;&gt;download&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Warcraft III - DTP.bg vs. Tier1.Word</title>
		<link href="http://www.herward-hoyer.de/blogs/warcraft-III-dtp.bg-vs-tier1.word"/>
		<id>http://www.herward-hoyer.de/blogs/warcraft-III-dtp.bg-vs-tier1.word</id>
		<updated>2008-11-05T23:59:20+00:00</updated>
		<content type="html">&lt;dl class=&quot;image-left captioned&quot;&gt;
&lt;dt&gt;&lt;a rel=&quot;lightbox&quot; href=&quot;http://www.herward-hoyer.de/blogs/bilder/warcraft-iii-screenshots-dtp.bg-vs-tier1.word/war3%202008-10-25%2002-44-26-32.PNG&quot;&gt;&lt;img src=&quot;http://www.herward-hoyer.de/blogs/bilder/warcraft-iii-screenshots-dtp.bg-vs-tier1.word/war3%202008-10-25%2002-44-26-32.PNG/image_mini&quot; alt=&quot;Warcraft III - DTP.bg vs Tier1.Word Screenshot 6&quot; title=&quot;Warcraft III - DTP.bg vs Tier1.Word Screenshot 6&quot; height=&quot;150&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/dt&gt;
 &lt;dd class=&quot;image-caption&quot;&gt;Screenshot aus dem Warcraft III Replay DTP.bg vs Tier1.Word&lt;/dd&gt;
&lt;/dl&gt;

&lt;p&gt;Mirror-Match - Human gegen Human. Man sieht immer das gleiche. Erzmagier, Wasserelemente und mit der finken Milliz schnell mal ein paar Creeps in den Boden stampfen. Dieses Spiel ist jedoch schon wegen seiner Länge durchaus attraktiv. Ok - beide besorgen sich im Spielverlauf einen Wald-Troll-Schattenprieser, jedoch verfolgen beide Spieler ganz unterschiedliche Stategien.&lt;/p&gt;
&lt;p&gt;Was sich schon im ersten Aufeinandertreffen abzeichnet ist &lt;a class=&quot;external-link&quot; href=&quot;http://www.battle.net/war3/ladder/w3xp-player-profile.aspx?Gateway=Northrend&amp;amp;PlayerName=DTP.bg&quot;&gt;DTP.bg's&lt;/a&gt; Stategie. Er setzt alles daran &lt;a class=&quot;external-link&quot; href=&quot;http://www.battle.net/war3/ladder/w3xp-player-profile.aspx?Gateway=Northrend&amp;amp;PlayerName=Tier1.Word&quot;&gt;Tier1.Word&lt;/a&gt; Wirtschaft zu stören und dabei wenig Einheiten zu verlieren indem er sich mit Townportals aus dem Schlamassel rettet. Gleichzeitig aber versucht er gekonnt seine eigene Wirtschaft mit einer zweiten Goldmine stark auszubauen und im späten Spiel zu punkten.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.battle.net/war3/ladder/w3xp-player-profile.aspx?Gateway=Northrend&amp;amp;PlayerName=Tier1.Word&quot;&gt;Tier1.Word&lt;/a&gt; setzt auf frühe starke Einheiten, kann mit seinen Zauberbrechern &lt;a class=&quot;external-link&quot; href=&quot;http://www.battle.net/war3/ladder/w3xp-player-profile.aspx?Gateway=Northrend&amp;amp;PlayerName=DTP.bg&quot;&gt;DTP.bg&lt;/a&gt;'s Arkanes Sanktum dem Erdboden gleichmachen und ihn an der massenhaften Produktion von Zauberbrechern hindern.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.battle.net/war3/ladder/w3xp-player-profile.aspx?Gateway=Northrend&amp;amp;PlayerName=DTP.bg&quot;&gt;DTP.bg&lt;/a&gt;'s Armee ist zu diesem Zeitpunkt des Spieles ziemlich schwach. Zwar besitzt er jetzt eine zweite Goldmine, jedoch noch keine geeigneten Produktionsstätte um standfeste Einheiten zu produzieren. Mit seiner zurechtgelegten Strategie liegt er aber genau richtig und schafft es sogar sich in der Basis des Feindes zu verschanzen und der feinlichen Armee aus dem Weg zu gehen, indem er mit einem Wasserelement den Eingang verstopft und sie so aus der Stadt hält.&lt;/p&gt;
&lt;p class=&quot;callout&quot;&gt;Das Spiel ist im Großen und Ganzen sehr interessant und öffnet sich gegen Ende der Einheitenvielfalt. Wer Interesse bekommen hat, der läd sich das Replay herunter und erfreut sich über 42 Minuten guter Unterhaltung.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Das Warcraft III Replay zum &lt;a title=&quot;DTP.bg vs Tier1.Word&quot; class=&quot;internal-link&quot; href=&quot;http://www.herward-hoyer.de/blogs/files/warcraft-iii-replays/DTP.bg%20vs%20Tier1.Word.w3g&quot;&gt;download&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Rubik's Puzzel</title>
		<link href="http://www.herward-hoyer.de/blogs/rubiks-puzzel"/>
		<id>http://www.herward-hoyer.de/blogs/rubiks-puzzel</id>
		<updated>2008-11-05T19:39:23+00:00</updated>
		<content type="html">&lt;h3&gt;Wie man einen Rubik's-Würfel löst - Teil 1&lt;/h3&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;h3&gt;Wie man einen Rubik's-Würfel löst - Teil 2&lt;/h3&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h3&gt;Ein Rubik's Würfel Roboter aus Lego&lt;/h3&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Der &lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Zauberw%C3%BCrfel&quot;&gt;Rubik's Würfel&lt;/a&gt; bei Wikipedia&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Wie man Rubik's Zauberei löst&lt;/h3&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h3&gt;Wie man Rubik's Meister Zauberei löst&lt;/h3&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Rubik%E2%80%99s_Magic&quot;&gt;Rubik's Zauberei&lt;/a&gt; bei Wikipedia&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Wie man die Rubik's Uhr löst&lt;/h3&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Das &lt;a class=&quot;external-link&quot; href=&quot;http://www.rubiks.com/Games/Rubiks%20Clock/Rubiks%20Clock%20Game.aspx&quot;&gt;Flashgame Rubik's Uhr&lt;/a&gt; auf der Rubik's Seite&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Die &lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Rubiks_Uhr&quot;&gt;Rubik's Uhr&lt;/a&gt; bei Wikipedia&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Rubik's Snake&lt;/h3&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Rubik%E2%80%99s_Snake&quot;&gt;Rubiks Snake&lt;/a&gt; bei Wikipedia&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Siehe auch:&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://de.wikipedia.org/wiki/Ern%C5%91_Rubik&quot;&gt;Ernő Rubik&lt;/a&gt; bei Wikipedia&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.rubiks.com/&quot;&gt;offizielle Internetseite&lt;/a&gt; von Rubik's&lt;/li&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://mooretechnologies.com/~kevin/puzzles.html&quot;&gt;Kevin Moore's Sammlung von Rubik's Puzzel&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Color Management</title>
		<link href="http://www.harald-hoyer.de/personal/blog/color_management"/>
		<id>http://www.harald-hoyer.de/personal/blog/color_management</id>
		<updated>2008-10-31T10:50:00+00:00</updated>
		<content type="html">&lt;p&gt;So you took some nice photos, edited them with your favourite Linux photo editor and published them on the web. But then you show your pics to a friend who is running Windows and IE 5 and suddenly your photos look very different. What happened?&lt;/p&gt;
&lt;h3&gt;Monitor Colors&lt;/h3&gt;
&lt;p&gt;Your monitor colors could be different than the one of your friend. This can be corrected &lt;a href=&quot;http://jcornuz.wordpress.com/2007/11/18/use-colorvision-spyder-to-produce-an-icc-monitor-profile-under-argyllcms-linux/&quot;&gt;calibrating&lt;/a&gt; the monitors with a colorimeter and e.g. Argyll.&lt;/p&gt;
&lt;h3&gt;Color Profiles&lt;/h3&gt;
&lt;p&gt;Most photos have a color profile embedded. This color profile defines, where the rgb values&lt;a href=&quot;http://en.wikipedia.org/wiki/Color_management&quot;&gt; are in the colorspace&lt;/a&gt;. Some software is aware of it. Some is not.&lt;/p&gt;
&lt;p&gt;Check out this &lt;a href=&quot;http://foto.beitinger.de/browser_farbmanagement/index.html&quot;&gt;color profile browser test&lt;/a&gt;&amp;nbsp; (german only). Especially this picture: &lt;br /&gt;&lt;img src=&quot;http://foto.beitinger.de/browser_farbmanagement/farbmanagement_test.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;or this one:&lt;/p&gt;
&lt;p&gt; &lt;img src=&quot;https://bugzilla.mozilla.org/attachment.cgi?id=245837&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
Color management in Firefox 3 has to be &lt;a href=&quot;http://kb.mozillazine.org/Gfx.color_management.enabled&quot;&gt;turned on&lt;/a&gt; and if you test various GNOME/KDE picture viewer and editors, you will notice that only some of them cope with color management.</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">NICHTLUSTIG 4</title>
		<link href="http://www.herward-hoyer.de/blogs/nichtlustig-4"/>
		<id>http://www.herward-hoyer.de/blogs/nichtlustig-4</id>
		<updated>2008-10-31T00:44:45+00:00</updated>
		<content type="html">&lt;p&gt;Wer NICHTLUSTIG noch nicht kennt, ist eigentlich selber schuld. Die unglaublich süßen gemalten Lemminge, Yetis und Dinosaurier gepaart mit dem lebhaften und phantasievolle Humor  von Joscha Sauer fesseln und treiben einem vor Lachen Tränen in die Augen.&lt;/p&gt;
				
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.nichtlustig.de&quot;&gt;http://www.nichtlustig.de&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Heron</title>
		<link href="http://hartwin-hoyer.de/2008/10/30/heron/"/>
		<id>http://hartwin-hoyer.de/2008/10/30/heron/</id>
		<updated>2008-10-30T10:30:51+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/2985692273/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3138/2985692273_3c71e6e1b0_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/2985692273/&quot;&gt;Heron&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon_de&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Found a heron on the lake this morning.&lt;br /&gt;
Unfortunately I didn&amp;#8217;t had my tele with me.&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry>
		<title type="html">Wie man ein gutes Papierflugzeug faltet</title>
		<link href="http://www.herward-hoyer.de/blogs/wie-man-ein-gutes-papierflugzeug-faltet"/>
		<id>http://www.herward-hoyer.de/blogs/wie-man-ein-gutes-papierflugzeug-faltet</id>
		<updated>2008-10-23T21:25:46+00:00</updated>
		<content type="html">&lt;h3&gt;Eine nette Faltanleitung eines Klassikers:&lt;br /&gt;&lt;/h3&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Hier die Faltanleitung des Fliegers, der mir optisch am meisten zugesagt hat:&lt;/h3&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Der Flugzeugbauer hat eine eigene Seite bei YouTube. Auf dieser Seite stellt er eine ganze Menge Faltanleitungen zur Verfügung.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.youtube.com/user/kawasaro&quot;&gt;http://www.youtube.com/user/kawasaro&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Weitere Faltanleitungen habe ich hier gefunden:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external-link&quot; href=&quot;http://www.paperairplanes.co.uk/planes.php&quot;&gt;http://www.paperairplanes.co.uk/planes.php&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Thrush</title>
		<link href="http://hartwin-hoyer.de/2008/10/14/thrush/"/>
		<id>http://hartwin-hoyer.de/2008/10/14/thrush/</id>
		<updated>2008-10-14T08:17:04+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/2801829717/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3109/2801829717_800b518ab8_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/2801829717/&quot;&gt;Thrush&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon_de&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;
&lt;p&gt;fieldfare Turdus pilaris&lt;/p&gt;
&lt;p&gt;This little guy was sitting on the top of a tree.&lt;br /&gt;
I had to climb up a bench to get to a better angle.&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Pflanze</title>
		<link href="http://hartwin-hoyer.de/2008/10/13/pflanze/"/>
		<id>http://hartwin-hoyer.de/2008/10/13/pflanze/</id>
		<updated>2008-10-13T14:34:28+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/2938414674/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3152/2938414674_c547f027b4_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/2938414674/&quot;&gt;Pflanze&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon_de&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Found this one in the park in front of my door.&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Blackbird</title>
		<link href="http://hartwin-hoyer.de/2008/10/13/blackbird/"/>
		<id>http://hartwin-hoyer.de/2008/10/13/blackbird/</id>
		<updated>2008-10-13T14:21:11+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/2937757336/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3043/2937757336_c387cc8afb_m.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/photon_de/2937757336/&quot;&gt;Blackbird&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ursprünglich hochgeladen von &lt;a href=&quot;http://www.flickr.com/people/photon_de/&quot;&gt;photon_de&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry>
		<title type="html">Umzug</title>
		<link href="http://www.herward-hoyer.de/blogs/umzug"/>
		<id>http://www.herward-hoyer.de/blogs/umzug</id>
		<updated>2008-10-12T01:12:57+00:00</updated>
		<content type="html">&lt;h3&gt;Level 1 - moving three of three:&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;Krasser Keller&lt;/li&gt;&lt;li&gt;Viel Altlast&lt;/li&gt;&lt;li&gt;Schöne neue Wohnung&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Level 2 - moving myself&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;Yeah&lt;/li&gt;&lt;li&gt;Blöde Schrankwand&lt;/li&gt;&lt;li&gt;Putzen&lt;/li&gt;&lt;li&gt;Lüften&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Level 3 - moving one of three&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;Flugzeug fliegen&lt;/li&gt;&lt;li&gt;Fahren&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Schwere Waschmaschine mit Missverständnis&lt;/li&gt;&lt;li&gt;Schöne neue Wohnung&lt;/li&gt;&lt;li&gt;Fahren&lt;/li&gt;&lt;li&gt;Flugzeug fliegen&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Level 5 - moving data&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;Funktioniert&lt;/li&gt;&lt;li&gt;herward-hoyer.de&lt;/li&gt;&lt;li&gt;Tolles Webfrontend&lt;/li&gt;&lt;li&gt;sudo&lt;/li&gt;&lt;li&gt;Backup the-other-solution /var /etc/ /home mysql ldap sieve&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Einen Umzug habe ich aber noch vor mir im Dezember. Das wird bestimmt der Schönste! Krümelchen ich liebe dich!&lt;/p&gt;</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Wat kann denn isch dafür, dat de nix dafür kannst.</title>
		<link href="http://www.herward-hoyer.de/blogs/wat-kann-denn-isch-dafur-dat-de-nix-dafur-kannst"/>
		<id>http://www.herward-hoyer.de/blogs/wat-kann-denn-isch-dafur-dat-de-nix-dafur-kannst</id>
		<updated>2008-09-19T20:17:43+00:00</updated>
		<content type="html">Kann der feine Herr Raab mal hieraus bitte ein richtiges Lied machen?</content>
		<author>
			<name>Herward Hoyer</name>
			<uri>http://www.herward-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Mein Blog</title>
			<subtitle type="html">Willkommen auf dem persönlichen Weblog von Herward Hoyer</subtitle>
			<link rel="self" href="http://www.herward-hoyer.de/mein-blog/RSS"/>
			<id>http://www.herward-hoyer.de/mein-blog/RSS</id>
			<updated>2011-11-10T18:30:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Python-Slip</title>
		<link href="http://www.harald-hoyer.de/personal/blog/Python-Slip"/>
		<id>http://www.harald-hoyer.de/personal/blog/Python-Slip</id>
		<updated>2008-09-07T09:00:00+00:00</updated>
		<content type="html">&lt;p&gt;On FUDCon Brno 2008, we gave a small overview on how to use PolicyKit to split an application in a two parts with different privileges.&lt;/p&gt;
&lt;p&gt;Now, here comes the practical part. Nils Philippsen wrote a small python module, which greatly simplifies the use of PolicyKit for python applications. Downloads, git repo and more information, along with simple example code can be found on &lt;a href=&quot;http://fedorahosted.org/python-slip/&quot;&gt;http://fedorahosted.org/python-slip/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In its current form it uses D-BUS communication to check policykit action_ids, which will change, as soon as the python bindings for PolicyKit will be released (hint, hint!).&lt;/p&gt;
&lt;p&gt;If you have questions or patches, just send a mail to &lt;a href=&quot;mailto:harald@redhat.com&quot;&gt;me&lt;/a&gt; or &lt;a href=&quot;mailto:nils@redhat.com&quot;&gt;Nils&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Wasp vs Spider</title>
		<link href="http://www.harald-hoyer.de/personal/blog/wasp-vs-spider"/>
		<id>http://www.harald-hoyer.de/personal/blog/wasp-vs-spider</id>
		<updated>2008-08-22T12:16:47+00:00</updated>
		<content type="html">&lt;p&gt;Minutes after I took a photo of the &lt;a href=&quot;http://www.flickr.com/photos/hhoyer/2786630406/in/photostream/&quot;&gt;spider&lt;/a&gt; a wasp came by and snapped it.&lt;br /&gt;
&lt;br /&gt;
Both fell to the floor. The wasp stung
the spider and the spider bit the wasp.
They were lying in the floor for
minutes.The spider is dead, and the wasp
recovered after 5 minutes and flew away
without eating the spider.&lt;/p&gt;
&lt;a href=&quot;http://www.flickr.com/photos/hhoyer/2786630406/&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3015/2786630406_50860e92ca.jpg&quot; alt=&quot;Spider&quot; height=&quot;375&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;a href=&quot;http://www.flickr.com/photos/hhoyer/2786000021/&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3047/2786000021_5193deb758.jpg&quot; alt=&quot;Wasp Spider Fight&quot; height=&quot;375&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;a href=&quot;http://www.flickr.com/photos/hhoyer/2786750772/&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3049/2786750772_82d48f0f39.jpg&quot; alt=&quot;Spider killed by a Wasp&quot; height=&quot;375&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;a href=&quot;http://www.flickr.com/photos/hhoyer/2785853863/&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3238/2785853863_1ce6ef9b6c.jpg&quot; alt=&quot;Wasp in Pain&quot; height=&quot;375&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;a href=&quot;http://www.flickr.com/photos/hhoyer/2785857115/&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3220/2785857115_1d9e3bf2d4.jpg&quot; alt=&quot;Wasp Spider Fight&quot; height=&quot;333&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;a href=&quot;http://www.flickr.com/photos/hhoyer/2786736882/&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3109/2786736882_f3c96d6c92.jpg&quot; alt=&quot;Spider killed by a Wasp&quot; height=&quot;375&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;a class=&quot;external-link&quot; href=&quot;http://www.flickr.com/photos/hhoyer/sets/72157606886239931/detail/&quot;&gt;More Photos&lt;/a&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Personal</title>
		<link href="http://www.harald-hoyer.de/personal/personal"/>
		<id>http://www.harald-hoyer.de/personal/personal</id>
		<updated>2008-07-25T06:15:00+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.photolovers.de/gallery/index.php?galid=419&quot; target=&quot;_blank&quot;&gt;Mein Postershop - hier klicken&lt;/a&gt;&lt;/p&gt;
&lt;div id=&quot;flickrnostream&quot;&gt;


#flickr_badge_source_txt {padding:0; font: 11px Arial, Helvetica, Sans serif; color:#666666;}
#flickr_badge_icon {display:block !important; margin:0 !important; border: 1px solid rgb(0, 0, 0) !important;}
#flickr_icon_td {padding:0 5px 0 0 !important;}
.flickr_badge_image {text-align:center !important;}
.flickr_badge_image img {border: 1px solid black !important;}
#flickr_www {display:block; padding:0 10px 0 10px !important; font: 11px Arial, Helvetica, Sans serif !important; color:#3993ff !important;}
#flickr_badge_uber_wrapper a:hover,
#flickr_badge_uber_wrapper a:link,
#flickr_badge_uber_wrapper a:active,
#flickr_badge_uber_wrapper a:visited {text-decoration:none !important; background:inherit !important;color:#3993ff;}
#flickr_badge_wrapper {background-color:#ffffff;border: solid 1px #000000}
#flickr_badge_source {padding:0 !important; font: 11px Arial, Helvetica, Sans serif !important; color:#666666 !important;}

&lt;table id=&quot;flickr_badge_uber_wrapper&quot;&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a id=&quot;flickr_www&quot; href=&quot;http://www.flickr.com&quot;&gt;www.&lt;strong&gt;flick&lt;span&gt;r&lt;/span&gt;.com&lt;/strong&gt;&lt;/a&gt;
&lt;table id=&quot;flickr_badge_wrapper&quot;&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;div id=&quot;flickrphotos&quot;&gt;
&lt;h3&gt;Latest Flickr Photos&lt;/h3&gt;
&lt;/div&gt;



&lt;a href=&quot;http://www.flickriver.com/photos/hhoyer/popular-interesting/&quot;&gt;&lt;img title=&quot;saturn_de - View my most interesting photos on Flickriver&quot; src=&quot;http://www.flickriver.com/badge/user/all/interesting/noshuffle/medium-horiz/ffffff/333333/25691430@N04.jpg&quot; alt=&quot;saturn_de - View my most interesting photos on Flickriver&quot; /&gt;&lt;/a&gt;
&lt;h3&gt;Latest YouTube Videos&lt;/h3&gt;

&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;

&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;

&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;

&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Photos</title>
		<link href="http://hartwin-hoyer.de/2008/07/11/photo/"/>
		<id>http://hartwin-hoyer.de/2008/07/11/photo/</id>
		<updated>2008-07-11T08:47:54+00:00</updated>
		<content type="html">&lt;p&gt;Made pictures with my new camera&lt;br /&gt;
Here is the upper lake of Böblingen&lt;br /&gt;
&lt;a target=&quot;_new&quot; href=&quot;http://picasaweb.google.de/hoyer.hartwin/BBlingenObererSee&quot;&gt;http://picasaweb.google.de/hoyer.hartwin/BBlingenObererSee&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;And some Macro pictures:&lt;br /&gt;
&lt;a target=&quot;_new&quot; href=&quot;http://picasaweb.google.de/hoyer.hartwin/Macro&quot;&gt;http://picasaweb.google.de/hoyer.hartwin/Macro&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Hartwin Hoyer</name>
			<uri>http://hartwin-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Hartwin Hoyer</title>
			<link rel="self" href="http://hartwin-hoyer.de/feed/atom/"/>
			<id>http://hartwin-hoyer.de/feed/atom/</id>
			<updated>2010-04-22T11:30:05+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Pulseaudio and Jackd</title>
		<link href="http://www.harald-hoyer.de/linux/pulseaudio-and-jackd"/>
		<id>http://www.harald-hoyer.de/linux/pulseaudio-and-jackd</id>
		<updated>2008-07-11T07:15:00+00:00</updated>
		<content type="html">&lt;h2&gt;How to setup Fedora 9 to run the Jack Daemon and Pulseaudio&lt;br /&gt;&lt;/h2&gt;
&lt;h3&gt;As root&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;Install the required packages:&lt;/p&gt;
&lt;pre&gt;# yum install pulseaudio-module-jack alsa-plugins-jack jack-audio-connection-kit 
&lt;/pre&gt;
&lt;p&gt;Add yourself to the pulse-rt and jackuser&amp;nbsp; group.&lt;/p&gt;
&lt;pre&gt;# usermod -a -G pulse-rt,jackuser &quot;&amp;lt;your username&amp;gt;&quot;
&lt;/pre&gt;
&lt;p&gt;Edit &lt;em&gt;/etc/security/limits.conf&lt;/em&gt;:&lt;/p&gt;
&lt;pre&gt;@jackuser - rtprio 20
@jackuser - memlock 4194304
@pulse-rt - rtprio 20
@pulse-rt - nice -20&lt;/pre&gt;
&lt;h3&gt;As your normal user&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;Create the pulseaudio start file &lt;em&gt;~/jack.pa&lt;/em&gt;:&lt;/p&gt;
&lt;pre&gt;#!/usr/bin/pulseaudio -nF
#
load-module module-jack-sink
load-module module-jack-source

load-module module-native-protocol-unix
load-module module-volume-restore
load-module module-default-device-restore
load-module module-rescue-streams
load-module module-suspend-on-idle
.ifexists module-gconf.so
.nofail
load-module module-gconf
.fail
.endif
.ifexists module-x11-publish.so
.nofail
load-module module-x11-publish
.fail
.endif&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;Relog&lt;/strong&gt; to get the new group permissions and limits.&lt;/p&gt;
&lt;p&gt;Kill the current pulseaudio daemon:&lt;/p&gt;
&lt;pre&gt;$ killall pulseaudio
&lt;/pre&gt;
&lt;p&gt;Start the jack daemon (your parameters may be different):&lt;/p&gt;
&lt;pre&gt;$ jackd -R -P4 -dalsa -r44100 -p512 -n4 -D -Chw:0 -Phw:0
&lt;/pre&gt;
&lt;p&gt;Start the pulseaudio daemon:&lt;/p&gt;
&lt;pre&gt;$ pulseaudio -nF ~/jack.pa
&lt;/pre&gt;
&lt;p&gt;Now everything should work :) At least for me it does.&lt;/p&gt;
&lt;p&gt;What next? See &lt;a href=&quot;http://www.passback.org.uk/music/&quot;&gt;Professional audio with Fedora&lt;/a&gt; and join the &lt;a href=&quot;https://fedoraproject.org/wiki/SIGs/AudioCreation&quot;&gt;Fedora AudioCreation SIG&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Readahead reloaded</title>
		<link href="http://www.harald-hoyer.de/personal/blog/readahead-reloaded"/>
		<id>http://www.harald-hoyer.de/personal/blog/readahead-reloaded</id>
		<updated>2008-05-20T10:03:39+00:00</updated>
		<content type="html">&lt;p&gt;I modified the way readahead starts as part of the &lt;a href=&quot;http://fedoraproject.org/wiki/Features/30SecondStartup&quot;&gt;30 Second Startup Project&lt;/a&gt;. First measurements with a modified readahead &lt;a href=&quot;http://fedoraproject.org/wiki/Features/30SecondStartup/ReadAheadReloaded&quot;&gt;show encouraging numbers&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The Desktop feels slicker after login and readahead-collector profiles every boot and adapts the readahead file lists.&lt;/p&gt;</content>
		<author>
			<name>Harald Hoyer</name>
			<uri>http://www.harald-hoyer.de</uri>
		</author>
		<source>
			<title type="html">Blog</title>
			<link rel="self" href="http://www.harald-hoyer.de/rss.xml"/>
			<id>http://www.harald-hoyer.de/rss.xml</id>
			<updated>2012-02-04T21:30:03+00:00</updated>
		</source>
	</entry>

</feed>

