<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Dominik Schürmann</title>
	<atom:link href="http://dominikschuermann.de/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://dominikschuermann.de</link>
	<description>Research, Android, Grails, Debian and more...</description>
	<lastBuildDate>Sun, 01 Apr 2012 12:09:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Syncing Android with ownCloud by Syncing Android using SyncML with Funambol Client &#124; Dominik Schürmann</title>
		<link>http://dominikschuermann.de/index.php/2012/04/syncing-android-with-owncloud/comment-page-1/#comment-11561</link>
		<dc:creator>Syncing Android using SyncML with Funambol Client &#124; Dominik Schürmann</dc:creator>
		<pubDate>Sun, 01 Apr 2012 12:09:06 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=325#comment-11561</guid>
		<description>[...] Please read &#8220;Syncing Android with ownCloud&#8221; for my current [...]</description>
		<content:encoded><![CDATA[<p>[...] Please read &#8220;Syncing Android with ownCloud&#8221; for my current [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ThinkPad X200 Wacom Tablet for Debian Testing by Jiska Classen</title>
		<link>http://dominikschuermann.de/index.php/2010/05/thinkpad-x200-tablet-for-debian-testing/comment-page-1/#comment-11479</link>
		<dc:creator>Jiska Classen</dc:creator>
		<pubDate>Wed, 28 Mar 2012 23:10:20 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=162#comment-11479</guid>
		<description>hi,

the xsetwacom syntax changed, this script includes the new one.
furtheremore this script checks if an external output is connectet. the external output should not be rotated :) this script was testet on my x200t with a current debian testing.


#!/bin/bash

# config
output=&quot;LVDS1&quot;
external=&quot;VGA1&quot;
mode_output=&quot;1280x800&quot;
mode_external=&quot;1024x768&quot;


 
# get current rotation
current=`xrandr --verbose &#124; grep &quot;$output&quot; &#124; sed &quot;s/^[^ ]* [^ ]* [^ ]* ([^(]*) \([a-z]*\).*/\1/&quot;`
case $current in
  normal)    geom=0;;
  left)      geom=1;;
  inverted)  geom=2;;
  right)     geom=3;;
esac
 
if [ &quot;$1&quot; == &quot;invert&quot; ] &#124;&#124; [ &quot;$1&quot; == &quot;flip&quot; ];
then
 
  # based on current rotation set new rotation
  if [ &quot;$1&quot; == &quot;invert&quot; ];
  then
 
    # invert
    case $geom in
      0)  wacom=half; xrandr=inverted;;
      1)  wacom=cw; xrandr=right;;
      2)  wacom=none; xrandr=normal;;
      3)  wacom=ccw; xrandr=left;;
    esac
 
  else
 
    # flip
    case $geom in
      0)  wacom=cw; xrandr=right;;
      1)  wacom=half; xrandr=inverted;;
      2)  wacom=ccw; xrandr=left;;
      3)  wacom=none; xrandr=normal;;
    esac
 
  fi
 
 

  # rotate wacom
  xsetwacom --set &quot;Serial Wacom Tablet stylus&quot; Rotate &quot;$wacom&quot;
  xsetwacom --set &quot;Serial Wacom Tablet eraser&quot; Rotate &quot;$wacom&quot;
  xsetwacom --set &quot;Serial Wacom Tablet touch&quot; Rotate &quot;$wacom&quot;
 

  #check if external monitor is connected &amp; configure
  if [ &quot;$(xrandr --verbose &#124; grep &quot;$external&quot; &#124; head -1 &#124; awk &#039;{print $2}&#039;)&quot; == &quot;connected&quot; ] ; then
    xrandr --output $output --rotate $xrandr --output $external --rotate normal
    xrandr --output $output --mode $mode_external --output $external --mode $mode_external --same-as $output
    xsetwacom --set &quot;Serial Wacom Tablet stylus&quot; Area 2560 0 24000 16520
  else
    xrandr --output $output --rotate $xrandr
    xrandr --output $output --mode $mode_output
    xsetwacom --set &quot;Serial Wacom Tablet stylus&quot; ResetArea
  fi

 
else
 
  echo &quot;possible parameters: flip, invert&quot;
 
fi</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>the xsetwacom syntax changed, this script includes the new one.<br />
furtheremore this script checks if an external output is connectet. the external output should not be rotated <img src='http://dominikschuermann.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  this script was testet on my x200t with a current debian testing.</p>
<p>#!/bin/bash</p>
<p># config<br />
output=&#8221;LVDS1&#8243;<br />
external=&#8221;VGA1&#8243;<br />
mode_output=&#8221;1280&#215;800&#8243;<br />
mode_external=&#8221;1024&#215;768&#8243;</p>
<p># get current rotation<br />
current=`xrandr &#8211;verbose | grep &#8220;$output&#8221; | sed &#8220;s/^[^ ]* [^ ]* [^ ]* ([^(]*) \([a-z]*\).*/\1/&#8221;`<br />
case $current in<br />
  normal)    geom=0;;<br />
  left)      geom=1;;<br />
  inverted)  geom=2;;<br />
  right)     geom=3;;<br />
