<?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>Jens&#039; Blog</title>
	<atom:link href="http://www.freude-now.de/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freude-now.de/blog</link>
	<description>Alle meine Fundstücke die ich so im Netz finde</description>
	<lastBuildDate>Thu, 17 May 2012 06:48:37 +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>dENiZEN &#8220;Shine a Light for Nature&#8221;</title>
		<link>http://www.freude-now.de/blog/2012/05/17/denizen-shine-a-light-for-nature/</link>
		<comments>http://www.freude-now.de/blog/2012/05/17/denizen-shine-a-light-for-nature/#comments</comments>
		<pubDate>Thu, 17 May 2012 06:42:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[art]]></category>

		<guid isPermaLink="false">http://www.freude-now.de/blog/?p=157</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/40074848" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.freude-now.de/blog/2012/05/17/denizen-shine-a-light-for-nature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>extract sub parts from strings in php</title>
		<link>http://www.freude-now.de/blog/2012/04/26/extract-sub-parts-from-strings-in-php/</link>
		<comments>http://www.freude-now.de/blog/2012/04/26/extract-sub-parts-from-strings-in-php/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 06:54:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.freude-now.de/blog/?p=150</guid>
		<description><![CDATA[may be by following functions will be easyer to extract the needed sub parts from a string: after (&#039;@&#039;, &#039;biohazard@online.ge&#039;); returns &#039;online.ge&#039; from the first occurrence of &#039;@&#039; before (&#039;@&#039;, &#039;biohazard@online.ge&#039;); returns &#039;biohazard&#039; from the first occurrence of &#039;@&#039; between (&#039;@&#039;, &#039;.&#039;, &#039;biohazard@online.ge&#039;); returns &#039;online&#039; from the first occurrence of &#039;@&#039; after_last (&#039;[&#039;, &#039;sin[90]*cos[180]&#039;); returns [...]]]></description>
			<content:encoded><![CDATA[<p>may be by following functions will be easyer to extract the<br />
needed sub parts from a string:</p>
<pre class="brush: php">
after (&#039;@&#039;, &#039;biohazard@online.ge&#039;);
returns &#039;online.ge&#039;
from the first occurrence of &#039;@&#039;

before (&#039;@&#039;, &#039;biohazard@online.ge&#039;);
returns &#039;biohazard&#039;
from the first occurrence of &#039;@&#039;

between (&#039;@&#039;, &#039;.&#039;, &#039;biohazard@online.ge&#039;);
returns &#039;online&#039;
from the first occurrence of &#039;@&#039;

after_last (&#039;[&#039;, &#039;sin[90]*cos[180]&#039;);
returns &#039;180]&#039;
from the last occurrence of &#039;[&#039;

before_last (&#039;[&#039;, &#039;sin[90]*cos[180]&#039;);
returns &#039;sin[90]*cos[&#039;
from the last occurrence of &#039;[&#039;

between_last (&#039;[&#039;, &#039;]&#039;, &#039;sin[90]*cos[180]&#039;);
returns &#039;180&#039;
from the last occurrence of &#039;[&#039;

function after ($this, $inthat)
{
if (!is_bool(strpos($inthat, $this)))
return substr($inthat, strpos($inthat,$this)+strlen($this));
};

function after_last ($this, $inthat)
{
if (!is_bool(strrevpos($inthat, $this)))
return substr($inthat, strrevpos($inthat, $this)+strlen($this));
};

function before ($this, $inthat)
{
return substr($inthat, 0, strpos($inthat, $this));
};

function before_last ($this, $inthat)
{
return substr($inthat, 0, strrevpos($inthat, $this));
};

function between ($this, $that, $inthat)
{
return before($that, after($this, $inthat));
};

function between_last ($this, $that, $inthat)
{
return after_last($this, before_last($that, $inthat));
};

// USES
function strrevpos($instr, $needle)
{
$rev_pos = strpos (strrev($instr), strrev($needle));
if ($rev_pos===false) return false;
else return strlen($instr) - $rev_pos - strlen($needle);
};
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.freude-now.de/blog/2012/04/26/extract-sub-parts-from-strings-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>suche nach Textstellen in eine Datei leiten</title>
		<link>http://www.freude-now.de/blog/2012/04/25/suche-nach-textstellen-in-eine-datei-leiten/</link>
		<comments>http://www.freude-now.de/blog/2012/04/25/suche-nach-textstellen-in-eine-datei-leiten/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 15:02:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mac/unix]]></category>

		<guid isPermaLink="false">http://www.freude-now.de/blog/?p=146</guid>
		<description><![CDATA[Zusammen mit find, grep und tee kann man ganze Verzeichnisbäume durchsucht und das Ergebnis in eine Textdatei geschrieben werden. Man sollte nur darauf achten, wenn man die Textdatei so benennt wie den Suchbegriff, dass dann die Textdatei in einem tieferem Verzeichnis liegt. Sonst entstehen Rekursionen. find ./ -exec grep -H "versandliste" {} \; &#124; tee [...]]]></description>
			<content:encoded><![CDATA[<p>Zusammen mit find, grep und tee kann man ganze Verzeichnisbäume durchsucht und das Ergebnis in eine Textdatei geschrieben werden. Man sollte nur darauf achten, wenn man die Textdatei so benennt wie den Suchbegriff, dass dann die Textdatei in einem tieferem Verzeichnis liegt. Sonst entstehen Rekursionen.<br />
<code>find ./ -exec grep -H "versandliste" {} \; | tee ../suchgrep/versandliste.txt</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.freude-now.de/blog/2012/04/25/suche-nach-textstellen-in-eine-datei-leiten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5000m Rennen</title>
		<link>http://www.freude-now.de/blog/2010/04/19/5000m-rennen/</link>
		<comments>http://www.freude-now.de/blog/2010/04/19/5000m-rennen/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 13:58:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[laufen]]></category>

		<guid isPermaLink="false">http://www.freude-now.de/blog/?p=126</guid>
		<description><![CDATA[so müssen 5000m Rennen sein, dann macht Leichtathletik richtig Spass: Track and Field Videos on Flotrack]]></description>
			<content:encoded><![CDATA[<p>so müssen 5000m Rennen sein, dann macht Leichtathletik richtig Spass:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="310" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="bgcolor" value="#" /><param name="flashvars" value="&amp;image=http://d1xm19c2e3uqmo.cloudfront.net/19269_M5kH01InviteTrackside_1271488672066_l.jpg&amp;logo=http://www.flotrack.org/assets/portal/simple30/images/video_overlays/flotrack.png&amp;file=http://d18tka3ecu2l5z.cloudfront.net/19269_M5kH01InviteTrackside_1271488672066.mp4&amp;frontcolor=000000&amp;lightcolor=cc9900&amp;controlbar=over&amp;stretching=fill" /><param name="src" value="http://www.flotrack.org/assets/portal/add_ons/mediaplayer-4.2/player.swf" /><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="310" src="http://www.flotrack.org/assets/portal/add_ons/mediaplayer-4.2/player.swf" allowfullscreen="true" wmode="transparent" flashvars="&amp;image=http://d1xm19c2e3uqmo.cloudfront.net/19269_M5kH01InviteTrackside_1271488672066_l.jpg&amp;logo=http://www.flotrack.org/assets/portal/simple30/images/video_overlays/flotrack.png&amp;file=http://d18tka3ecu2l5z.cloudfront.net/19269_M5kH01InviteTrackside_1271488672066.mp4&amp;frontcolor=000000&amp;lightcolor=cc9900&amp;controlbar=over&amp;stretching=fill" bgcolor="#"></embed></object><script type="text/javascript">// <![CDATA[
if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {$("#display_video").html('<video src="http://d18tka3ecu2l5z.cloudfront.net/19269_M5kH01InviteTrackside_1271488672066.mp4" controls preload autoplay width="480" height="310"></video>');}
// ]]&gt;</script></p>
<p><a href="http://www.flotrack.org">Track and Field Videos on Flotrack</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.freude-now.de/blog/2010/04/19/5000m-rennen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://d18tka3ecu2l5z.cloudfront.net/19269_M5kH01InviteTrackside_1271488672066.mp4" length="126952596" type="video/mp4" />
		</item>
		<item>
		<title>Laufen in Iten, Kenia</title>
		<link>http://www.freude-now.de/blog/2010/03/22/laufen-in-iten-kenia/</link>
		<comments>http://www.freude-now.de/blog/2010/03/22/laufen-in-iten-kenia/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 07:27:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[laufen]]></category>

		<guid isPermaLink="false">http://www.freude-now.de/blog/?p=119</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;"><object style="width: 425px; height: 350px;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100" height="100" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://www.youtube.com/v/XDPJ3QdluT0&amp;color1" /><param name="src" value="http://www.youtube.com/v/XDPJ3QdluT0&amp;color1" /><embed style="width: 425px; height: 350px;" type="application/x-shockwave-flash" width="100" height="100" src="http://www.youtube.com/v/XDPJ3QdluT0&amp;color1" data="http://www.youtube.com/v/XDPJ3QdluT0&amp;color1"></embed></object></div>
]]></content:encoded>
			<wfw:commentRss>http://www.freude-now.de/blog/2010/03/22/laufen-in-iten-kenia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>die Radarfalle hat sie erwischt</title>
		<link>http://www.freude-now.de/blog/2010/03/13/die-radarfalle-hat-sie-erwischt/</link>
		<comments>http://www.freude-now.de/blog/2010/03/13/die-radarfalle-hat-sie-erwischt/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 20:55:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[laufen]]></category>

		<guid isPermaLink="false">http://www.freude-now.de/blog/?p=117</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.freude-now.de/blog/wp-content/uploads/2010/03/Speeder.preview.jpg" rel="shadowbox[post-117];player=img;"><img class="aligncenter size-full wp-image-116" title="Speeder.preview" src="http://www.freude-now.de/blog/wp-content/uploads/2010/03/Speeder.preview.jpg" alt="" width="590" height="393" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.freude-now.de/blog/2010/03/13/die-radarfalle-hat-sie-erwischt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gatorage</title>
		<link>http://www.freude-now.de/blog/2010/03/12/gatorage/</link>
		<comments>http://www.freude-now.de/blog/2010/03/12/gatorage/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 20:37:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[sport]]></category>

		<guid isPermaLink="false">http://www.freude-now.de/blog/?p=108</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="425" height="355"><param name="src" value="http://www.freude-now.de/blog/wp-content/uploads/2010/03/Float_G2.mov" /><param name="controller" value="true" /><param name="autoplay" value="false" /><param name="scale" value="aspect" /><object type="video/quicktime" data="http://www.freude-now.de/blog/wp-content/uploads/2010/03/Float_G2.mov" width="425" height="355">
<param name="autoplay" value="false" /><param name="controller" value="true" /><param name="scale" value="aspect" /></object></object> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.freude-now.de/blog/2010/03/12/gatorage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.freude-now.de/blog/wp-content/uploads/2010/03/Float_G2.mov" length="7313218" type="video/quicktime" />
		</item>
		<item>
		<title>Sportwerbung</title>
		<link>http://www.freude-now.de/blog/2010/03/08/sportwerbung/</link>
		<comments>http://www.freude-now.de/blog/2010/03/08/sportwerbung/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 21:57:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[sport]]></category>

		<guid isPermaLink="false">http://www.freude-now.de/blog/?p=101</guid>
		<description><![CDATA[wo wir gerade beim Thema Sport und Werbung wären:]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">wo wir gerade beim Thema Sport und Werbung wären:</p>
<p><a href="http://www.freude-now.de/blog/wp-content/uploads/2010/03/12b.jpg" rel="shadowbox[post-101];player=img;"><img class="aligncenter size-full wp-image-102" title="12b" src="http://www.freude-now.de/blog/wp-content/uploads/2010/03/12b.jpg" alt="" width="600" height="424" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.freude-now.de/blog/2010/03/08/sportwerbung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ein Laufband mal anders</title>
		<link>http://www.freude-now.de/blog/2010/03/08/ein-laufband-mal-anders/</link>
		<comments>http://www.freude-now.de/blog/2010/03/08/ein-laufband-mal-anders/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 21:52:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[laufen]]></category>
		<category><![CDATA[sport]]></category>

		<guid isPermaLink="false">http://www.freude-now.de/blog/?p=97</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.freude-now.de/blog/wp-content/uploads/2010/03/01.jpg" rel="shadowbox[post-97];player=img;"><img class="aligncenter size-full wp-image-98" title="01" src="http://www.freude-now.de/blog/wp-content/uploads/2010/03/01.jpg" alt="" width="480" height="680" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.freude-now.de/blog/2010/03/08/ein-laufband-mal-anders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asics Running Film</title>
		<link>http://www.freude-now.de/blog/2010/02/23/asics-running-film/</link>
		<comments>http://www.freude-now.de/blog/2010/02/23/asics-running-film/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 18:40:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[sport]]></category>

		<guid isPermaLink="false">http://www.freude-now.de/blog/?p=94</guid>
		<description><![CDATA[Asics Running Film from PostPanic on Vimeo.]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="225"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=9552630&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=9552630&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object>
<p><a href="http://vimeo.com/9552630">Asics Running Film</a> from <a href="http://vimeo.com/postpanic">PostPanic</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freude-now.de/blog/2010/02/23/asics-running-film/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

