<?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>linkhalde &#187; Martin</title>
	<atom:link href="http://www.linkhal.de/blog/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linkhal.de/blog</link>
	<description>allerlei Dinge</description>
	<lastBuildDate>Mon, 23 Jan 2012 11:21:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Converting massive e-book-collections with Calibre and GNU Parrallel</title>
		<link>http://www.linkhal.de/blog/2012/01/converting-massive-e-book-collections-with-calibre-and-gnu-parrallel/</link>
		<comments>http://www.linkhal.de/blog/2012/01/converting-massive-e-book-collections-with-calibre-and-gnu-parrallel/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 11:21:20 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[calibre]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[e-books]]></category>
		<category><![CDATA[gnu parallel]]></category>
		<category><![CDATA[parallel]]></category>
		<category><![CDATA[spotlight]]></category>

		<guid isPermaLink="false">http://www.linkhal.de/blog/?p=369</guid>
		<description><![CDATA[Calibre deals well with massive e-book collections, but it does not offer full text search (as far as I know). If you are on a Mac there is a decent search engine for your personal files built in, called Spotlight. &#8230; <a href="http://www.linkhal.de/blog/2012/01/converting-massive-e-book-collections-with-calibre-and-gnu-parrallel/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="Calibre homepage" href="http://calibre-ebook.com/">Calibre</a> deals well with massive e-book collections, but it does not offer full text search (as far as I know). If you are on a Mac there is a decent search engine for your personal files built in, called <a title="Spotlight 101 at Apple" href="https://support.apple.com/kb/HT2531">Spotlight</a>. However, Spotlight is not able to search the contents of EPUB or MOBI e-book files. This is why I decided to convert my collection to plain text.</p>
<p>Calibre offers the capability to bulk-convert a lot of books in parallel, but at least on my system it quite often froze after a couple of minutes. Calibre also lets you convert books from the command line with the <a title="ebook-convert in the Calibre user manual" href="http://manual.calibre-ebook.com/cli/ebook-convert.html">ebook-convert</a> command. Combined with a simple find and GNU Parallel it can be used to convert massive collections with a one liner:</p>
<p><code>find $your_library_location -type f -iname "*.mobi" | parallel --timeout 120 --progress "/Applications/calibre.app/Contents/console.app/Contents/MacOS/ebook-convert {} {.}.txt"</code></p>
<p>Parallel will try to saturate all the available CPUs on your system and can even scale out to other machines with a little more tweaking. The <code>--timeout</code> option will kill off any spawned sub-process that takes longer than the given ammount of seconds, which is nessecary, since sometimes the conversion seems to hang for no apparent reason. The option <code>--progress</code> will give you an idea how many jobs have been completed yet.</p>
<p>Parallel can be installed via the excellent <a title="Homebrew Homepage" href="http://mxcl.github.com/homebrew/">homebrew</a> project by running <code>brew install parallel</code>. The location of the <code>ebook-convert</code> command may vary on other systems, if I remember correctly Ubuntu sets it up correctly when installing Callibre via APT, so you can omit the path.</p>
<p>For me this works well enough and seems a little more robust than Calibres own job-scheduling mechanism. Hope this helps someone else.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linkhal.de/blog/2012/01/converting-massive-e-book-collections-with-calibre-and-gnu-parrallel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Notes on rooting my Motorola Defy</title>
		<link>http://www.linkhal.de/blog/2012/01/rooting-motorola-defy/</link>
		<comments>http://www.linkhal.de/blog/2012/01/rooting-motorola-defy/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 08:16:57 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[cyanogenmod]]></category>
		<category><![CDATA[motorola defy]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[rooting]]></category>
		<category><![CDATA[superoneclick]]></category>

		<guid isPermaLink="false">http://www.linkhal.de/blog/?p=363</guid>
		<description><![CDATA[Yesterday I got my new Motorola Defy. The main reason I decided to buy that model instead of another was the CyanogenMod-Support. The Guide in the CyanogenMod wiki provides an excellent resource on how to root your phone, install a &#8230; <a href="http://www.linkhal.de/blog/2012/01/rooting-motorola-defy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday I got my new Motorola Defy. The main reason I decided to buy that model instead of another was the CyanogenMod-Support. The <a title="Motorola Defy: Full Update Guide" href="http://wiki.cyanogenmod.com/wiki/Motorola_Defy:_Full_Update_Guide">Guide</a> in the CyanogenMod wiki provides an excellent resource on how to root your phone, install a bootmenu and finally flash the current Version of CM on the device.</p>
<p>My problem, however, was that the process described in the rooting section of the page did not work for me. I could log into my device via adb, copy the exploit files over, execute them, but they had no apparent effect (apart from outputting a &#8220;doing my thing&#8221;-message and disconnecting the adb session&#8221;). I had to search for another way to root the phone and stumbled upon <a href="http://shortfuse.org/">SuperOneClick</a> which, apart from being written for Windows, is an awesome tool and worked without a flaw.</p>
<p>So if you&#8217;ve got a Motorola Defy and the rooting-method described in the CyanogenMod-wiki does not fly, try <a href="http://motoroladefy.com/index.php?/topic/243-how-to-root-motorola-defy-using-superoneclick/">this guide</a>. Also consider donating to the author of <a href="http://shortfuse.org/">SuperOneClick</a> and <a href="http://www.cyanogenmod.com/">CyanogenMod</a> for putting in the effort that your phone manufacturer isn&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linkhal.de/blog/2012/01/rooting-motorola-defy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fixing force-close issues with android keyboard</title>
		<link>http://www.linkhal.de/blog/2010/07/fixing-force-close-issues-with-android-keyboard/</link>
		<comments>http://www.linkhal.de/blog/2010/07/fixing-force-close-issues-with-android-keyboard/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 15:56:20 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[cyanogenmod]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[force-close]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[technik]]></category>

		<guid isPermaLink="false">http://www.linkhal.de/blog/?p=300</guid>
		<description><![CDATA[I just spent the last couple of hours fixing my phone, maybe this saves you some time. Out of the blue the (software) keyboard on my HTC G1 / Dream stopped working. Basically I got force-close messages as soon as &#8230; <a href="http://www.linkhal.de/blog/2010/07/fixing-force-close-issues-with-android-keyboard/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just spent the last couple of hours fixing my phone, maybe this saves you some time.</p>
<p>Out of the blue the (software) keyboard on my HTC G1 / Dream stopped working. Basically I got force-close messages as soon as I booted the device. Re-flashing Cyanogenmod (5.0.8) didn&#8217;t help. After running the <a title="project homepage of android logcollector" href="http://code.google.com/p/android-log-collector/">log collector</a> and sending myself the logs and spotted the following:<br />
<span id="more-300"></span><br />
<code style="font-size: 0.6em; text-align: left;">07-04 17:08:13.770 E/Database(  558): android.database.sqlite.SQLiteException: file is encrypted or is not a database<br />
07-04 17:08:13.770 E/Database(  558):   at android.database.sqlite.SQLiteDatabase.native_setLocale(Native Method)<br />
07-04 17:08:13.770 E/Database(  558):   at android.database.sqlite.SQLiteDatabase.setLocale(SQLiteDatabase.java:1759)<br />
07-04 17:08:13.770 E/Database(  558):   at android.database.sqlite.SQLiteDatabase.(SQLiteDatabase.java:1709)<br />
07-04 17:08:13.770 E/Database(  558):   at android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:739)<br />
07-04 17:08:13.770 E/Database(  558):   at android.database.sqlite.SQLiteDatabase.openOrCreateDatabase(SQLiteDatabase.java:761)<br />
07-04 17:08:13.770 E/Database(  558):   at android.database.sqlite.SQLiteDatabase.openOrCreateDatabase(SQLiteDatabase.java:754)<br />
07-04 17:08:13.770 E/Database(  558):   at android.app.ApplicationContext.openOrCreateDatabase(ApplicationContext.java:473)<br />
07-04 17:08:13.770 E/Database(  558):   at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:98)<br />
07-04 17:08:13.770 E/Database(  558):   at android.database.sqlite.SQLiteOpenHelper.getReadableDatabase(SQLiteOpenHelper.java:158)<br />
07-04 17:08:13.770 E/Database(  558):   at com.android.providers.userdictionary.UserDictionaryProvider.query(UserDictionaryProvider.java:133)<br />
07-04 17:08:13.770 E/Database(  558):   at android.content.ContentProvider$Transport.bulkQuery(ContentProvider.java:117)<br />
07-04 17:08:13.770 E/Database(  558):   at android.content.ContentProviderNative.onTransact(ContentProviderNative.java:98)<br />
07-04 17:08:13.770 E/Database(  558):   at android.os.Binder.execTransact(Binder.java:287)<br />
07-04 17:08:13.770 E/Database(  558):   at dalvik.system.NativeStart.run(Native Method)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558): Couldn't open user_dict.db for writing (will try read-only):<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558): android.database.sqlite.SQLiteException: file is encrypted or is not a database<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.database.sqlite.SQLiteDatabase.native_setLocale(Native Method)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.database.sqlite.SQLiteDatabase.setLocale(SQLiteDatabase.java:1759)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.database.sqlite.SQLiteDatabase.(SQLiteDatabase.java:1709)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:739)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.database.sqlite.SQLiteDatabase.openOrCreateDatabase(SQLiteDatabase.java:761)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.database.sqlite.SQLiteDatabase.openOrCreateDatabase(SQLiteDatabase.java:754)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.app.ApplicationContext.openOrCreateDatabase(ApplicationContext.java:473)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:98)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.database.sqlite.SQLiteOpenHelper.getReadableDatabase(SQLiteOpenHelper.java:158)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at com.android.providers.userdictionary.UserDictionaryProvider.query(UserDictionaryProvider.java:133)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.content.ContentProvider$Transport.bulkQuery(ContentProvider.java:117)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.content.ContentProviderNative.onTransact(ContentProviderNative.java:98)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at android.os.Binder.execTransact(Binder.java:287)<br />
07-04 17:08:13.840 E/SQLiteOpenHelper(  558):   at dalvik.system.NativeStart.run(Native Method)</code></p>
<p>With <a href="http://developer.android.com/guide/developing/tools/adb.html">adb</a> I was able to pull the file from the device but still unable to open it. SQLite on my Laptop gave me the same error message <em>Unable to open database &#8220;olddict.db&#8221;: file is encrypted or is not a database.</em> Looks like something messed up my dictionary-file, but since I did not use the software-keyboard much anyway and my dictionary wasn&#8217;t even remotely useful I decided to just delete it.</p>
<p>Voila, everything went back to normal. No more force-close-messages all the time, software-keyboard works again.</p>
<p>This should also be fixable with a full-wipe, but I didn&#8217;t want to go through the hassle of setting up all my apps again. Also right now I don&#8217;t see any suggestions when typing with the software keyboard, I don&#8217;t know if they will ever come back (I for one don&#8217;t care), but keep that in mind before trying this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linkhal.de/blog/2010/07/fixing-force-close-issues-with-android-keyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>making gitk with Ubuntu 9.10 usable</title>
		<link>http://www.linkhal.de/blog/2010/01/making-gitk-with-ubuntu-9-10-usable/</link>
		<comments>http://www.linkhal.de/blog/2010/01/making-gitk-with-ubuntu-9-10-usable/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 22:02:57 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[desktop effects]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[gitk]]></category>
		<category><![CDATA[tk]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wish]]></category>

		<guid isPermaLink="false">http://www.linkhal.de/blog/?p=285</guid>
		<description><![CDATA[If you happen to use gitk and Ubuntu 9.10 with desktop effects, you might notice that gitk and other tk-apps tend to look like crap (i.e. giant fonts, buttons, etc), rendering them useless. I found the solution for this in &#8230; <a href="http://www.linkhal.de/blog/2010/01/making-gitk-with-ubuntu-9-10-usable/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you happen to use gitk and Ubuntu 9.10 with desktop effects, you might notice that gitk and other tk-apps tend to look like crap (i.e. giant fonts, buttons, etc), rendering them useless.</p>
<div id="attachment_286" class="wp-caption alignnone" style="width: 310px"><a href="http://www.linkhal.de/blog/wp-content/uploads/2010/01/gitk_crap.png"><img class="size-medium wp-image-286 " title="gitk_crap" src="http://www.linkhal.de/blog/wp-content/uploads/2010/01/gitk_crap-300x187.png" alt="gitk looking like crap" width="300" height="187" /></a><p class="wp-caption-text">gitk looking like crap</p></div>
<p>I found the solution for this in a <a href="http://navarra.ca/?p=44">blog entry of the Navarra Group</a>. All you have to do is <code>sudo aptitude install tk8.5</code> and <code>sudo update-alternatives –config wish</code> (here you select wish 8.5 from the list).</p>
<div id="attachment_287" class="wp-caption alignnone" style="width: 310px"><a href="http://www.linkhal.de/blog/wp-content/uploads/2010/01/gitk_great.png"><img class="size-medium wp-image-287 " title="gitk_great" src="http://www.linkhal.de/blog/wp-content/uploads/2010/01/gitk_great-300x187.png" alt="" width="300" height="187" /></a><p class="wp-caption-text">gitk looking good again</p></div>
<p>Neat!</p>
<p><code><code> </code></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linkhal.de/blog/2010/01/making-gitk-with-ubuntu-9-10-usable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tracker goodness in Ubuntu Karmic Koala</title>
		<link>http://www.linkhal.de/blog/2010/01/tracker-in-ubuntu-karmic/</link>
		<comments>http://www.linkhal.de/blog/2010/01/tracker-in-ubuntu-karmic/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 12:44:06 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[Advanced Packaging Tool]]></category>
		<category><![CDATA[Beagle]]></category>
		<category><![CDATA[desktop search]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[tracker]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linkhal.de/blog/?p=255</guid>
		<description><![CDATA[As I noticed today, the desktop-search Beagle seems broken (again) in Ubuntu Karmic Koala. The most annoying thing is that nothing tells you that it&#8217;s broken. Only the fact that Beagle doesn&#8217;t index a thing, no matter what you change &#8230; <a href="http://www.linkhal.de/blog/2010/01/tracker-in-ubuntu-karmic/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As I noticed today, the <a class="zem_slink" title="Desktop search" rel="wikipedia" href="http://en.wikipedia.org/wiki/Desktop_search">desktop-search</a> <a class="zem_slink" title="Beagle" rel="homepage" href="http://beagle-project.org/Main_Page">Beagle</a> seems broken (again) in <a class="zem_slink" title="Ubuntu (operating system)" rel="homepage" href="http://www.ubuntu.com/">Ubuntu</a> Karmic Koala. The most annoying thing is that nothing tells you that it&#8217;s broken. Only the fact that Beagle doesn&#8217;t index a thing, no matter what you change in <code>beagle-settings</code>, gives you a hint.</p>
<p>For some reason I don&#8217;t even remember I&#8217;ve been a bigger fan of <a title="Tracker project homepage" href="http://projects.gnome.org/tracker/">tracker</a> anyway for a while. Installing on a fresh Karmic works like this: <code>sudo apt-get install tracker tracker-search-tool tracker-utils</code>.</p>
<p>If you, like me, frequently use Deskbar, you might also want to install the package libdeskbar-tracker. This enables you to get search results from tracker as you type. If the tracker daemon does not start automatically, you can start it by hand running <code>/usr/lib/tracker/trackerd</code>. To all I know the tracker applet also refuses to start, untill the daemon is up and running.</p>
<p style="text-align: center;"><a href="http://www.linkhal.de/blog/wp-content/uploads/2010/01/Bildschirmfoto-1.png"><img class="size-medium wp-image-271 aligncenter" title="Tracker in action" src="http://www.linkhal.de/blog/wp-content/uploads/2010/01/Bildschirmfoto-1-300x205.png" alt="" width="300" height="205" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linkhal.de/blog/2010/01/tracker-in-ubuntu-karmic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Duden Korrektor Openoffice-Plugin unter 64 Bit Linux betreiben &#8211; nicht.</title>
		<link>http://www.linkhal.de/blog/2009/12/duden-korrektor-openoffice-plugin-unter-64-bit-linux-betreiben/</link>
		<comments>http://www.linkhal.de/blog/2009/12/duden-korrektor-openoffice-plugin-unter-64-bit-linux-betreiben/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 09:39:38 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[64-bit]]></category>
		<category><![CDATA[duden]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[korrektor]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[openoffice]]></category>
		<category><![CDATA[rechtschreibprüfung]]></category>
		<category><![CDATA[technik]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linkhal.de/blog/?p=241</guid>
		<description><![CDATA[Korrektur: Die unten angegebene Methode ist leider doch nicht das gelbe vom Ei. Zwar installiert das Plugin ohne Fehler, die Symbolleiste wird in OpenOffice angezeigt, jedoch ist die Rechtschreibprüfung immernoch die von Openoffice. Grammatikprüfung findet ebenfalls nicht statt. Wenn irgendjemand &#8230; <a href="http://www.linkhal.de/blog/2009/12/duden-korrektor-openoffice-plugin-unter-64-bit-linux-betreiben/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #ff0000;">Korrektur: <span style="font-weight: normal;">Die unten angegebene Methode ist leider doch nicht das gelbe vom Ei. Zwar installiert das Plugin ohne Fehler, die Symbolleiste wird in OpenOffice angezeigt, jedoch ist die Rechtschreibprüfung immernoch die von Openoffice. Grammatikprüfung findet ebenfalls nicht statt. Wenn irgendjemand einen guten Tipp hat, immer her damit. Soweit ich sehe, ist die Software komplett in Java geschrieben und </span></span></strong><em><span style="color: #ff0000;">sollte</span></em><span style="color: #ff0000;"> laufen, tut es aber nicht. Zu schade.</span></p>
<p>Der <a href="http://www.duden.de/deutsche_sprache/detail.php?nid=113&amp;isbn=978-3-411-06789-3">Duden Korrektor für Openoffice und Staroffice</a> läuft, auch in der aktuellen Version 6.0, nicht ohne weiters unter 64 Bit-Versionen von Linux.</p>
<p>Um der Openoffice-Erweiterung von Duden 64-Bit &#8220;beizubringen&#8221; muss, wie unter <a href="http://www.amazon.de/review/R32OMZPWUIXPXD">diesem Kommentar</a> beschrieben, lediglich das Installationarchiv leicht angepasst werden. Mit einem ZIP-fähigem Archivmanager muss die Datei <code>description.xml</code> im Wurzelverzeichnis der Datei <code>duden-korrektor-openoffice.oxt</code> angepasst werden.</p>
<p>Das Attribut <code>value</code> des Elements <code>platform</code> muss angepasst werden. Aus dem dortigen <code>&lt;platform value="linux_x86" /&gt;</code> macht man einfach ein <code>&lt;platform value="all" /&gt;</code>. Damit lässt sich die Erweiterung auch unter 64-Bit Systemen installieren.</p>
<p>Einen weiteres Problem hatte ich, als Openoffice bei der Installation der Erweiterung das fehlen einer Java-Bibliothek namens <code>LuceneHelpWrapper.jar</code> bemängelte. Unter Ubuntu Karmic hilft, so <a href="http://lodahl.blogspot.com/2009/09/export-to-freemind-part-iii.html?showComment=1253277902486#c5299196304814716050">dieser Kommentar</a>, das Installieren des Paketes <code>openoffice-java-common</code>.</p>
<p>Soweit ich sagen kann läuft der Duden Korrektor für Openoffice mit etwas Hilfe auch unter 64 Bit-Systemen fehlerfrei. Ob dies auch unter Windows ein Problem ist bzw. der Lösungsansatz dort auch funktioniert kann ich, mangels Testsystem, nicht sagen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linkhal.de/blog/2009/12/duden-korrektor-openoffice-plugin-unter-64-bit-linux-betreiben/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Echtzeitkollaboration mit Etherpad</title>
		<link>http://www.linkhal.de/blog/2009/12/echtzeitkollaboration-mit-etherpad/</link>
		<comments>http://www.linkhal.de/blog/2009/12/echtzeitkollaboration-mit-etherpad/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 09:52:34 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[echtzeitkollaboration]]></category>
		<category><![CDATA[etherpad]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://linkhal.de/blog/?p=212</guid>
		<description><![CDATA[Mit Etherpad, ein Echtzeit-Kollaborations-Notpad-Dingsi, wurde von Google unter einer OSS-Lizenz veröffentlicht. Dies könnte die Wartezeit auf einen eigenen Google-Wave Server etwas versüßen. Auf Piratepad.net kann man das ganze schonmal ausprobieren. via Slashdot Technology Story &#124; Google Open Sources Etherpad, Piratepad &#8230; <a href="http://www.linkhal.de/blog/2009/12/echtzeitkollaboration-mit-etherpad/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Mit Etherpad, ein Echtzeit-Kollaborations-Notpad-Dingsi, wurde von Google unter einer OSS-Lizenz veröffentlicht. Dies könnte die Wartezeit auf einen eigenen Google-Wave Server etwas versüßen. Auf <a title="Etherpad-Instanz der schwedischen Piratenpartei" href="http://piratepad.net">Piratepad.net</a> kann man das ganze schonmal ausprobieren.</p>
<p>via <a href="http://tech.slashdot.org/story/09/12/19/0059221/Google-Open-Sources-Etherpad-Piratepad-Launches?from=rss&amp;utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+Slashdot%2Fslashdot+(Slashdot)">Slashdot Technology Story | Google Open Sources Etherpad, Piratepad Launches</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linkhal.de/blog/2009/12/echtzeitkollaboration-mit-etherpad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Angewandter Aberglaube</title>
		<link>http://www.linkhal.de/blog/2009/12/angewandter-aberglaube/</link>
		<comments>http://www.linkhal.de/blog/2009/12/angewandter-aberglaube/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 09:32:10 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[aberglaube]]></category>
		<category><![CDATA[abglaube]]></category>
		<category><![CDATA[heilkunde]]></category>
		<category><![CDATA[körperverletzung]]></category>

		<guid isPermaLink="false">http://linkhal.de/blog/?p=206</guid>
		<description><![CDATA[Wegen gefährlicher Körperverletzung wurde ein 62-jähriger Heilpraktiker aus dem Ostallgäu zu einer Haftstrafe von zwei Jahren und sechs Monaten verurteilt. Das Kaufbeurer Schöffengericht hielt es für erwiesen, dass der Mann im Mai 2008 einem Urlauber-Ehepaar aus dem Raum Trier zum &#8230; <a href="http://www.linkhal.de/blog/2009/12/angewandter-aberglaube/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>Wegen gefährlicher Körperverletzung wurde ein 62-jähriger Heilpraktiker aus dem Ostallgäu zu einer Haftstrafe von zwei Jahren und sechs Monaten verurteilt. Das Kaufbeurer Schöffengericht hielt es für erwiesen, dass der Mann im Mai 2008 einem Urlauber-Ehepaar aus dem Raum Trier zum abrupten Absetzen der Epilepsie-Medikamente seines behinderten Sohnes (28) geraten hatte.</p></blockquote>
<p>via <a href="http://blog.thebrights.de/2009/12/19/heilpraktische-lebensgefahr/">Heilpraktische Lebensgefahr « Brights – Die Natur des Zweifels</a>.</p>
<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.com/v/HMGIbOGu8q0&amp;hl=de_DE&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/HMGIbOGu8q0&amp;hl=de_DE&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linkhal.de/blog/2009/12/angewandter-aberglaube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>persönliche Freigaben unter Ubuntu</title>
		<link>http://www.linkhal.de/blog/2009/11/personliche-freigaben-unter-ubuntu/</link>
		<comments>http://www.linkhal.de/blog/2009/11/personliche-freigaben-unter-ubuntu/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 18:32:40 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[freigabe]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[koala]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://memmaker.wordpress.com/?p=185</guid>
		<description><![CDATA[Habe soeben das Phänomen gehabt das die Nautilus/Gnome Freigabeansicht eines Ordners behauptet hat dieser wäre nicht freigegeben, der Ordner es aber eindeutig war. Solche Phantomfreigaben lassen sich durch löschen der jeweiligen Datei unter /var/lib/samba/usershares beseitigen. Für persönliche Freigaben gibt es &#8230; <a href="http://www.linkhal.de/blog/2009/11/personliche-freigaben-unter-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Habe soeben das Phänomen gehabt das die Nautilus/Gnome Freigabeansicht eines Ordners behauptet hat dieser wäre nicht freigegeben, der Ordner es aber eindeutig war. Solche Phantomfreigaben lassen sich durch löschen der jeweiligen Datei unter <strong>/var/lib/samba/usershares</strong> beseitigen.</p>
<blockquote><p>Für persönliche Freigaben gibt es keinen Eintrag in der allgemeinen Konfigurationsdatei <strong>/etc/samba/smb.conf</strong>. Statt dessen wird für jede dieser Freigaben im Ordner <strong>/var/lib/samba/usershares/</strong> eine eigene kleine Textdatei mit den nötigen Angaben angelegt. Diese ist Besitz des jeweiligen Benutzers; nur dieser kann sie verändern oder löschen.</p></blockquote>
<p>via <a href="http://wiki.ubuntuusers.de/Samba_Server_GNOME">Samba Server GNOME › Wiki › ubuntuusers.de</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linkhal.de/blog/2009/11/personliche-freigaben-unter-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kartierung mit dem T-Mobile G1</title>
		<link>http://www.linkhal.de/blog/2009/02/kartierung-mit-dem-t-mobile-g1/</link>
		<comments>http://www.linkhal.de/blog/2009/02/kartierung-mit-dem-t-mobile-g1/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 16:41:54 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[gpx]]></category>
		<category><![CDATA[kml]]></category>
		<category><![CDATA[mytracks]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[technik]]></category>

		<guid isPermaLink="false">http://memmaker.wordpress.com/?p=174</guid>
		<description><![CDATA[Mit der Android-Applikation My Tracks soll man wohl hauptsächlich seine Wander- und Laufrouten aufzeichnen können. Garnix für mich Antisportler. Aber das Programm exportiert die aufgezeichneten Strecken auch wunderbar nach KML oder GPX, letzteres eignet sich seine zurückgelegten Strecken zum OpenStreetMap &#8230; <a href="http://www.linkhal.de/blog/2009/02/kartierung-mit-dem-t-mobile-g1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Mit der Android-Applikation <a title="offizielle My Tracks Webseite" href="http://mytracks.appspot.com/">My Tracks</a> soll man wohl hauptsächlich seine Wander- und Laufrouten aufzeichnen können. Garnix für mich Antisportler. Aber das Programm exportiert die aufgezeichneten Strecken auch wunderbar nach <a title="definition KML" href="http://de.wikipedia.org/wiki/Keyhole_Markup_Language">KML</a> oder <a title="definition GPX" href="http://de.wikipedia.org/wiki/GPX">GPX</a>, letzteres eignet sich seine zurückgelegten Strecken zum <a title="offizielle Webseite von OpenStreetMap" href="http://openstreetmap.org/">OpenStreetMap Projekt</a> hochzuladen. So kann im Prinzip jeder mit einem GPS-fähigen Andrid Handy mithelfen das freie Kartenmaterial zu verbessern.</p>
<p>Meinen ersten glorreichen Versuch könnt ihr <a title="Mein erster Trace auf Openstreetmaps.org" href="http://openstreetmap.org/user/mknudsen/traces/314181">hier</a> bestaunen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linkhal.de/blog/2009/02/kartierung-mit-dem-t-mobile-g1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