esac</p>
<p>if [ "$1" == "invert" ] || [ "$1" == "flip" ];<br />
then</p>
<p>  # based on current rotation set new rotation<br />
  if [ "$1" == "invert" ];<br />
  then</p>
<p>    # invert<br />
    case $geom in<br />
      0)  wacom=half; xrandr=inverted;;<br />
      1)  wacom=cw; xrandr=right;;<br />
      2)  wacom=none; xrandr=normal;;<br />
      3)  wacom=ccw; xrandr=left;;<br />
    esac</p>
<p>  else</p>
<p>    # flip<br />
    case $geom in<br />
      0)  wacom=cw; xrandr=right;;<br />
      1)  wacom=half; xrandr=inverted;;<br />
      2)  wacom=ccw; xrandr=left;;<br />
      3)  wacom=none; xrandr=normal;;<br />
    esac</p>
<p>  fi</p>
<p>  # rotate wacom<br />
  xsetwacom &#8211;set &#8220;Serial Wacom Tablet stylus&#8221; Rotate &#8220;$wacom&#8221;<br />
  xsetwacom &#8211;set &#8220;Serial Wacom Tablet eraser&#8221; Rotate &#8220;$wacom&#8221;<br />
  xsetwacom &#8211;set &#8220;Serial Wacom Tablet touch&#8221; Rotate &#8220;$wacom&#8221;</p>
<p>  #check if external monitor is connected &amp; configure<br />
  if [ "$(xrandr --verbose | grep "$external" | head -1 | awk '{print $2}')" == "connected" ] ; then<br />
    xrandr &#8211;output $output &#8211;rotate $xrandr &#8211;output $external &#8211;rotate normal<br />
    xrandr &#8211;output $output &#8211;mode $mode_external &#8211;output $external &#8211;mode $mode_external &#8211;same-as $output<br />
    xsetwacom &#8211;set &#8220;Serial Wacom Tablet stylus&#8221; Area 2560 0 24000 16520<br />
  else<br />
    xrandr &#8211;output $output &#8211;rotate $xrandr<br />
    xrandr &#8211;output $output &#8211;mode $mode_output<br />
    xsetwacom &#8211;set &#8220;Serial Wacom Tablet stylus&#8221; ResetArea<br />
  fi</p>
<p>else</p>
<p>  echo &#8220;possible parameters: flip, invert&#8221;</p>
<p>fi</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Syncing Android using SyncML with Funambol Client by Dominik</title>
		<link>http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/comment-page-1/#comment-11425</link>
		<dc:creator>Dominik</dc:creator>
		<pubDate>Mon, 26 Mar 2012 20:25:44 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=241#comment-11425</guid>
		<description>Hi Uwe,
das ist eine gute Idee. Darauf bin ich bis jetzt noch nicht gekommen. Das ist so gut wie kein Aufwand für mich nachdem ich Birthday Adapter programmiert habe. Ich werde aber trotzdem erst ab dem 4.4 nach meiner letzten Prüfung dieses Semester dazu kommen.

