<?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>punker76</title>
	<atom:link href="http://jkarger.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://jkarger.de</link>
	<description>Punk&#039;s not dead!</description>
	<lastBuildDate>Thu, 17 May 2012 18:13:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>My first great Arduino project ;-)</title>
		<link>http://jkarger.de/2012/05/17/my-first-great-arduino-project/</link>
		<comments>http://jkarger.de/2012/05/17/my-first-great-arduino-project/#comments</comments>
		<pubDate>Wed, 16 May 2012 22:57:01 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[arduino]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=417</guid>
		<description><![CDATA[He that&#8217;s cool: I finished my first great arduino project: Solar Power measurement Ok, it&#8217;s a simple project but the learning effect is good. Read the analog signal and display the voltage value on a lcd (LCD4884). That&#8217;s it.]]></description>
			<content:encoded><![CDATA[<p>He that&#8217;s cool: I finished my first great arduino project: Solar Power measurement <img src='http://jkarger.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
Ok, it&#8217;s a simple project but the learning effect is good. Read the analog signal and display the voltage value on a lcd (LCD4884).<br />
That&#8217;s it.</p>
<pre class="brush: cpp; title: ; notranslate">
/*
  Here is my simple
 up to 5V Solar Power measurement sketch...
 version 0.1

 use it with your own risk!

 Any suggestions are welcome.
 E-mail: punkerat76 [at] jkarger [dot] de
 */

#include &quot;LCD4884.h&quot;

void setup()
{
  Serial.begin(9600);

  // we measure up to 5V
  analogReference(DEFAULT);

  lcd.LCD_init();
  lcd.LCD_clear();

  lcd.backlight(OFF); //Turn off the backlight

  lcd.LCD_write_string(5, 0, &quot;Solar Power&quot;, MENU_NORMAL);
}

/* loop */

void loop()
{
  solar_power();
  delay(900);
}

/* functions */

int analoginput = 5; // our analog pin
int analogamount = 0; // stores incoming value
int old_analogamount = -1;
float voltage = 0; // used to store voltage value
float old_voltage = -1;

void solar_power()
{
  char buffer[100];

  analogamount = analogRead(analoginput);

  if (old_analogamount != analogamount) {
    old_analogamount = analogamount;

    sprintf(buffer,&quot;%5d on A%d&quot;, analogamount, analoginput);
    Serial.println(buffer);
    sprintf(buffer,&quot;%5d&quot;, analogamount);
    lcd.LCD_write_string(10, 2, buffer, MENU_NORMAL);
    sprintf(buffer,&quot;on A%d&quot;, analoginput);
    lcd.LCD_write_string(45, 2, buffer, MENU_NORMAL);

    voltage = analogamount * 5.0 / 1024.0; // in volts
    if (old_voltage != voltage) {
      old_voltage = voltage;

      dtostrf(voltage, 5, 3, buffer);
      Serial.print(&quot;voltage on analog input (V): &quot;);
      Serial.println(buffer);
      lcd.LCD_write_string(10, 4, buffer, MENU_NORMAL);
      lcd.LCD_write_string(45, 4, &quot;V&quot;, MENU_NORMAL);

      if (voltage &gt; 0.2) {
        // we have enough power, hehe turn the lights on!!!
        lcd.backlight(ON);
      }
      else {
        lcd.backlight(OFF);
      }
    }
  }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2012/05/17/my-first-great-arduino-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download-Abzockportale opendownload &amp; Co</title>
		<link>http://jkarger.de/2012/03/08/download-abzockportale-opendownload/</link>
		<comments>http://jkarger.de/2012/03/08/download-abzockportale-opendownload/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 20:22:50 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[abo]]></category>
		<category><![CDATA[abofalle]]></category>
		<category><![CDATA[abzocke]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[opendownload]]></category>
		<category><![CDATA[softwaresammler]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=409</guid>
		<description><![CDATA[eigentlich sollte es mittlerweile jeder durch presse und fernsehen wissen! trotzdem fallen immer wieder teils unerfahrene aber auch erfahrene internet nutzer auf diese portale herein. wenn man sich die (unten aufgeführten) portale mal genau anschaut gleichen die sich wie ein ei dem anderen. bitte, bitte, bitte, wer diesen eintrag hier liest, fallt niemals auf solche [...]]]></description>
			<content:encoded><![CDATA[<p>eigentlich sollte es mittlerweile jeder durch presse und fernsehen wissen!<br />
trotzdem fallen immer wieder teils unerfahrene aber auch erfahrene internet nutzer auf diese portale herein.<br />
wenn man sich die (unten aufgeführten) portale mal genau anschaut gleichen die sich wie ein ei dem anderen.<br />
bitte, bitte, bitte, wer diesen eintrag hier liest, fallt niemals auf solche &#8220;pseudo freeware sammlung ich helf dir&#8221; portale herein!!!</p>
<p>das hier sind nur ein paar davon, es gibt mit sicherheit noch mehr!!!</p>
<p style="padding-left: 30px;">www.downloadsammlung.de<br />
www.opendownload.de<br />
www.software-und-tools.de<br />
www.desktop-downloads.de<br />
www.softwaresammler.de</p>
<p>hier gibts noch mehr informationen dazu</p>
<p><a href="http://www.abzocknews.de/2009/06/25/softwaresammler-de-der-content-services-limited-der-nachfolger-von-opendownload-de/" target="_blank">hier</a>, <a href="http://www.abzocknews.de/tag/content-services-ltd/" target="_blank">hier</a> und <a href="http://www.abzocknews.de/" target="_blank">hier</a></p>
<p>so weit</p>
<p>der jan</p>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2012/03/08/download-abzockportale-opendownload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What can I do if the System Process is locking files and folders?</title>
		<link>http://jkarger.de/2012/02/22/what-can-i-do-if-the-system-process-is-locking-files-and-folders/</link>
		<comments>http://jkarger.de/2012/02/22/what-can-i-do-if-the-system-process-is-locking-files-and-folders/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 13:14:14 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[tips&tricks]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[application experience]]></category>
		<category><![CDATA[lock]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[unlocker]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=383</guid>
		<description><![CDATA[The problem shows up when a file can not be deleted or overwritten. The system process (PID = 4) captures it for about a minute, then it is possible to delete or rename a file. The problem occurs on my Windows 7 64-bit machine, I can&#8217;t say whether this occurs under Vista or other operating systems. If you are ever even been in this situation has caused you [...]]]></description>
			<content:encoded><![CDATA[<p>The problem shows up when a file can not be deleted or overwritten. The system process (PID = 4) captures it for about a minute, then it is possible to delete or rename a file. The problem occurs on my Windows 7 64-bit machine, I can&#8217;t say whether this occurs under Vista or other operating systems.</p>
<p>If you are ever even been in this situation has caused you gray hair, then you can use the following tip.</p>
<p style="padding-left: 30px;">First you can try the freeware tool <a title="Unlocker" href="http://www.filehippo.com/download_unlocker/" target="_blank">Unlocker</a> to unlock the file.</p>
<p>If this does not work, then try this (Possible more Information <a href="http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/fcdde3bc-43a1-4ab6-b0b5-9525fe4e84c8" target="_blank">here</a>):</p>
<p style="padding-left: 30px;">Just turn on the <strong>&#8220;APPLICATION EXPERIENCE SERVICE&#8221;</strong> (<strong>&#8220;Anwendungserfahrung&#8221;</strong>) in your service settings.</p>
<p>This solved my problem, but my gray hairs stay there.</p>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2012/02/22/what-can-i-do-if-the-system-process-is-locking-files-and-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>running &#8211; part 7 and 8</title>
		<link>http://jkarger.de/2012/01/27/running-part-7-and-8/</link>
		<comments>http://jkarger.de/2012/01/27/running-part-7-and-8/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 19:56:24 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[gpx]]></category>
		<category><![CDATA[joggen]]></category>
		<category><![CDATA[runtastic]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=396</guid>
		<description><![CDATA[the next two rounds. part 7 distance: 5,60 km duration: 39m 35s speed: 8,49 km/h kCal: 605 part 8 distance: 8,96 km duration: 1 h 03m 55s speed: 8,41 km/h kCal: 972]]></description>
			<content:encoded><![CDATA[<p>the next two rounds.</p>
<p><em>part 7</em></p>
<p style="padding-left: 30px;">distance: 5,60 km<br />
duration: 39m 35s<br />
speed: 8,49 km/h<br />
kCal: 605</p>
<link rel="stylesheet" type="text/css" href="http://jkarger.de/wp-content/plugins/osm//css/osm_map.css" /><style type="text/css">#map_1 {clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px; left: 0px;}#map_1 img{clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; position: absolute; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px;}</style><div id="map_1" style="width:550px; height:320px; overflow:hidden;padding:0px;border:thin solid black;"><script type="text/javascript" src="http://www.openlayers.org/api/OpenLayers.js"></script><script type="text/javascript" src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"></script><script type="text/javascript">/* <![CDATA[ */(function($) { OpenLayers.ImgPath = "http://jkarger.de/wp-content/plugins/osm/themes/ol/"; map = new OpenLayers.Map ("map_1", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var lmap = new OpenLayers.Layer.OSM.Mapnik("Mapnik");var layerOSM_Attr = new OpenLayers.Layer.Vector("OSM-plugin",{attribution:"<a href=\"http://www.Fotomobil.at/wp-osm-plugin\">OSM plugin</a>"});map.addLayers([lmap, layerOSM_Attr]);    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(6.144,50.888).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,14);  var lgml = new OpenLayers.Layer.GML("runtastic_20120126_1713_Laufen", "http://jkarger.de/wp-content/uploads/gpx/runtastic_20120126_1713_Laufen.gpx", {    format: OpenLayers.Format.GPX,    style: {strokeColor: "blue", strokeWidth: 5, strokeOpacity: 0.5},    projection: new OpenLayers.Projection("EPSG:4326")  });  map.addLayer(lgml);})(jQuery)/* ]]&gt; */ </script></div>
<p><em>part 8</em></p>
<p style="padding-left: 30px;">distance: 8,96 km<br />
duration: 1 h 03m 55s<br />
speed: 8,41 km/h<br />
kCal: 972</p>
<link rel="stylesheet" type="text/css" href="http://jkarger.de/wp-content/plugins/osm//css/osm_map.css" /><style type="text/css">#map_2 {clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px; left: 0px;}#map_2 img{clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; position: absolute; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px;}</style><div id="map_2" style="width:550px; height:320px; overflow:hidden;padding:0px;border:thin solid black;"><script type="text/javascript">/* <![CDATA[ */(function($) { OpenLayers.ImgPath = "http://jkarger.de/wp-content/plugins/osm/themes/ol/"; map = new OpenLayers.Map ("map_2", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var lmap = new OpenLayers.Layer.OSM.Mapnik("Mapnik");var layerOSM_Attr = new OpenLayers.Layer.Vector("OSM-plugin",{attribution:"<a href=\"http://www.Fotomobil.at/wp-osm-plugin\">OSM plugin</a>"});map.addLayers([lmap, layerOSM_Attr]);    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(6.144,50.888).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,14);  var lgml = new OpenLayers.Layer.GML("runtastic_20120127_1735_Laufen", "http://jkarger.de/wp-content/uploads/gpx/runtastic_20120127_1735_Laufen.gpx", {    format: OpenLayers.Format.GPX,    style: {strokeColor: "blue", strokeWidth: 5, strokeOpacity: 0.5},    projection: new OpenLayers.Projection("EPSG:4326")  });  map.addLayer(lgml);})(jQuery)/* ]]&gt; */ </script></div>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2012/01/27/running-part-7-and-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>running &#8211; part 6</title>
		<link>http://jkarger.de/2011/11/21/running-part-6/</link>
		<comments>http://jkarger.de/2011/11/21/running-part-6/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 19:48:08 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[gpx]]></category>
		<category><![CDATA[joggen]]></category>
		<category><![CDATA[runtastic]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=378</guid>
		<description><![CDATA[ok, same route as last time, but held out! distance: 6,27 km duration: 39m 48s kCal: 646]]></description>
			<content:encoded><![CDATA[<p>ok, same route as last time, but held out!</p>
<p style="padding-left: 30px;">
distance: 6,27 km<br />
duration: 39m 48s<br />
kCal: 646
</p>
<link rel="stylesheet" type="text/css" href="http://jkarger.de/wp-content/plugins/osm//css/osm_map.css" /><style type="text/css">#map_3 {clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px; left: 0px;}#map_3 img{clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; position: absolute; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px;}</style><div id="map_3" style="width:550px; height:320px; overflow:hidden;padding:0px;border:thin solid black;"><script type="text/javascript">/* <![CDATA[ */(function($) { OpenLayers.ImgPath = "http://jkarger.de/wp-content/plugins/osm/themes/ol/"; map = new OpenLayers.Map ("map_3", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var lmap = new OpenLayers.Layer.OSM.Mapnik("Mapnik");var layerOSM_Attr = new OpenLayers.Layer.Vector("OSM-plugin",{attribution:"<a href=\"http://www.Fotomobil.at/wp-osm-plugin\">OSM plugin</a>"});map.addLayers([lmap, layerOSM_Attr]);    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(6.151,50.888).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,14);  var lgml = new OpenLayers.Layer.GML("runtastic_20111121_1756_Laufen", "http://jkarger.de/wp-content/uploads/gpx/runtastic_20111121_1756_Laufen.gpx", {    format: OpenLayers.Format.GPX,    style: {strokeColor: "blue", strokeWidth: 5, strokeOpacity: 0.5},    projection: new OpenLayers.Projection("EPSG:4326")  });  map.addLayer(lgml);})(jQuery)/* ]]&gt; */ </script></div>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2011/11/21/running-part-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>syntaxhighlighter for wordpress</title>
		<link>http://jkarger.de/2011/11/10/syntaxhighlighter-for-wordpress/</link>
		<comments>http://jkarger.de/2011/11/10/syntaxhighlighter-for-wordpress/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 22:09:16 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[tips&tricks]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[syntaxhighlighter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=346</guid>
		<description><![CDATA[after a long search i found my prefered syntax highlighter plugin for wordpress. here is a little list of the most used highlighters that can be found at the internet. SyntaxHighlighter Evolved http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/ Better WordPress Syntax (based on GeSHi) http://betterwp.net/wordpress-plugins/bwp-syntax/ WP-Syntax http://wordpress.org/extend/plugins/wp-syntax/ SyntaxHighlighter Plus http://wordpress.org/extend/plugins/syntaxhighlighter-plus/ SyntaxHighlighter2 http://mohanjith.com/2009/03/syntaxhighlighter2.html i choose the SyntaxHighlighter Evolved because the plugin [...]]]></description>
			<content:encoded><![CDATA[<p>after a long search i found my prefered syntax highlighter plugin for wordpress.</p>
<p>here is a little list of the most used highlighters that can be found at the internet.</p>
<ul>
<li>SyntaxHighlighter Evolved<br />
<a href="http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/" target="_blank">http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/</a></li>
<li>Better WordPress Syntax (based on GeSHi)<br />
<a href="http://betterwp.net/wordpress-plugins/bwp-syntax/" target="_blank">http://betterwp.net/wordpress-plugins/bwp-syntax/</a></li>
<li>WP-Syntax<br />
<a href="http://wordpress.org/extend/plugins/wp-syntax/" target="_blank">http://wordpress.org/extend/plugins/wp-syntax/</a></li>
<li>SyntaxHighlighter Plus<br />
<a href="http://wordpress.org/extend/plugins/syntaxhighlighter-plus/" target="_blank">http://wordpress.org/extend/plugins/syntaxhighlighter-plus/</a></li>
<li>SyntaxHighlighter2<br />
<a href="http://mohanjith.com/2009/03/syntaxhighlighter2.html" target="_blank">http://mohanjith.com/2009/03/syntaxhighlighter2.html</a></li>
</ul>
<p>i choose the SyntaxHighlighter Evolved because the plugin does allow XAML code to be added to a post under the language XML and does not let wordpress interpret the <> characters in the added sourcecode.</p>
<p>here is a little example</p>
<pre class="brush: xml; title: ; notranslate">
&lt;Page xmlns=&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation&quot;
      xmlns:x=&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot;
      xmlns:PresentationOptions=&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation/options&quot;&gt;
  &lt;Grid&gt;
    &lt;TextBlock Text=&quot;it works&quot; /&gt;
  &lt;/Grid&gt;
&lt;/Page&gt;
</pre>
<p>here are the ugly code change that i mean</p>
<pre class="brush: xml; title: ; notranslate">
&lt;page xmlns=&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation&quot;
      xmlns:x=&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot;
      xmlns:PresentationOptions=&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation/options&quot;&gt;
  &lt;grid&gt;
    &lt;textblock Text=&quot;it works&quot; /&gt;
  &lt;/grid&gt;
&lt;/page&gt;
</pre>
<p>that&#8217;s it</p>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2011/11/10/syntaxhighlighter-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>running &#8211; part 5</title>
		<link>http://jkarger.de/2011/11/09/running-part-5/</link>
		<comments>http://jkarger.de/2011/11/09/running-part-5/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 21:27:33 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[gpx]]></category>
		<category><![CDATA[joggen]]></category>
		<category><![CDATA[runtastic]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=343</guid>
		<description><![CDATA[the 6 kilometers are done&#8230;&#8230;.YES!!! distance: 6,26 km duration: 38m 59s (2m 9s pause) kCal: 641]]></description>
			<content:encoded><![CDATA[<p>the 6 kilometers are done&#8230;&#8230;.YES!!!</p>
<p style="padding-left: 30px;">
distance: 6,26 km<br />
duration: 38m 59s (2m 9s pause)<br />
kCal: 641
</p>
<link rel="stylesheet" type="text/css" href="http://jkarger.de/wp-content/plugins/osm//css/osm_map.css" /><style type="text/css">#map_4 {clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px; left: 0px;}#map_4 img{clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; position: absolute; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px;}</style><div id="map_4" style="width:550px; height:320px; overflow:hidden;padding:0px;border:thin solid black;"><script type="text/javascript">/* <![CDATA[ */(function($) { OpenLayers.ImgPath = "http://jkarger.de/wp-content/plugins/osm/themes/ol/"; map = new OpenLayers.Map ("map_4", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var lmap = new OpenLayers.Layer.OSM.Mapnik("Mapnik");var layerOSM_Attr = new OpenLayers.Layer.Vector("OSM-plugin",{attribution:"<a href=\"http://www.Fotomobil.at/wp-osm-plugin\">OSM plugin</a>"});map.addLayers([lmap, layerOSM_Attr]);    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(6.151,50.888).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,14);  var lgml = new OpenLayers.Layer.GML("runtastic_20111109_1805_Running_Jogging", "http://jkarger.de/wp-content/uploads/gpx/runtastic_20111109_1805_Running_Jogging.gpx", {    format: OpenLayers.Format.GPX,    style: {strokeColor: "blue", strokeWidth: 5, strokeOpacity: 0.5},    projection: new OpenLayers.Projection("EPSG:4326")  });  map.addLayer(lgml);})(jQuery)/* ]]&gt; */ </script></div>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2011/11/09/running-part-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>automatically generate wpf listview columns</title>
		<link>http://jkarger.de/2011/11/08/automatically-generate-wpf-listview-columns/</link>
		<comments>http://jkarger.de/2011/11/08/automatically-generate-wpf-listview-columns/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 21:16:53 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[stackoverflow]]></category>
		<category><![CDATA[tips&tricks]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[listview]]></category>
		<category><![CDATA[wpf]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=302</guid>
		<description><![CDATA[this code generates automatically listview columns for all properties for the given datatype here is the xaml usage thats it here is my answer at stackoverflow]]></description>
			<content:encoded><![CDATA[<p>this code generates automatically listview columns for all properties for the given datatype</p>
<pre class="brush: csharp; highlight: [4,13,15,16]; title: ; notranslate">
public class BaseListView : ListView
{
  public BaseListView() {
    ItemsSourceProperty.AddOwner(typeof(BaseListView), new FrameworkPropertyMetadata(null, OnItemsSourcePropertyChanged));
  }

  private static void OnItemsSourcePropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e) {
    if (e.OldValue != e.NewValue &amp;&amp; e.NewValue != null) {
      var lv = (BaseListView)dependencyObject;
      var gridView = new GridView();
      lv.View = gridView;
      gridView.AllowsColumnReorder = true;
      var properties = lv.DataType.GetProperties();
      foreach (var pi in properties) {
        var binding = new Binding {Path = new PropertyPath(pi.Name), Mode = BindingMode.OneWay};
        var gridViewColumn = new GridViewColumn() {Header = pi.Name, DisplayMemberBinding = binding};
        gridView.Columns.Add(gridViewColumn);
      }
    }
  }

  public Type DataType { get; set; }
}
</pre>
<p>here is the xaml usage</p>
<pre class="brush: xml; title: ; notranslate">
&lt;Grid&gt;
  &lt;local:BaseListView x:Name=&quot;listView&quot; DataType=&quot;{x:Type DummyType}&quot; ItemsSource=&quot;{Binding Mode=OneWay, Path=DummyTypeList}&quot; /&gt;
&lt;/Grid&gt;
</pre>
<p>thats it</p>
<p>here is my answer at <a href="http://stackoverflow.com/questions/6376280/wpf-binding-in-code" target="_blank">stackoverflow</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2011/11/08/automatically-generate-wpf-listview-columns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>running &#8211; part 4</title>
		<link>http://jkarger.de/2011/11/05/running-part-4/</link>
		<comments>http://jkarger.de/2011/11/05/running-part-4/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 21:03:19 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[gpx]]></category>
		<category><![CDATA[joggen]]></category>
		<category><![CDATA[runtastic]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=293</guid>
		<description><![CDATA[lang, lang ist&#8217;s her&#8230;. nach monatelanger durchsetzungsflaute hatte ich mir heute spontan das ziel gesetzt die 5 km zu knacken! 5,9 km sind es geworden, heraushängende zunge und am boden liegende lunge mit inbegriffen distance: 5,90 km duration: 38m 22s (5m 16s pause) kCal: 614]]></description>
			<content:encoded><![CDATA[<p>lang, lang ist&#8217;s her&#8230;.</p>
<p>nach monatelanger durchsetzungsflaute hatte ich mir heute spontan das ziel gesetzt die 5 km zu knacken!<br />
5,9 km sind es geworden, heraushängende zunge und am boden liegende lunge mit inbegriffen <img src='http://jkarger.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p style="padding-left: 30px;">
distance: 5,90 km<br />
duration: 38m 22s (5m 16s pause)<br />
kCal: 614
</p>
<link rel="stylesheet" type="text/css" href="http://jkarger.de/wp-content/plugins/osm//css/osm_map.css" /><style type="text/css">#map_5 {clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px; left: 0px;}#map_5 img{clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; position: absolute; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px;}</style><div id="map_5" style="width:550px; height:320px; overflow:hidden;padding:0px;border:thin solid black;"><script type="text/javascript">/* <![CDATA[ */(function($) { OpenLayers.ImgPath = "http://jkarger.de/wp-content/plugins/osm/themes/ol/"; map = new OpenLayers.Map ("map_5", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var lmap = new OpenLayers.Layer.OSM.Mapnik("Mapnik");var layerOSM_Attr = new OpenLayers.Layer.Vector("OSM-plugin",{attribution:"<a href=\"http://www.Fotomobil.at/wp-osm-plugin\">OSM plugin</a>"});map.addLayers([lmap, layerOSM_Attr]);    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(6.151,50.888).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,14);  var lgml = new OpenLayers.Layer.GML("runtastic_20111105_1707_Running_Jogging", "http://jkarger.de/wp-content/uploads/gpx/runtastic_20111105_1707_Running_Jogging.gpx", {    format: OpenLayers.Format.GPX,    style: {strokeColor: "blue", strokeWidth: 5, strokeOpacity: 0.5},    projection: new OpenLayers.Projection("EPSG:4326")  });  map.addLayer(lgml);})(jQuery)/* ]]&gt; */ </script></div>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2011/11/05/running-part-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>intercon media abo kündigen</title>
		<link>http://jkarger.de/2011/10/31/intercon-media-abo-kundigen/</link>
		<comments>http://jkarger.de/2011/10/31/intercon-media-abo-kundigen/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 10:32:58 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[abo]]></category>
		<category><![CDATA[abofalle]]></category>
		<category><![CDATA[handy]]></category>
		<category><![CDATA[interconmedia]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=224</guid>
		<description><![CDATA[oh je, ja, mich hat es erwischt! ich habe ein tolles abo für 4,99 pro woche bei der http://www.interconmedia.at/ abgeschlossen. wie, keine ahnung, aber habe es auch viel zu spät gemerkt und ärgere mich deshalb doppelt und dreifach! wenn ihr auch so ein tolles abo habt (oder es noch nicht gemerkt habt, dann aber ganz schnell auf [...]]]></description>
			<content:encoded><![CDATA[<p>oh je,</p>
<p>ja, mich hat es erwischt! ich habe ein tolles abo für 4,99 pro woche bei der <a href="http://www.interconmedia.at/">http://www.interconmedia.at/</a> abgeschlossen. wie, keine ahnung, aber habe es auch viel zu spät gemerkt und ärgere mich deshalb doppelt und dreifach!</p>
<p>wenn ihr auch so ein tolles abo habt (oder es noch nicht gemerkt habt, dann aber ganz schnell auf eure handy rechungen schaun), dann öffnet ihr mit eurem handy (wlan sollte ausgeschaltet sein) folgende seite:</p>
<p><a href="http://quickpay.carmunity.de/subscription/m/list/1" rel="nofollow">http://quickpay.carmunity.de/subscription/m/list/1</a></p>
<p>dort habt ihr eine übersicht über die abgeschlossenen abos und könnt diese in ein paar schritten sofort kündigen!</p>
<p>es geht aber auch direkt auf der seite <a href="http://www.interconmedia.at/" rel="nofollow">http://www.interconmedia.at</a>, dort handynummer eingeben und passwort holen.</p>
<p>so weit</p>
<p>der jan</p>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2011/10/31/intercon-media-abo-kundigen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>running – part 3</title>
		<link>http://jkarger.de/2011/04/17/running-%e2%80%93-part-3/</link>
		<comments>http://jkarger.de/2011/04/17/running-%e2%80%93-part-3/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 10:38:09 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[gpx]]></category>
		<category><![CDATA[joggen]]></category>
		<category><![CDATA[runtastic]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=362</guid>
		<description><![CDATA[ok, now i have not reached my own goal for this run. due to a cold, I had to cancel unfortunately distance: 4,27 km duration: 28m 37s kCal: 450]]></description>
			<content:encoded><![CDATA[<p>ok, now i have not reached my own goal for this run.<br />
due to a cold, I had to cancel unfortunately <img src='http://jkarger.de/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p style="padding-left: 30px;">
distance: 4,27 km<br />
duration: 28m 37s<br />
kCal: 450
</p>
<link rel="stylesheet" type="text/css" href="http://jkarger.de/wp-content/plugins/osm//css/osm_map.css" /><style type="text/css">#map_6 {clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px; left: 0px;}#map_6 img{clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; position: absolute; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px;}</style><div id="map_6" style="width:550px; height:320px; overflow:hidden;padding:0px;border:thin solid black;"><script type="text/javascript">/* <![CDATA[ */(function($) { OpenLayers.ImgPath = "http://jkarger.de/wp-content/plugins/osm/themes/ol/"; map = new OpenLayers.Map ("map_6", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var lmap = new OpenLayers.Layer.OSM.Mapnik("Mapnik");var layerOSM_Attr = new OpenLayers.Layer.Vector("OSM-plugin",{attribution:"<a href=\"http://www.Fotomobil.at/wp-osm-plugin\">OSM plugin</a>"});map.addLayers([lmap, layerOSM_Attr]);    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(6.151,50.888).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,14);  var lgml = new OpenLayers.Layer.GML("runtastic_20110417_0841_Running_Jogging", "http://jkarger.de/wp-content/uploads/gpx/runtastic_20110417_0841_Running_Jogging.gpx", {    format: OpenLayers.Format.GPX,    style: {strokeColor: "blue", strokeWidth: 5, strokeOpacity: 0.5},    projection: new OpenLayers.Projection("EPSG:4326")  });  map.addLayer(lgml);})(jQuery)/* ]]&gt; */ </script></div>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2011/04/17/running-%e2%80%93-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET DevCon 2011</title>
		<link>http://jkarger.de/2011/03/29/net-devcon-2011/</link>
		<comments>http://jkarger.de/2011/03/29/net-devcon-2011/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 19:15:58 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[conference]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=172</guid>
		<description><![CDATA[2009 hat es mit der BASTA geklappt und dieses jahr ist es die .NET DevCon 2011 *freu* 2 tage geballtes wissen in sich aufsaugen und nicht mehr vergessen und abends ein kleines bierchen in der nürnberger altstadt, hach ist das schön]]></description>
			<content:encoded><![CDATA[<p>2009 hat es mit der BASTA geklappt und dieses jahr ist es die .NET DevCon 2011 *freu*<br />
2 tage geballtes wissen in sich aufsaugen und nicht mehr vergessen und abends ein kleines bierchen in der nürnberger altstadt, hach ist das schön <img src='http://jkarger.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<div id="attachment_177" class="wp-caption aligncenter" style="width: 308px"><a href="http://www.dotnet-devcon.de/"><img class="size-full wp-image-177 " title="dotNET devcon" src="http://jkarger.de/wp-content/uploads/2011/03/2011-03-29-21h09_03.png" alt="" width="298" height="251" /></a><p class="wp-caption-text"> </p></div>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2011/03/29/net-devcon-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>running &#8211; part 2</title>
		<link>http://jkarger.de/2011/03/28/running-part-2/</link>
		<comments>http://jkarger.de/2011/03/28/running-part-2/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 16:42:32 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[gpx]]></category>
		<category><![CDATA[joggen]]></category>
		<category><![CDATA[runtastic]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=284</guid>
		<description><![CDATA[ein paar meter mehr als beim letzten mal&#8230; distance: 4,95 km duration: 32m 57s kCal: 520]]></description>
			<content:encoded><![CDATA[<p>ein paar meter mehr als beim letzten mal&#8230;</p>
<p style="padding-left: 30px;">
distance: 4,95 km<br />
duration: 32m 57s<br />
kCal: 520
</p>
<link rel="stylesheet" type="text/css" href="http://jkarger.de/wp-content/plugins/osm//css/osm_map.css" /><style type="text/css">#map_7 {clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px; left: 0px;}#map_7 img{clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; position: absolute; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px;}</style><div id="map_7" style="width:550px; height:320px; overflow:hidden;padding:0px;border:thin solid black;"><script type="text/javascript">/* <![CDATA[ */(function($) { OpenLayers.ImgPath = "http://jkarger.de/wp-content/plugins/osm/themes/ol/"; map = new OpenLayers.Map ("map_7", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var lmap = new OpenLayers.Layer.OSM.Mapnik("Mapnik");var layerOSM_Attr = new OpenLayers.Layer.Vector("OSM-plugin",{attribution:"<a href=\"http://www.Fotomobil.at/wp-osm-plugin\">OSM plugin</a>"});map.addLayers([lmap, layerOSM_Attr]);    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(6.151,50.888).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,14);  var lgml = new OpenLayers.Layer.GML("runtastic_20110328_1331_Running_Jogging", "http://jkarger.de/wp-content/uploads/gpx/runtastic_20110328_1331_Running_Jogging.gpx", {    format: OpenLayers.Format.GPX,    style: {strokeColor: "blue", strokeWidth: 5, strokeOpacity: 0.5},    projection: new OpenLayers.Projection("EPSG:4326")  });  map.addLayer(lgml);})(jQuery)/* ]]&gt; */ </script></div>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2011/03/28/running-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>running &#8211; part 1 oder Lauf junge, lauf&#8230;</title>
		<link>http://jkarger.de/2011/03/20/running-part-1-lauf-junge-lauf/</link>
		<comments>http://jkarger.de/2011/03/20/running-part-1-lauf-junge-lauf/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 08:32:02 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[gpx]]></category>
		<category><![CDATA[joggen]]></category>
		<category><![CDATA[runtastic]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=186</guid>
		<description><![CDATA[man soll es kaum glauben, aber ich habe meinen durchaus beleibten körper durch die gegend gescheucht. klein anfangen und vielleicht irgendwann ein paar pfunde weniger! damit ich den überblick nicht verliere benutze ich die iphone app runtastic pro. ob ich bei dieser bleibe weiss ich noch nicht, aber damit kann ich meine gpx daten exportieren [...]]]></description>
			<content:encoded><![CDATA[<p>man soll es kaum glauben,<br />
aber ich habe meinen durchaus beleibten körper durch die gegend gescheucht. klein anfangen und vielleicht irgendwann ein paar pfunde weniger!</p>
<p>damit ich den überblick nicht verliere benutze ich die iphone app <a href="http://runtastic.com" target="_blank">runtastic pro</a>.<br />
ob ich bei dieser bleibe weiss ich noch nicht, aber damit kann ich meine gpx daten exportieren und weiterverwenden.</p>
<p style="padding-left: 30px;">
distance: 4,05 km<br />
duration: 29m 11s (5m 16s pause)<br />
kCal: 441
</p>
<link rel="stylesheet" type="text/css" href="http://jkarger.de/wp-content/plugins/osm//css/osm_map.css" /><style type="text/css">#map_8 {clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px; left: 0px;}#map_8 img{clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; position: absolute; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px;}</style><div id="map_8" style="width:550px; height:320px; overflow:hidden;padding:0px;border:thin solid black;"><script type="text/javascript">/* <![CDATA[ */(function($) { OpenLayers.ImgPath = "http://jkarger.de/wp-content/plugins/osm/themes/ol/"; map = new OpenLayers.Map ("map_8", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var lmap = new OpenLayers.Layer.OSM.Mapnik("Mapnik");var layerOSM_Attr = new OpenLayers.Layer.Vector("OSM-plugin",{attribution:"<a href=\"http://www.Fotomobil.at/wp-osm-plugin\">OSM plugin</a>"});map.addLayers([lmap, layerOSM_Attr]);    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(6.151,50.888).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,14);  var lgml = new OpenLayers.Layer.GML("runtastic_20110320_0946_Running_Jogging", "http://jkarger.de/wp-content/uploads/gpx/runtastic_20110320_0946_Running_Jogging.gpx", {    format: OpenLayers.Format.GPX,    style: {strokeColor: "blue", strokeWidth: 5, strokeOpacity: 0.5},    projection: new OpenLayers.Projection("EPSG:4326")  });  map.addLayer(lgml);})(jQuery)/* ]]&gt; */ </script></div>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2011/03/20/running-part-1-lauf-junge-lauf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the garden project – part 6 (father and son)</title>
		<link>http://jkarger.de/2009/07/06/the-garden-project-part-6-father-and-son/</link>
		<comments>http://jkarger.de/2009/07/06/the-garden-project-part-6-father-and-son/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 20:59:59 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[home sweet home]]></category>
		<category><![CDATA[kids]]></category>
		<category><![CDATA[garden]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=87</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href='http://jkarger.de/2009/07/06/the-garden-project-part-6-father-and-son/father_and_son_01/' title='father_and_son_01'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/07/father_and_son_01-150x150.jpg" class="attachment-thumbnail" alt="father_and_son_01" title="father_and_son_01" /></a>
<a href='http://jkarger.de/2009/07/06/the-garden-project-part-6-father-and-son/father_and_son_02/' title='father_and_son_02'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/07/father_and_son_02-150x150.jpg" class="attachment-thumbnail" alt="father_and_son_02" title="father_and_son_02" /></a>
<a href='http://jkarger.de/2009/07/06/the-garden-project-part-6-father-and-son/father_and_son_03/' title='father_and_son_03'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/07/father_and_son_03-150x150.jpg" class="attachment-thumbnail" alt="father_and_son_03" title="father_and_son_03" /></a>
<a href='http://jkarger.de/2009/07/06/the-garden-project-part-6-father-and-son/father_and_son_04/' title='father_and_son_04'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/07/father_and_son_04-150x150.jpg" class="attachment-thumbnail" alt="father_and_son_04" title="father_and_son_04" /></a>
<a href='http://jkarger.de/2009/07/06/the-garden-project-part-6-father-and-son/father_and_son_05/' title='father_and_son_05'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/07/father_and_son_05-150x150.jpg" class="attachment-thumbnail" alt="father_and_son_05" title="father_and_son_05" /></a>
<a href='http://jkarger.de/2009/07/06/the-garden-project-part-6-father-and-son/father_and_son_06/' title='father_and_son_06'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/07/father_and_son_06-150x150.jpg" class="attachment-thumbnail" alt="father_and_son_06" title="father_and_son_06" /></a>

]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2009/07/06/the-garden-project-part-6-father-and-son/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The garden project &#8211; part 5</title>
		<link>http://jkarger.de/2009/06/18/the-garden-project-part-5/</link>
		<comments>http://jkarger.de/2009/06/18/the-garden-project-part-5/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 20:21:10 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[home sweet home]]></category>
		<category><![CDATA[garden]]></category>
		<category><![CDATA[home]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=70</guid>
		<description><![CDATA[hi, here ar 2 new pictures from our project. we can see the light at the end of&#8230;&#8230;]]></description>
			<content:encoded><![CDATA[<p>hi, here ar 2 new pictures from our project. we can see the light at the end of&#8230;&#8230;</p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-71" title="hsh_day5_01" src="http://jkarger.de/wp-content/uploads/2009/06/hsh_day5_01-500x375.jpg" alt="hsh_day5_01" width="500" height="375" /></p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-72" title="hsh_day5_02" src="http://jkarger.de/wp-content/uploads/2009/06/hsh_day5_02-500x375.jpg" alt="hsh_day5_02" width="500" height="375" /></p>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2009/06/18/the-garden-project-part-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The garden project &#8211; part 4</title>
		<link>http://jkarger.de/2009/06/05/the-garden-project-part4/</link>
		<comments>http://jkarger.de/2009/06/05/the-garden-project-part4/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 19:47:10 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[home sweet home]]></category>
		<category><![CDATA[garden]]></category>
		<category><![CDATA[home]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=23</guid>
		<description><![CDATA[so, heute mussten schwere geschütze aufgefahren werden, die schweren querbalken mussten mit dem trecker abgerissen werden!!! der abriss vom letzten teil ging erstaunlich schnell. und ganz wichtig: alle haben es ohne verletzung überstanden luca war hin und weg (vom roten traktor), hat sich aber nicht überreden lassen mal probe zu fahren, große traktoren sind halt [...]]]></description>
			<content:encoded><![CDATA[<p>so, heute mussten schwere geschütze aufgefahren werden, die schweren querbalken mussten mit dem trecker abgerissen werden!!! der abriss vom letzten teil ging erstaunlich schnell. und ganz wichtig: alle haben es ohne verletzung überstanden <img src='http://jkarger.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
luca war hin und weg (vom roten traktor), hat sich aber nicht überreden lassen mal probe zu fahren, große traktoren sind halt doch etwas anderes als kleine <img src='http://jkarger.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-24" title="hsh_day4_01" src="http://jkarger.de/wp-content/uploads/2009/06/hsh_day4_01-500x375.jpg" alt="hsh_day4_01" width="500" height="375" /></p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-25" title="hsh_day4_02" src="http://jkarger.de/wp-content/uploads/2009/06/hsh_day4_02-500x375.jpg" alt="hsh_day4_02" width="500" height="375" /></p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-26" title="hsh_day4_03" src="http://jkarger.de/wp-content/uploads/2009/06/hsh_day4_03-500x375.jpg" alt="hsh_day4_03" width="500" height="375" /></p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-27" title="hsh_day4_04" src="http://jkarger.de/wp-content/uploads/2009/06/hsh_day4_04-500x375.jpg" alt="hsh_day4_04" width="500" height="375" /></p>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2009/06/05/the-garden-project-part4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The garden project &#8211; part 3</title>
		<link>http://jkarger.de/2009/06/03/the-garden-project-part3/</link>
		<comments>http://jkarger.de/2009/06/03/the-garden-project-part3/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 20:43:19 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[home sweet home]]></category>
		<category><![CDATA[garden]]></category>
		<category><![CDATA[home]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=18</guid>
		<description><![CDATA[alles muss raus, weg mit dem schutt&#8230;.!]]></description>
			<content:encoded><![CDATA[<p>alles muss raus, weg mit dem schutt&#8230;.!</p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-19" title="hsh_day3_01" src="http://jkarger.de/wp-content/uploads/2009/06/hsh_day3_01-500x375.jpg" alt="hsh_day3_01" width="500" height="375" /></p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-20" title="hsh_day3_02" src="http://jkarger.de/wp-content/uploads/2009/06/hsh_day3_02-500x375.jpg" alt="hsh_day3_02" width="500" height="375" /></p>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2009/06/03/the-garden-project-part3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rancid &#8211; Let the dominoes fall</title>
		<link>http://jkarger.de/2009/06/03/rancid-let-the-dominoes-fall/</link>
		<comments>http://jkarger.de/2009/06/03/rancid-let-the-dominoes-fall/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 19:32:22 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[punk]]></category>
		<category><![CDATA[rancid]]></category>
		<category><![CDATA[ska]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=29</guid>
		<description><![CDATA[Yeah, my new rancid special cd release &#8220;Let the dominoes fall&#8221; was arrived! And the new cd is amazing! I hear it down and up and down and up&#8230;.. I love it!]]></description>
			<content:encoded><![CDATA[<p>Yeah, my new rancid special cd release &#8220;Let the dominoes fall&#8221; was arrived!</p>
<p>And the new cd is amazing! I hear it down and up and down and up&#8230;.. I love it!</p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-30" title="img_0237" src="http://jkarger.de/wp-content/uploads/2009/06/img_0237-375x500.jpg" alt="img_0237" width="375" height="500" /></p>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2009/06/03/rancid-let-the-dominoes-fall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The garden project &#8211; part 2</title>
		<link>http://jkarger.de/2009/06/02/the-garden-project-part2/</link>
		<comments>http://jkarger.de/2009/06/02/the-garden-project-part2/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 19:21:56 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[home sweet home]]></category>
		<category><![CDATA[garden]]></category>
		<category><![CDATA[home]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=12</guid>
		<description><![CDATA[&#8230;.und weiter gehts!!!]]></description>
			<content:encoded><![CDATA[<p>&#8230;.und weiter gehts!!!</p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-13" title="hsh_day2_01" src="http://jkarger.de/wp-content/uploads/2009/06/hsh_day2_01-500x375.jpg" alt="hsh_day2_01" width="500" height="375" /></p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-14" title="hsh_day2_02" src="http://jkarger.de/wp-content/uploads/2009/06/hsh_day2_02-500x375.jpg" alt="hsh_day2_02" width="500" height="375" /></p>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2009/06/02/the-garden-project-part2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The garden project &#8211; part 1</title>
		<link>http://jkarger.de/2009/05/30/the-garden-project-part1/</link>
		<comments>http://jkarger.de/2009/05/30/the-garden-project-part1/#comments</comments>
		<pubDate>Sat, 30 May 2009 18:35:00 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[home sweet home]]></category>
		<category><![CDATA[garden]]></category>
		<category><![CDATA[home]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=3</guid>
		<description><![CDATA[endlich hat unser projekt grüner garten begonnen! es hat zwar ein jahr gedauert, aber um so mehr freuen wir uns, dass nun endlich sich was bewegt (umfällt). mein sohn ist auch ganz fasziniert von dem treiben, er steht immer ganz aufgeregt am fenster und beobachtet alles sehr genau natürlich hat er auch seine eigene schubkarre, [...]]]></description>
			<content:encoded><![CDATA[<p>endlich hat unser projekt grüner garten begonnen! es hat zwar ein jahr gedauert, aber um so mehr freuen wir uns, dass nun endlich sich was bewegt (umfällt).<br />
mein sohn ist auch ganz fasziniert von dem treiben, er steht immer ganz aufgeregt am fenster und beobachtet alles sehr genau <img src='http://jkarger.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
natürlich hat er auch seine eigene schubkarre, um uns beim wegfahren des bauschutts behilflich zu sein, hehe&#8230;</p>
<p>hier die ersten fotos vom ersten tag des abrisskommandos: mein sohn der baumeister. &#8220;schaffen wir das? ja, wir schaffen das!&#8221; <img src='http://jkarger.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-39" title="dsc00038" src="http://jkarger.de/wp-content/uploads/2009/06/dsc00038-375x500.jpg" alt="dsc00038" width="375" height="500" /></p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-7" title="hsh_day1_01" src="http://jkarger.de/wp-content/uploads/2009/05/hsh_day1_01-500x375.jpg" alt="hsh_day1_01" width="500" height="375" /></p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-8" title="hsh_day1_02" src="http://jkarger.de/wp-content/uploads/2009/05/hsh_day1_02-500x375.jpg" alt="hsh_day1_02" width="500" height="375" /></p>
]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2009/05/30/the-garden-project-part1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My son is a tractor fan, I don&#8217;t know why ;-)</title>
		<link>http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/</link>
		<comments>http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/#comments</comments>
		<pubDate>Sun, 17 May 2009 18:35:00 +0000</pubDate>
		<dc:creator>punker76</dc:creator>
				<category><![CDATA[kids]]></category>
		<category><![CDATA[tractor]]></category>

		<guid isPermaLink="false">http://jkarger.de/?p=74</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013118/' title='R0013118'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013118-150x150.jpg" class="attachment-thumbnail" alt="R0013118" title="R0013118" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013119/' title='R0013119'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013119-150x150.jpg" class="attachment-thumbnail" alt="R0013119" title="R0013119" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013120/' title='R0013120'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013120-150x150.jpg" class="attachment-thumbnail" alt="R0013120" title="R0013120" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013121/' title='R0013121'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013121-150x150.jpg" class="attachment-thumbnail" alt="R0013121" title="R0013121" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013122/' title='R0013122'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013122-150x150.jpg" class="attachment-thumbnail" alt="R0013122" title="R0013122" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013123/' title='R0013123'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013123-150x150.jpg" class="attachment-thumbnail" alt="R0013123" title="R0013123" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013124/' title='R0013124'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013124-150x150.jpg" class="attachment-thumbnail" alt="R0013124" title="R0013124" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013125/' title='R0013125'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013125-150x150.jpg" class="attachment-thumbnail" alt="R0013125" title="R0013125" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013126/' title='R0013126'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013126-150x150.jpg" class="attachment-thumbnail" alt="R0013126" title="R0013126" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013127/' title='R0013127'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013127-150x150.jpg" class="attachment-thumbnail" alt="R0013127" title="R0013127" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013128/' title='R0013128'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013128-150x150.jpg" class="attachment-thumbnail" alt="R0013128" title="R0013128" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013129/' title='R0013129'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013129-150x150.jpg" class="attachment-thumbnail" alt="R0013129" title="R0013129" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013130/' title='R0013130'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013130-150x150.jpg" class="attachment-thumbnail" alt="R0013130" title="R0013130" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013131/' title='R0013131'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013131-150x150.jpg" class="attachment-thumbnail" alt="R0013131" title="R0013131" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013132/' title='R0013132'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013132-150x150.jpg" class="attachment-thumbnail" alt="R0013132" title="R0013132" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013133/' title='R0013133'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013133-150x150.jpg" class="attachment-thumbnail" alt="R0013133" title="R0013133" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013134/' title='R0013134'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013134-150x150.jpg" class="attachment-thumbnail" alt="R0013134" title="R0013134" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013135/' title='R0013135'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013135-150x150.jpg" class="attachment-thumbnail" alt="R0013135" title="R0013135" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013136/' title='R0013136'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013136-150x150.jpg" class="attachment-thumbnail" alt="R0013136" title="R0013136" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013137/' title='R0013137'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013137-150x150.jpg" class="attachment-thumbnail" alt="R0013137" title="R0013137" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013138/' title='R0013138'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013138-150x150.jpg" class="attachment-thumbnail" alt="R0013138" title="R0013138" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013139/' title='R0013139'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013139-150x150.jpg" class="attachment-thumbnail" alt="R0013139" title="R0013139" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013140/' title='R0013140'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013140-150x150.jpg" class="attachment-thumbnail" alt="R0013140" title="R0013140" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013141/' title='R0013141'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013141-150x150.jpg" class="attachment-thumbnail" alt="R0013141" title="R0013141" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013142/' title='R0013142'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013142-150x150.jpg" class="attachment-thumbnail" alt="R0013142" title="R0013142" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013143/' title='R0013143'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013143-150x150.jpg" class="attachment-thumbnail" alt="R0013143" title="R0013143" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013144/' title='R0013144'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013144-150x150.jpg" class="attachment-thumbnail" alt="R0013144" title="R0013144" /></a>
<a href='http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/r0013145/' title='R0013145'><img width="150" height="150" src="http://jkarger.de/wp-content/uploads/2009/05/R0013145-150x150.jpg" class="attachment-thumbnail" alt="R0013145" title="R0013145" /></a>

]]></content:encoded>
			<wfw:commentRss>http://jkarger.de/2009/05/17/my-son-is-a-tractor-fan-i-dont-know-why/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

