<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bloghaus</title>
	<atom:link href="http://maltekraus.de/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://maltekraus.de/blog</link>
	<description></description>
	<lastBuildDate>Thu, 28 Jan 2010 20:50:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>iPhone</title>
		<link>http://maltekraus.de/blog/allgemein/iphone-151.html</link>
		<comments>http://maltekraus.de/blog/allgemein/iphone-151.html#comments</comments>
		<pubDate>Thu, 28 Jan 2010 20:50:17 +0000</pubDate>
		<dc:creator>malte</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://maltekraus.de/blog/?p=151</guid>
		<description><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/c-zNBGyhzKg&amp;hl=de_DE&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube-nocookie.com/v/c-zNBGyhzKg&amp;hl=de_DE&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/c-zNBGyhzKg&amp;hl=de_DE&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube-nocookie.com/v/c-zNBGyhzKg&amp;hl=de_DE&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></content:encoded>
			<wfw:commentRss>http://maltekraus.de/blog/allgemein/iphone-151.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video-Thumbnails f&#252;r WD TV Live erstellen</title>
		<link>http://maltekraus.de/blog/allgemein/video-thumbnails-fuer-wd-tv-live-erstellen-140.html</link>
		<comments>http://maltekraus.de/blog/allgemein/video-thumbnails-fuer-wd-tv-live-erstellen-140.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 22:35:16 +0000</pubDate>
		<dc:creator>malte</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Deutsch]]></category>

		<guid isPermaLink="false">http://maltekraus.de/blog/?p=140</guid>
		<description><![CDATA[<p>Mein neues Spielzeug, der WD TV Live, kann Thumbnails (Vorschau-Bilder) zu einer Video-Datei anzeigen, wenn im selben Ordner eine jpg-Datei (am besten mit 120&#215;180 Pixeln) mit dem selben Namen wie das Video liegt. Zur Datei video.mkv wird also z.B. video.jpg angezeigt.</p>
<p>Ich hab mir also ein Shell-Script besorgt, dass aus den Videos automatisch die Bilder generiert. Ich hab mich da f&#252;r Sekunde 45 entschieden, weil bei einigen Filmen ganz am Anfang ja erstmal nutzlose Trailer der beteiligten Unternehmen laufen&#8230; Weil es vor a120llem bei 720p- oder 1080p-Videos ne Weile dauern kann, bis da ein einzelnes Bild generiert ist, hab ich dann (weil ich nicht so lang warten wollte ;) heute ein Shell-Script geschrieben, das vier Dateien auf einmal abarbeitet (ich hab nen Quad-Core). Das Script sollte man auch ohne allzu gro&#223;en Aufwand anpassen k&#246;nnen, dass es andere Aufgaben mit mehr oder weniger gleichzeitigen Jobs parallel abarbeitet (bald vielleicht auch meine Log-Files&#8230;).</p>
<p>Vorraussetzungen: ffmpeg, imagemagick</p>
<blockquote>
<pre><code>#!/bin/bash
#set -x

# file types:
TYPES='.+\.(mkv|avi|mpg|mpeg|mov|wmv|mp4|flv)$'
# make thumbnail at second ## of the movie
OFFSET=45
# number of parallel processes
WORKERS=4

NL='
'

queue_put() {
 queue_name=$1
 value=$2
 if [ -n "${!queue_name}" ]; then
 queue_val="${!queue_name}"
 eval "$queue_name=\"$queue_val$NL$value\""
 #read $queue_name &lt;&lt;&lt; "$queue_val$NL$value"
 else
 read $queue_name &lt;&lt;&lt; "$value"
 fi
}
queue_pop() {
 queue_name=$1
 var=$2

 queue="${!queue_name}"
 if [ -n "$queue" ]; then
 index=$(expr index "$queue" "$NL")

 read $var &lt;&lt;&lt; "${queue%%$NL*}"
 if [ $index -eq 0 ]; then
 read $queue_name &lt;&lt;&lt; ''
 else
 eval "$queue_name=\"${queue#*$NL}\""
#        read $queue_name &lt;&lt;&lt; "${queue#*$NL}"
 fi
 fi
}

echo "searching for missing thumbnails..."

allfiles=$(find . -regextype posix-extended -iregex "$TYPES" -exec /bin/bash -c "file=\"{}\"; exit \$(test ! -f \"\${file%.*}.jpg\")" \; -printf '%p\n')

dir=$(mktemp -d)

work() {
    echo "worker $workerid is starting up..."
    sleep .25

    pipe="$dir/job$workerid"
    while [ -p "$pipe" ]; do
        echo READY &gt; "$pipe"
        read file &lt; "$pipe"
        if [ "$file" = "DONE" ]; then
            echo "worker $workerid is shutting down."
            exit 0
        fi

        thumb=${file%.*}.jpg

        echo
        echo
        echo
        echo "worker $workerid processing $file..."
        ffmpeg -itsoffset -$OFFSET -i "$file" -vcodec mjpeg -vframes 1 -an -f rawvideo -y -v -1 "$thumb"
        mogrify -resize 120x180 "$thumb"
    done
    return 0
}

masterpid=$$

workerid=0
workers=( )
while [ $workerid -lt $WORKERS ]; do
    mkfifo "$dir/job$workerid"
    work &amp;
    workers[$workerid]=$!

    let workerid++
done

sleep 3
while [ -n "$allfiles" ]; do
    workerid=0
    while [ -n "$allfiles" -a $workerid -lt $WORKERS ]; do
        pipe="$dir/job$workerid"
        if [ -p $pipe ]; then
            response=$(cat &lt; $pipe)
             if [ "$response" = "READY" ]; then
                 queue_pop allfiles file
                 echo $file &gt; "$pipe"
            fi
        fi
        let workerid++
    done

    sleep .25
done

workerid=0
while [ $workerid -lt $WORKERS ]; do
    cat "$dir/job$workerid" &gt; /dev/null
    echo DONE &gt; "$dir/job$workerid"
    wait ${workers[$workerid]}

    let workerid++
done

rm -rf "$dir"</code></pre>
</blockquote>
<p>&#220;brigens: Ordnern kann man mit einem folder.jpg ein Bild zuordnen.</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></description>
			<content:encoded><![CDATA[<p>Mein neues Spielzeug, der WD TV Live, kann Thumbnails (Vorschau-Bilder) zu einer Video-Datei anzeigen, wenn im selben Ordner eine jpg-Datei (am besten mit 120&#215;180 Pixeln) mit dem selben Namen wie das Video liegt. Zur Datei video.mkv wird also z.B. video.jpg angezeigt.</p>
<p>Ich hab mir also ein Shell-Script besorgt, dass aus den Videos automatisch die Bilder generiert. Ich hab mich da f&#252;r Sekunde 45 entschieden, weil bei einigen Filmen ganz am Anfang ja erstmal nutzlose Trailer der beteiligten Unternehmen laufen&#8230; Weil es vor a120llem bei 720p- oder 1080p-Videos ne Weile dauern kann, bis da ein einzelnes Bild generiert ist, hab ich dann (weil ich nicht so lang warten wollte ;) heute ein Shell-Script geschrieben, das vier Dateien auf einmal abarbeitet (ich hab nen Quad-Core). Das Script sollte man auch ohne allzu gro&#223;en Aufwand anpassen k&#246;nnen, dass es andere Aufgaben mit mehr oder weniger gleichzeitigen Jobs parallel abarbeitet (bald vielleicht auch meine Log-Files&#8230;).</p>
<p>Vorraussetzungen: ffmpeg, imagemagick</p>
<blockquote>
<pre><code>#!/bin/bash
#set -x

# file types:
TYPES='.+\.(mkv|avi|mpg|mpeg|mov|wmv|mp4|flv)$'
# make thumbnail at second ## of the movie
OFFSET=45
# number of parallel processes
WORKERS=4

NL='
'

queue_put() {
 queue_name=$1
 value=$2
 if [ -n "${!queue_name}" ]; then
 queue_val="${!queue_name}"
 eval "$queue_name=\"$queue_val$NL$value\""
 #read $queue_name &lt;&lt;&lt; "$queue_val$NL$value"
 else
 read $queue_name &lt;&lt;&lt; "$value"
 fi
}
queue_pop() {
 queue_name=$1
 var=$2

 queue="${!queue_name}"
 if [ -n "$queue" ]; then
 index=$(expr index "$queue" "$NL")

 read $var &lt;&lt;&lt; "${queue%%$NL*}"
 if [ $index -eq 0 ]; then
 read $queue_name &lt;&lt;&lt; ''
 else
 eval "$queue_name=\"${queue#*$NL}\""
#        read $queue_name &lt;&lt;&lt; "${queue#*$NL}"
 fi
 fi
}

echo "searching for missing thumbnails..."

allfiles=$(find . -regextype posix-extended -iregex "$TYPES" -exec /bin/bash -c "file=\"{}\"; exit \$(test ! -f \"\${file%.*}.jpg\")" \; -printf '%p\n')

dir=$(mktemp -d)

work() {
    echo "worker $workerid is starting up..."
    sleep .25

    pipe="$dir/job$workerid"
    while [ -p "$pipe" ]; do
        echo READY &gt; "$pipe"
        read file &lt; "$pipe"
        if [ "$file" = "DONE" ]; then
            echo "worker $workerid is shutting down."
            exit 0
        fi

        thumb=${file%.*}.jpg

        echo
        echo
        echo
        echo "worker $workerid processing $file..."
        ffmpeg -itsoffset -$OFFSET -i "$file" -vcodec mjpeg -vframes 1 -an -f rawvideo -y -v -1 "$thumb"
        mogrify -resize 120x180 "$thumb"
    done
    return 0
}

masterpid=$$

workerid=0
workers=( )
while [ $workerid -lt $WORKERS ]; do
    mkfifo "$dir/job$workerid"
    work &amp;
    workers[$workerid]=$!

    let workerid++
done

sleep 3
while [ -n "$allfiles" ]; do
    workerid=0
    while [ -n "$allfiles" -a $workerid -lt $WORKERS ]; do
        pipe="$dir/job$workerid"
        if [ -p $pipe ]; then
            response=$(cat &lt; $pipe)
             if [ "$response" = "READY" ]; then
                 queue_pop allfiles file
                 echo $file &gt; "$pipe"
            fi
        fi
        let workerid++
    done

    sleep .25
done

workerid=0
while [ $workerid -lt $WORKERS ]; do
    cat "$dir/job$workerid" &gt; /dev/null
    echo DONE &gt; "$dir/job$workerid"
    wait ${workers[$workerid]}

    let workerid++
done

rm -rf "$dir"</code></pre>
</blockquote>
<p>&#220;brigens: Ordnern kann man mit einem folder.jpg ein Bild zuordnen.</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></content:encoded>
			<wfw:commentRss>http://maltekraus.de/blog/allgemein/video-thumbnails-fuer-wd-tv-live-erstellen-140.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox in mehreren Prozessen: erste Ergebnisse</title>
		<link>http://maltekraus.de/blog/firefox/firefox-in-mehreren-prozessen-erste-ergebnisse-138.html</link>
		<comments>http://maltekraus.de/blog/firefox/firefox-in-mehreren-prozessen-erste-ergebnisse-138.html#comments</comments>
		<pubDate>Mon, 22 Jun 2009 15:25:18 +0000</pubDate>
		<dc:creator>malte</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://maltekraus.de/blog/?p=138</guid>
		<description><![CDATA[<p><a href="http://blog.mozilla.com/cjones/2009/06/21/multi-process-firefox-coming-to-an-internets-near-you/">hier</a> gibt es ein Video eines Gecko-Browsers, der in mehrere Prozesse aufgeteilt ist. Das alles ist noch in einer sehr fr&#252;hen Phase und es wird noch eine ganze Weile bis zum Release einer Firefox-Version, die f&#252;r Tabs und Plugins extra Prozesse verwendet, dauern. Ein erster Schritt ist aber getan.</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.mozilla.com/cjones/2009/06/21/multi-process-firefox-coming-to-an-internets-near-you/">hier</a> gibt es ein Video eines Gecko-Browsers, der in mehrere Prozesse aufgeteilt ist. Das alles ist noch in einer sehr fr&#252;hen Phase und es wird noch eine ganze Weile bis zum Release einer Firefox-Version, die f&#252;r Tabs und Plugins extra Prozesse verwendet, dauern. Ein erster Schritt ist aber getan.</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></content:encoded>
			<wfw:commentRss>http://maltekraus.de/blog/firefox/firefox-in-mehreren-prozessen-erste-ergebnisse-138.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Organize Search Engines 1.5 Release Candidate 2</title>
		<link>http://maltekraus.de/blog/firefox/organize-search-engines/organize-search-engines-release-candidate-2-126.html</link>
		<comments>http://maltekraus.de/blog/firefox/organize-search-engines/organize-search-engines-release-candidate-2-126.html#comments</comments>
		<pubDate>Sun, 14 Jun 2009 19:30:10 +0000</pubDate>
		<dc:creator>malte</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Organize Search Engines]]></category>
		<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://maltekraus.de/blog/?p=126</guid>
		<description><![CDATA[<p><a href="http://maltekraus.de/blog/wp-content/uploads/2009/06/organize-search-engines_1.5pre21.xpi">Install Organize Search Engines 1.5rc2</a></p>
<p>Changes since RC 1:</p>
<ul>
<li>compatible with Firefox 3.5</li>
<li>cool new tango icons</li>
<li>&#8220;Encoding&#8221; is added to engine properties</li>
<li>simplified/slightly faster XPCOM registration for the component (using XPCOMUtils.jsm)</li>
<li>fix: &#8220;add more engines&#8221; now also works when the engine manage is opened from the add-ons window</li>
<li>fix: dropping text over a search engines searches with that engine instead of the currently selected one</li>
<li>fix: &#8220;Open All in Tabs&#8221; feature works for folders with an engine without an icon</li>
<li>fix: when adding an engine, a folder can be selected again</li>
<li>auto context support is updated to latest version</li>
<li>removed TabmixPlus hacks &#8211; TMP now supports OSE natively</li>
<li>fixed minor SearchWP incompatibility</li>
</ul>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://maltekraus.de/blog/wp-content/uploads/2009/06/organize-search-engines_1.5pre21.xpi">Install Organize Search Engines 1.5rc2</a></p>
<p>Changes since RC 1:</p>
<ul>
<li>compatible with Firefox 3.5</li>
<li>cool new tango icons</li>
<li>&#8220;Encoding&#8221; is added to engine properties</li>
<li>simplified/slightly faster XPCOM registration for the component (using XPCOMUtils.jsm)</li>
<li>fix: &#8220;add more engines&#8221; now also works when the engine manage is opened from the add-ons window</li>
<li>fix: dropping text over a search engines searches with that engine instead of the currently selected one</li>
<li>fix: &#8220;Open All in Tabs&#8221; feature works for folders with an engine without an icon</li>
<li>fix: when adding an engine, a folder can be selected again</li>
<li>auto context support is updated to latest version</li>
<li>removed TabmixPlus hacks &#8211; TMP now supports OSE natively</li>
<li>fixed minor SearchWP incompatibility</li>
</ul>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></content:encoded>
			<wfw:commentRss>http://maltekraus.de/blog/firefox/organize-search-engines/organize-search-engines-release-candidate-2-126.html/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Organize Search Engines 1.5 Release Candidate 1</title>
		<link>http://maltekraus.de/blog/firefox/organize-search-engines/organize-search-engines-15-release-candidate-1-116.html</link>
		<comments>http://maltekraus.de/blog/firefox/organize-search-engines/organize-search-engines-15-release-candidate-1-116.html#comments</comments>
		<pubDate>Tue, 10 Mar 2009 16:59:42 +0000</pubDate>
		<dc:creator>malte</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Organize Search Engines]]></category>
		<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://maltekraus.de/blog/?p=116</guid>
		<description><![CDATA[<p><a href="http://maltekraus.de/Firefox/search-tools/organize-search-engines_1.5pre.xpi">Organize Search Engines 1.5 RC 1</a></p>
<p><strong>Changes:</strong></p>
<ul>
<li>engine properties allow changing nearly anything about an engine</li>
<li>drag &amp; drop support for the engine selection popup</li>
<li>updated add-on support</li>
<li>customize toolbar not breaking the engine selection popup</li>
<li>Fx 3.5 beta supported/dropped Fx 2 support</li>
<li>dropped Second Search support (it now just has a normal flat menu)</li>
<li>&#8220;open in tabs&#8221; works with tab mix plus (for now)</li>
</ul>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://maltekraus.de/Firefox/search-tools/organize-search-engines_1.5pre.xpi">Organize Search Engines 1.5 RC 1</a></p>
<p><strong>Changes:</strong></p>
<ul>
<li>engine properties allow changing nearly anything about an engine</li>
<li>drag &amp; drop support for the engine selection popup</li>
<li>updated add-on support</li>
<li>customize toolbar not breaking the engine selection popup</li>
<li>Fx 3.5 beta supported/dropped Fx 2 support</li>
<li>dropped Second Search support (it now just has a normal flat menu)</li>
<li>&#8220;open in tabs&#8221; works with tab mix plus (for now)</li>
</ul>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></content:encoded>
			<wfw:commentRss>http://maltekraus.de/blog/firefox/organize-search-engines/organize-search-engines-15-release-candidate-1-116.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Dear Lazy Web</title>
		<link>http://maltekraus.de/blog/firefox/organize-search-engines/dear-lazy-web-112.html</link>
		<comments>http://maltekraus.de/blog/firefox/organize-search-engines/dear-lazy-web-112.html#comments</comments>
		<pubDate>Fri, 20 Feb 2009 20:26:20 +0000</pubDate>
		<dc:creator>malte</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Organize Search Engines]]></category>

		<guid isPermaLink="false">http://maltekraus.de/blog/?p=112</guid>
		<description><![CDATA[<p>ich brauche ein Icon f&#252;r den Button zum &#196;ndern des Schl&#252;sselworts in Organize Search Engines. Bisher habe ich dazu das Eigenschaften-Icon missbraucht, der wird jetzt aber f&#252;r die Eigenschaften gebraucht.</p>
<p><a href="http://maltekraus.de/blog/wp-content/uploads/2009/02/missing-keyword-icon.png"><img class="alignnone size-thumbnail wp-image-113" title="Organize Search Engines - mit fehlendem Icon f&#252;r den Schl&#252;sselwort-Button" src="http://maltekraus.de/blog/wp-content/uploads/2009/02/missing-keyword-icon-150x150.png" alt="Organize Search Engines - mit fehlendem Icon f&#252;r den Schl&#252;sselwort-Button" width="150" height="150" /></a></p>
<p>Mal schauen, ob das mit dem Lazy Web auch hier funktioniert&#8230;</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></description>
			<content:encoded><![CDATA[<p>ich brauche ein Icon f&#252;r den Button zum &#196;ndern des Schl&#252;sselworts in Organize Search Engines. Bisher habe ich dazu das Eigenschaften-Icon missbraucht, der wird jetzt aber f&#252;r die Eigenschaften gebraucht.</p>
<p><a href="http://maltekraus.de/blog/wp-content/uploads/2009/02/missing-keyword-icon.png"><img class="alignnone size-thumbnail wp-image-113" title="Organize Search Engines - mit fehlendem Icon f&#252;r den Schl&#252;sselwort-Button" src="http://maltekraus.de/blog/wp-content/uploads/2009/02/missing-keyword-icon-150x150.png" alt="Organize Search Engines - mit fehlendem Icon f&#252;r den Schl&#252;sselwort-Button" width="150" height="150" /></a></p>
<p>Mal schauen, ob das mit dem Lazy Web auch hier funktioniert&#8230;</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></content:encoded>
			<wfw:commentRss>http://maltekraus.de/blog/firefox/organize-search-engines/dear-lazy-web-112.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drag &amp; Drop im Suchmaschinen-Auswahlmen&#252;</title>
		<link>http://maltekraus.de/blog/firefox/organize-search-engines/drag-drop-im-suchmaschinen-auswahlmenue-106.html</link>
		<comments>http://maltekraus.de/blog/firefox/organize-search-engines/drag-drop-im-suchmaschinen-auswahlmenue-106.html#comments</comments>
		<pubDate>Sun, 15 Feb 2009 21:37:14 +0000</pubDate>
		<dc:creator>malte</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Organize Search Engines]]></category>

		<guid isPermaLink="false">http://maltekraus.de/blog/?p=106</guid>
		<description><![CDATA[<p>Ein weiteres altes SEO-Feature, das bald Einzug in Organize Search Engines erh&#228;lt: das Umsortieren der Suchmaschinen direkt im Auswahlmen&#252; per Drag &amp; Drop.</p>
<p><img class="size-full wp-image-107" src="http://maltekraus.de/blog/wp-content/uploads/2009/02/ose-dragdrop.png" alt="Drag &amp; Drop im Auswahlmen&#252; der Suchmaschine" width="417" height="293" /></p>
<p>Dass das letzte noch fehlende Feature (das mir einf&#228;llt), das Kontextmen&#252; der Suchmaschinen im Drop-Down, noch kommt, bezweifle ich. Der Engine-Manager ist imho sehr viel bequemer, als es so ein je Kontextmen&#252; sein k&#246;nnte.<br />
<strong>Update 17.02.:</strong> Der Backport vom 3.1-Branch auf Firefox 3 hat erstaunlicherweise auch eine kleine &#196;nderung gebraucht :-). Damit ist Version 1.5 <a href="http://code.google.com/p/organize-search-engines/issues/detail?id=41">fast fertig</a>.</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></description>
			<content:encoded><![CDATA[<p>Ein weiteres altes SEO-Feature, das bald Einzug in Organize Search Engines erh&#228;lt: das Umsortieren der Suchmaschinen direkt im Auswahlmen&#252; per Drag &amp; Drop.</p>
<p><img class="size-full wp-image-107" src="http://maltekraus.de/blog/wp-content/uploads/2009/02/ose-dragdrop.png" alt="Drag &amp; Drop im Auswahlmen&#252; der Suchmaschine" width="417" height="293" /></p>
<p>Dass das letzte noch fehlende Feature (das mir einf&#228;llt), das Kontextmen&#252; der Suchmaschinen im Drop-Down, noch kommt, bezweifle ich. Der Engine-Manager ist imho sehr viel bequemer, als es so ein je Kontextmen&#252; sein k&#246;nnte.<br />
<strong>Update 17.02.:</strong> Der Backport vom 3.1-Branch auf Firefox 3 hat erstaunlicherweise auch eine kleine &#196;nderung gebraucht :-). Damit ist Version 1.5 <a href="http://code.google.com/p/organize-search-engines/issues/detail?id=41">fast fertig</a>.</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></content:encoded>
			<wfw:commentRss>http://maltekraus.de/blog/firefox/organize-search-engines/drag-drop-im-suchmaschinen-auswahlmenue-106.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symbolleisten anpassen</title>
		<link>http://maltekraus.de/blog/firefox/organize-search-engines/symbolleisten-anpassen-104.html</link>
		<comments>http://maltekraus.de/blog/firefox/organize-search-engines/symbolleisten-anpassen-104.html#comments</comments>
		<pubDate>Mon, 09 Feb 2009 23:30:49 +0000</pubDate>
		<dc:creator>malte</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Organize Search Engines]]></category>

		<guid isPermaLink="false">http://maltekraus.de/blog/?p=104</guid>
		<description><![CDATA[<p>Ich habe endlich <strong>die</strong> L&#246;sung gefunden (<a href="http://code.google.com/p/organize-search-engines/source/detail?r=249">und eingebaut</a>), das ewige Problem zu l&#246;sen, dass nach dem Anpassen der Toolbars nichts mehr funktioniert: die Methoden der Searchbar nicht einfach durch eigene ersetzen, sondern ein eigenes XBL-Binding schreiben, dass das Standard-Binding erweitert (extend).</p>
<p>Damit l&#246;st sich das Problem mit dem Anpassen einfach in Luft auf, weil immer wenn die Suchleiste neu initialisiert wird, mein Code genauso neu aufgerufen wird. Das Binding hat mir dann au&#223;erdem auch erlaubt, einigen Kompatibilit&#228;ts-Code f&#252;r <a href="https://addons.mozilla.org/de/firefox/addon/6545">Thinger</a> (mehrere Suchleisten, leider nur bis Fx 2) rauszuschmei&#223;en, weil mein Code ganz von selbst mitgeladen wird.</p>
<p>So im Nachhinein ist das sowieso die viel sauberere L&#246;sung, aber das hat damals halt mit einer einzigen ersetzten Methode angefangen und ist dann immer mehr geworden&#8230;</p>
<p>(Nein, ich erwarte nicht, dass das ein Leser hier versteht, oder dass es ihn interessiert. Aber ich wollte es mal loswerden.)</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></description>
			<content:encoded><![CDATA[<p>Ich habe endlich <strong>die</strong> L&#246;sung gefunden (<a href="http://code.google.com/p/organize-search-engines/source/detail?r=249">und eingebaut</a>), das ewige Problem zu l&#246;sen, dass nach dem Anpassen der Toolbars nichts mehr funktioniert: die Methoden der Searchbar nicht einfach durch eigene ersetzen, sondern ein eigenes XBL-Binding schreiben, dass das Standard-Binding erweitert (extend).</p>
<p>Damit l&#246;st sich das Problem mit dem Anpassen einfach in Luft auf, weil immer wenn die Suchleiste neu initialisiert wird, mein Code genauso neu aufgerufen wird. Das Binding hat mir dann au&#223;erdem auch erlaubt, einigen Kompatibilit&#228;ts-Code f&#252;r <a href="https://addons.mozilla.org/de/firefox/addon/6545">Thinger</a> (mehrere Suchleisten, leider nur bis Fx 2) rauszuschmei&#223;en, weil mein Code ganz von selbst mitgeladen wird.</p>
<p>So im Nachhinein ist das sowieso die viel sauberere L&#246;sung, aber das hat damals halt mit einer einzigen ersetzten Methode angefangen und ist dann immer mehr geworden&#8230;</p>
<p>(Nein, ich erwarte nicht, dass das ein Leser hier versteht, oder dass es ihn interessiert. Aber ich wollte es mal loswerden.)</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></content:encoded>
			<wfw:commentRss>http://maltekraus.de/blog/firefox/organize-search-engines/symbolleisten-anpassen-104.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Suchmaschinen-Eigenschaften</title>
		<link>http://maltekraus.de/blog/firefox/organize-search-engines/suchmaschinen-eigenschaften-101.html</link>
		<comments>http://maltekraus.de/blog/firefox/organize-search-engines/suchmaschinen-eigenschaften-101.html#comments</comments>
		<pubDate>Sun, 01 Feb 2009 20:01:04 +0000</pubDate>
		<dc:creator>malte</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Organize Search Engines]]></category>

		<guid isPermaLink="false">http://maltekraus.de/blog/?p=101</guid>
		<description><![CDATA[<p><img class="size-full wp-image-102" title="Engine Properties" src="http://maltekraus.de/blog/wp-content/uploads/2009/02/engine-properties.png" alt="Engine Properties" width="401" height="467" /></p>
<p>Search-Plugins ohne Gefummel in den xml-Dateien bearbeiten.</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-102" title="Engine Properties" src="http://maltekraus.de/blog/wp-content/uploads/2009/02/engine-properties.png" alt="Engine Properties" width="401" height="467" /></p>
<p>Search-Plugins ohne Gefummel in den xml-Dateien bearbeiten.</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></content:encoded>
			<wfw:commentRss>http://maltekraus.de/blog/firefox/organize-search-engines/suchmaschinen-eigenschaften-101.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Facharbeit</title>
		<link>http://maltekraus.de/blog/allgemein/facharbeit-91.html</link>
		<comments>http://maltekraus.de/blog/allgemein/facharbeit-91.html#comments</comments>
		<pubDate>Sat, 31 Jan 2009 18:29:54 +0000</pubDate>
		<dc:creator>malte</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Deutsch]]></category>

		<guid isPermaLink="false">http://maltekraus.de/blog/?p=91</guid>
		<description><![CDATA[<p>Da ich wei&#223;, dass darauf mindestens eine Person gewartet hat, und das schon mehr ist als bei den meisten der (viel zu seltenen) Postings hier, kommt hier jetzt also ohne lange Einleitung meine Facharbeit&#8230;</p>
<ul>
<li>Facharbeit: <a href="http://maltekraus.de/blog/wp-content/uploads/2009/01/facharbeit_final.pdf">PDF</a>, <a href="http://maltekraus.de/blog/wp-content/uploads/2009/01/facharbeit_final.odt">OpenDocument</a></li>
<li>Programm: <a href="http://maltekraus.de/blog/wp-content/uploads/2009/01/facharbeit.jar">Binary (Java)</a>, <a href="http://maltekraus.de/blog/wp-content/uploads/2009/01/facharbeittar.bz2">Quelltexte (tar.bz2)</a></li>
</ul>
<p>Thema: Numerische Verfahren zur Nullstellenberechnung (mit Computerereinsatz)</p>
<p>Bitte auf keine gefundene Fehler hinweisen, sie ist eh schon abgegeben und so muss ich mir (zumindest bis zur m&#252;ndlichen Pr&#252;fung) keinen unn&#246;tigen Kopf drum machen.</p>
<p>PS: Die Quelltexte stehen aus alter Tradition MPL/GPL/LGPL lizenziert. Die Arbeit selbst unter der <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/de/">Creative Commons Namensnennung-Weitergabe unter gleichen Bedingungen 3.0 Deutschland Lizenz</a>.</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></description>
			<content:encoded><![CDATA[<p>Da ich wei&#223;, dass darauf mindestens eine Person gewartet hat, und das schon mehr ist als bei den meisten der (viel zu seltenen) Postings hier, kommt hier jetzt also ohne lange Einleitung meine Facharbeit&#8230;</p>
<ul>
<li>Facharbeit: <a href="http://maltekraus.de/blog/wp-content/uploads/2009/01/facharbeit_final.pdf">PDF</a>, <a href="http://maltekraus.de/blog/wp-content/uploads/2009/01/facharbeit_final.odt">OpenDocument</a></li>
<li>Programm: <a href="http://maltekraus.de/blog/wp-content/uploads/2009/01/facharbeit.jar">Binary (Java)</a>, <a href="http://maltekraus.de/blog/wp-content/uploads/2009/01/facharbeittar.bz2">Quelltexte (tar.bz2)</a></li>
</ul>
<p>Thema: Numerische Verfahren zur Nullstellenberechnung (mit Computerereinsatz)</p>
<p>Bitte auf keine gefundene Fehler hinweisen, sie ist eh schon abgegeben und so muss ich mir (zumindest bis zur m&#252;ndlichen Pr&#252;fung) keinen unn&#246;tigen Kopf drum machen.</p>
<p>PS: Die Quelltexte stehen aus alter Tradition MPL/GPL/LGPL lizenziert. Die Arbeit selbst unter der <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/de/">Creative Commons Namensnennung-Weitergabe unter gleichen Bedingungen 3.0 Deutschland Lizenz</a>.</p>
<p><span class="listenTo listenTo_noLink"> </span></p>]]></content:encoded>
			<wfw:commentRss>http://maltekraus.de/blog/allgemein/facharbeit-91.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