Vielleicht komme ich dann auch mal dazu ein paar neue Android Artikel im Blog zu veröffentlichen :)</description>
		<content:encoded><![CDATA[<p>Hi Uwe,<br />
das ist eine gute Idee. Darauf bin ich bis jetzt noch nicht gekommen. Das ist so gut wie kein Aufwand für mich nachdem ich Birthday Adapter programmiert habe. Ich werde aber trotzdem erst ab dem 4.4 nach meiner letzten Prüfung dieses Semester dazu kommen.</p>
<p>Vielleicht komme ich dann auch mal dazu ein paar neue Android Artikel im Blog zu veröffentlichen <img src='http://dominikschuermann.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Syncing Android using SyncML with Funambol Client by Uwe</title>
		<link>http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/comment-page-1/#comment-11328</link>
		<dc:creator>Uwe</dc:creator>
		<pubDate>Thu, 22 Mar 2012 11:04:16 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=241#comment-11328</guid>
		<description>Hi,
meine Idealvostellung zur Google-Vermeidung wären lokale Android-Kalender. Soche sind bei vielen Original-ROMs dabei (z.B. bei HTC), bei CyanogenMod ist die Kalender-Applikation ohne Google-Zugang nicht nutzbar.
Vielleicht ist der Birthday-Adapter ja eine gute Basis für einen LocalCalendarProvider?

Grüße
Uwe</description>
		<content:encoded><![CDATA[<p>Hi,<br />
meine Idealvostellung zur Google-Vermeidung wären lokale Android-Kalender. Soche sind bei vielen Original-ROMs dabei (z.B. bei HTC), bei CyanogenMod ist die Kalender-Applikation ohne Google-Zugang nicht nutzbar.<br />
Vielleicht ist der Birthday-Adapter ja eine gute Basis für einen LocalCalendarProvider?</p>
<p>Grüße<br />
Uwe</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Syncing Android using SyncML with Funambol Client by Oscar</title>
		<link>http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/comment-page-1/#comment-10000</link>
		<dc:creator>Oscar</dc:creator>
		<pubDate>Thu, 02 Feb 2012 19:33:37 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=241#comment-10000</guid>
		<description>Hi,

I&#039;m using the latest version of Astrid (3.9.2.3) and the tasks synchronization with funambol is ugly... (i.e: the first time I think the tasks in funambol, I see them in Astrid, but then I&#039;m not able to refresh them in Astrid. The tasks deletion on the funambol server are not reported in astrid, etc, etc).
Does someone know a functional software on android to deal with funambol tasks?

Thanks.
Regards,
Oscar</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m using the latest version of Astrid (3.9.2.3) and the tasks synchronization with funambol is ugly&#8230; (i.e: the first time I think the tasks in funambol, I see them in Astrid, but then I&#8217;m not able to refresh them in Astrid. The tasks deletion on the funambol server are not reported in astrid, etc, etc).<br />
Does someone know a functional software on android to deal with funambol tasks?</p>
<p>Thanks.<br />
Regards,<br />
Oscar</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Syncing Android using SyncML with Funambol Client by Dominik</title>
		<link>http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/comment-page-1/#comment-9774</link>
		<dc:creator>Dominik</dc:creator>
		<pubDate>Mon, 23 Jan 2012 21:22:50 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=241#comment-9774</guid>
		<description>No, I had similar problems with the tasks, but repeated calendar entries worked for me.

I am currently thinking about switching to http://code.google.com/p/kolab-android/ , which would store the calendar in IMAP folders. The disadvantages are it&#039;s slowness and the fact that tasks are not supported right now.</description>
		<content:encoded><![CDATA[<p>No, I had similar problems with the tasks, but repeated calendar entries worked for me.</p>
<p>I am currently thinking about switching to <a href="http://code.google.com/p/kolab-android/" rel="nofollow">http://code.google.com/p/kolab-android/</a> , which would store the calendar in IMAP folders. The disadvantages are it&#8217;s slowness and the fact that tasks are not supported right now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Syncing Android using SyncML with Funambol Client by Frank</title>
		<link>http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/comment-page-1/#comment-9762</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Mon, 23 Jan 2012 12:50:03 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=241#comment-9762</guid>
		<description>Hi,

I&#039;ve been using this solution for a while to sync between my Android phone and Thunderbird/Lightning on my PC.

There are two issues with my implementation.

First, task items marked as &quot;done&quot; within Astrid, don&#039;t get marked as &quot;done&quot; within Lightning. The opposite direction works as expected.
Second, repeated calendar items such as anniversaries end up with multiple copies of the same event.

Have you experienced (or better yet overcome) these issues?

Best
-Frank</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;ve been using this solution for a while to sync between my Android phone and Thunderbird/Lightning on my PC.</p>
<p>There are two issues with my implementation.</p>
<p>First, task items marked as &#8220;done&#8221; within Astrid, don&#8217;t get marked as &#8220;done&#8221; within Lightning. The opposite direction works as expected.<br />
Second, repeated calendar items such as anniversaries end up with multiple copies of the same event.</p>
<p>Have you experienced (or better yet overcome) these issues?</p>
<p>Best<br />
-Frank</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SpringerLink Bücher herunterladen by Thomas</title>
		<link>http://dominikschuermann.de/index.php/2010/01/springerlink-bucher-herunterladen/comment-page-1/#comment-9351</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Sat, 07 Jan 2012 17:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=93#comment-9351</guid>
		<description>Kennt zufällig jemand auch solche Tools für safari books?</description>
		<content:encoded><![CDATA[<p>Kennt zufällig jemand auch solche Tools für safari books?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Syncing Android using SyncML with Funambol Client by Oliver</title>
		<link>http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/comment-page-1/#comment-8669</link>
		<dc:creator>Oliver</dc:creator>
		<pubDate>Thu, 15 Dec 2011 07:49:44 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=241#comment-8669</guid>
		<description>Hi Dominik,

thanks for your great infos! Helped me a lot.

It looks like that tasks in Astrid don&#039;t work anymore. I am using funambol debug client for Android (10.0.3) and testet the last 5 or 6 versions of Astrid.

Any ideas?

Cheers, Oliver</description>
		<content:encoded><![CDATA[<p>Hi Dominik,</p>
<p>thanks for your great infos! Helped me a lot.</p>
<p>It looks like that tasks in Astrid don&#8217;t work anymore. I am using funambol debug client for Android (10.0.3) and testet the last 5 or 6 versions of Astrid.</p>
<p>Any ideas?</p>
<p>Cheers, Oliver</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Syncing Android using SyncML with Funambol Client by Sync tasks in android with funambol. Using Astrid &#124; manoftherambla</title>
		<link>http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/comment-page-1/#comment-8427</link>
		<dc:creator>Sync tasks in android with funambol. Using Astrid &#124; manoftherambla</dc:creator>
		<pubDate>Thu, 08 Dec 2011 01:31:52 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=241#comment-8427</guid>
		<description>[...] http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/" rel="nofollow">http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VPN Verbindung zur TU Braunschweig unter Debian/Ubuntu by Tommy</title>
		<link>http://dominikschuermann.de/index.php/2010/01/vpn-tu-braunschweig/comment-page-1/#comment-8223</link>
		<dc:creator>Tommy</dc:creator>
		<pubDate>Wed, 30 Nov 2011 19:50:29 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=83#comment-8223</guid>
		<description>Super Beitrag, habe ich vor paar Monaten gefunden und gleich benutzt...
..doch inzwischen ist er nicht ganz so aktuell, bei 64bit-ubuntu und/oder Ubuntu 11.10 (Oneiric Ocelot) ist aptitude nicht drauf ...
zum installieren wird daher:
&quot;sudo apt-get install network-manager-vpnc&quot;
nötig</description>
		<content:encoded><![CDATA[<p>Super Beitrag, habe ich vor paar Monaten gefunden und gleich benutzt&#8230;<br />
..doch inzwischen ist er nicht ganz so aktuell, bei 64bit-ubuntu und/oder Ubuntu 11.10 (Oneiric Ocelot) ist aptitude nicht drauf &#8230;<br />
zum installieren wird daher:<br />
&#8220;sudo apt-get install network-manager-vpnc&#8221;<br />
nötig</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Syncing Android using SyncML with Funambol Client by Dominik</title>
		<link>http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/comment-page-1/#comment-7345</link>
		<dc:creator>Dominik</dc:creator>
		<pubDate>Thu, 27 Oct 2011 06:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=241#comment-7345</guid>
		<description>To sync your notes you have to install OI Notepad and the newest Funambol client debug-release from their website.</description>
		<content:encoded><![CDATA[<p>To sync your notes you have to install OI Notepad and the newest Funambol client debug-release from their website.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Syncing Android using SyncML with Funambol Client by Sonia Hamilton</title>
		<link>http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/comment-page-1/#comment-7343</link>
		<dc:creator>Sonia Hamilton</dc:creator>
		<pubDate>Thu, 27 Oct 2011 04:50:19 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=241#comment-7343</guid>
		<description>Thanks Dominik, this is really useful - being able to sync Tasks as well as Contacts and Calendar.

Would you know of anyway to sync notes/memos? I&#039;m using memotoo.com.</description>
		<content:encoded><![CDATA[<p>Thanks Dominik, this is really useful &#8211; being able to sync Tasks as well as Contacts and Calendar.</p>
<p>Would you know of anyway to sync notes/memos? I&#8217;m using memotoo.com.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removing Restrictions like Printing from PDFs on Linux by Stefan</title>
		<link>http://dominikschuermann.de/index.php/2011/03/removing-restrictions-like-printing-from-pdfs-in-linux/comment-page-1/#comment-6735</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Thu, 20 Oct 2011 20:44:26 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=254#comment-6735</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails Bootstrap based on environment by Dominik</title>
		<link>http://dominikschuermann.de/index.php/2009/11/grails-bootstrap-based-on-environment/comment-page-1/#comment-6335</link>
		<dc:creator>Dominik</dc:creator>
		<pubDate>Sun, 09 Oct 2011 20:58:02 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=43#comment-6335</guid>
		<description>Funktioniert das öffnen der Datei nicht weil der Pfad falsch ist? Die Log-Dateien sollten ja darüber Auskunft geben.

Schau dir mal das Beipsiel unter http://jermdemo.blogspot.com/2009/05/loading-files-in-grails-bootstrap.html wenn du noch Probleme hast.</description>
		<content:encoded><![CDATA[<p>Funktioniert das öffnen der Datei nicht weil der Pfad falsch ist? Die Log-Dateien sollten ja darüber Auskunft geben.</p>
<p>Schau dir mal das Beipsiel unter <a href="http://jermdemo.blogspot.com/2009/05/loading-files-in-grails-bootstrap.html" rel="nofollow">http://jermdemo.blogspot.com/2009/05/loading-files-in-grails-bootstrap.html</a> wenn du noch Probleme hast.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails Bootstrap based on environment by Andreas Baumgart</title>
		<link>http://dominikschuermann.de/index.php/2009/11/grails-bootstrap-based-on-environment/comment-page-1/#comment-6282</link>
		<dc:creator>Andreas Baumgart</dc:creator>
		<pubDate>Thu, 06 Oct 2011 15:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=43#comment-6282</guid>
		<description>Hallo Herr Schürmann,
vielleicht darf ich Sie zu Ihrem Artikel noch etwas verwandtes fragen:
Ich versuche gerade grails zu deployen (tomcat6) und habe folgendes Problem:

Meine Bootstrap-Routine streikt beim Einlesen einer xml-Datei (Quelldatei)
          def f = new File(&quot;./src/data/myDictionary.xml&quot;)
Die Datei habe ich über grails.war.resources mit eingepackt und sie ist im webapps folder (/var/lib/tomcat6/webapps/myApplicaiton/src/data/myDictionary.xml) . Aber wie stelle ich es an, dass Tomcat sie dort auch findet?
Viele Grüße
Andreas Baumgart</description>
		<content:encoded><![CDATA[<p>Hallo Herr Schürmann,<br />
vielleicht darf ich Sie zu Ihrem Artikel noch etwas verwandtes fragen:<br />
Ich versuche gerade grails zu deployen (tomcat6) und habe folgendes Problem:</p>
<p>Meine Bootstrap-Routine streikt beim Einlesen einer xml-Datei (Quelldatei)<br />
          def f = new File(&#8220;./src/data/myDictionary.xml&#8221;)<br />
Die Datei habe ich über grails.war.resources mit eingepackt und sie ist im webapps folder (/var/lib/tomcat6/webapps/myApplicaiton/src/data/myDictionary.xml) . Aber wie stelle ich es an, dass Tomcat sie dort auch findet?<br />
Viele Grüße<br />
Andreas Baumgart</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Syncing Android using SyncML with Funambol Client by Barney Stinson</title>
		<link>http://dominikschuermann.de/index.php/2011/01/syncing-android-using-syncml-with-funambol-client/comment-page-1/#comment-6279</link>
		<dc:creator>Barney Stinson</dc:creator>
		<pubDate>Thu, 06 Oct 2011 12:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=241#comment-6279</guid>
		<description>As with ActiveSync

an alternative is hotmail live: email, calendar, contacts

The email application bundled in CyanogenMod handles this less ungracefully than the OTA versions served up by any [American] carrier

If you simply must have funambol then a better client is the F-droid.org build of it.

P.S. I love your AdAway.  I plan to paypal you a beer soon.</description>
		<content:encoded><![CDATA[<p>As with ActiveSync</p>
<p>an alternative is hotmail live: email, calendar, contacts</p>
<p>The email application bundled in CyanogenMod handles this less ungracefully than the OTA versions served up by any [American] carrier</p>
<p>If you simply must have funambol then a better client is the F-droid.org build of it.</p>
<p>P.S. I love your AdAway.  I plan to paypal you a beer soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SpringerLink Bücher herunterladen by Daniel</title>
		<link>http://dominikschuermann.de/index.php/2010/01/springerlink-bucher-herunterladen/comment-page-1/#comment-5157</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Wed, 10 Aug 2011 09:43:38 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=93#comment-5157</guid>
		<description>Ich verwende den VPN-Client für Windows 7 und komme auch problemlos damit ins uni netz. Nur erkennt SpringerLink mich nicht als Mitglied der TU BS. Und das obwohl unten auf der Seite von SpringerLink nicht mehr meine IP von &quot;zu Hause&quot; angezeigt wird, sondern eine andere, sodass ich davon ausgehe, im Uninetz zu sein und auch darüber zu SpringerLink die Verbindung aufzubauen.
Ich verwende Firefox in der aktuellen Version und nur die Windowseigene Firewall. Irgendwelche Ideen?
lg Daniel</description>
		<content:encoded><![CDATA[<p>Ich verwende den VPN-Client für Windows 7 und komme auch problemlos damit ins uni netz. Nur erkennt SpringerLink mich nicht als Mitglied der TU BS. Und das obwohl unten auf der Seite von SpringerLink nicht mehr meine IP von &#8220;zu Hause&#8221; angezeigt wird, sondern eine andere, sodass ich davon ausgehe, im Uninetz zu sein und auch darüber zu SpringerLink die Verbindung aufzubauen.<br />
Ich verwende Firefox in der aktuellen Version und nur die Windowseigene Firewall. Irgendwelche Ideen?<br />
lg Daniel</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SpringerLink Bücher herunterladen by James Bond</title>
		<link>http://dominikschuermann.de/index.php/2010/01/springerlink-bucher-herunterladen/comment-page-1/#comment-4966</link>
		<dc:creator>James Bond</dc:creator>
		<pubDate>Thu, 28 Jul 2011 23:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=93#comment-4966</guid>
		<description>Hello,

another solution for downloading whole books on Springerlink and save it to a pdf file is the Springerlink-Downloader: http://sebastiankusch.de/springerlink/ 

Grzz Sebastian</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>another solution for downloading whole books on Springerlink and save it to a pdf file is the Springerlink-Downloader: <a href="http://sebastiankusch.de/springerlink/" rel="nofollow">http://sebastiankusch.de/springerlink/</a> </p>
<p>Grzz Sebastian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SpringerLink Bücher herunterladen by Brater</title>
		<link>http://dominikschuermann.de/index.php/2010/01/springerlink-bucher-herunterladen/comment-page-1/#comment-4214</link>
		<dc:creator>Brater</dc:creator>
		<pubDate>Sat, 18 Jun 2011 12:53:27 +0000</pubDate>
		<guid isPermaLink="false">http://dominikschuermann.de/?p=93#comment-4214</guid>
		<description>Wem die Bastelei zu kompliziert ist (und Windoofs hat), sollte sich das hier mal anschauen: http://code.google.com/p/springer-loader/</description>
		<content:encoded><![CDATA[<p>Wem die Bastelei zu kompliziert ist (und Windoofs hat), sollte sich das hier mal anschauen: <a href="http://code.google.com/p/springer-loader/" rel="nofollow">http://code.google.com/p/springer-loader/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

