<?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>j-zero &#187; j-zero.de</title>
	<atom:link href="http://www.j-zero.de/blog/category/anderes/feed" rel="self" type="application/rss+xml" />
	<link>http://www.j-zero.de</link>
	<description>Leben. Computer. Rock &#039;n&#039; Roll.</description>
	<lastBuildDate>Wed, 01 Feb 2012 08:02:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Terror: die systematische Verbreitung von Angst</title>
		<link>http://www.j-zero.de/blog/terror-die-systematische-verbreitung-von-angst-629.html</link>
		<comments>http://www.j-zero.de/blog/terror-die-systematische-verbreitung-von-angst-629.html#comments</comments>
		<pubDate>Mon, 25 Jul 2011 06:55:08 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=629</guid>
		<description><![CDATA[So schlimm die Anschläge in Norwegen auch waren, zeigen sie doch, wie gut der Terrorismus funktioniert hat. Minuten nach dem Bombenanschlag berichten die Medien: Al Qaida. Alles andere wäre zum jetzigen Zeitpunkt reine Spekulation. Das war ja offensichtlich ein Griff ins journalistische Klo. Es fragt sich doch der (noch) normal denkende Mensch ab und zu, [...]]]></description>
			<content:encoded><![CDATA[<p>So schlimm die Anschläge in Norwegen auch waren, zeigen sie doch, wie gut der Terrorismus funktioniert hat.</p>
<p>Minuten nach dem Bombenanschlag berichten die Medien:</p>
<blockquote><p>Al Qaida. Alles andere wäre zum jetzigen Zeitpunkt reine Spekulation.</p></blockquote>
<p>Das war ja offensichtlich ein Griff ins journalistische Klo.</p>
<p>Es fragt sich doch der (noch) normal denkende Mensch ab und zu, was bedeutet denn Terror?</p>
<p>Auszug aus der Wikipedia:</p>
<blockquote><p>Der <strong>Terror</strong> (lat. <em>terror</em> „Schrecken“) ist die systematische und oftmals willkürlich erscheinende Verbreitung von Angst und Schrecken durch ausgeübte oder angedrohte Gewalt, um Menschen gefügig zu machen.</p></blockquote>
<p>Aha, Terror ist also eine &#8220;systematische [...] Verbreitung von Angst&#8221;, das scheint ja gelungen zu sein, wenn dieser soweit in den Köpfen angekommen ist, dass bei jedem Anschlag gleich die Islamisten verantwortlich gemacht werden. Als wenn Fundi-Christen besser sind, waren oder es jemals sein werden?!? Der Terror fängt dort an, wo Leute Angst gemacht wird, was sicherlich extrem dagegen Hilft sind mit MPs bewaffnete Polizisten an Bahnhöfen, die jeden, der mal 5 Sekunden seinen Koffer stehen lässt um zum Mülleimer zu gehen ins Visier nehmen oder Politiker welche den Datenschutz mit Füßen treten und die Vorratsdatenspeicherung durchdrücken wollen mit dem Argument &#8220;das hilft gegen den Terror&#8221;. m(</p>
<p>Wenn &#8220;Terror&#8221; das Verbreiten von Angst ist, wer ist denn dann der Auslöser, wenn von 249 von Europol verzeichneten Anschlägen nur 3 (!!!) von Islamisten ausgegangen sind? Die Terroristen oder die, die die Angst verbreiten?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/terror-die-systematische-verbreitung-von-angst-629.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# DNS-(Reverse)Lookup mit Timeout</title>
		<link>http://www.j-zero.de/blog/c-dns-reverselookup-mit-timeout-619.html</link>
		<comments>http://www.j-zero.de/blog/c-dns-reverselookup-mit-timeout-619.html#comments</comments>
		<pubDate>Mon, 11 Apr 2011 10:11:30 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=619</guid>
		<description><![CDATA[Ich hab&#8217; gerade &#8216;nen kleines Tool für Windows zusammen gehackt und festgestellt, dass die .NET DNS-APIs keine Möglichkeit haben einen Timout zu übergeben und immer 5sek. warten. Hier &#8216;nen kleiner haufen Code, welcher das Problem umgehen sollte: 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647private delegate System.Net.IPHostEntry GetHostEntryHandler&#40;string ip&#41;; public string lookup&#40;string host, int timeout&#41; &#123; &#160; &#160; try &#160; &#160; &#123; [...]]]></description>
			<content:encoded><![CDATA[<p>Ich hab&#8217; gerade &#8216;nen kleines Tool für Windows zusammen gehackt und festgestellt, dass die .NET DNS-APIs keine Möglichkeit haben einen Timout zu übergeben und immer 5sek. warten.</p>
<p>Hier &#8216;nen kleiner haufen Code, welcher das Problem umgehen sollte:</p>
<div class="codecolorer-container csharp geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br /></div></td><td><div class="csharp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0600FF; font-weight: bold;">private</span> <span style="color: #6666cc; font-weight: bold;">delegate</span> <span style="color: #000000;">System.<span style="color: #0000FF;">Net</span></span><span style="color: #008000;">.</span><span style="color: #0000FF;">IPHostEntry</span> GetHostEntryHandler<span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">string</span> ip<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
<br />
<span style="color: #0600FF; font-weight: bold;">public</span> <span style="color: #6666cc; font-weight: bold;">string</span> lookup<span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">string</span> host, <span style="color: #6666cc; font-weight: bold;">int</span> timeout<span style="color: #008000;">&#41;</span><br />
<span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">try</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; GetHostEntryHandler callback <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> GetHostEntryHandler<span style="color: #008000;">&#40;</span>Dns<span style="color: #008000;">.</span><span style="color: #0000FF;">GetHostEntry</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; IAsyncResult result <span style="color: #008000;">=</span> callback<span style="color: #008000;">.</span><span style="color: #0000FF;">BeginInvoke</span><span style="color: #008000;">&#40;</span>host, <span style="color: #0600FF; font-weight: bold;">null</span>, <span style="color: #0600FF; font-weight: bold;">null</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">if</span> <span style="color: #008000;">&#40;</span>result<span style="color: #008000;">.</span><span style="color: #0000FF;">AsyncWaitHandle</span><span style="color: #008000;">.</span><span style="color: #0000FF;">WaitOne</span><span style="color: #008000;">&#40;</span>timeout, <span style="color: #0600FF; font-weight: bold;">false</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">foreach</span> <span style="color: #008000;">&#40;</span><span style="color: #000000;">System.<span style="color: #0000FF;">Net</span></span><span style="color: #008000;">.</span><span style="color: #0000FF;">IPAddress</span> ip <span style="color: #0600FF; font-weight: bold;">in</span> callback<span style="color: #008000;">.</span><span style="color: #0000FF;">EndInvoke</span><span style="color: #008000;">&#40;</span>result<span style="color: #008000;">&#41;</span><span style="color: #008000;">.</span><span style="color: #0000FF;">AddressList</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">return</span> ip<span style="color: #008000;">.</span><span style="color: #0000FF;">ToString</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">return</span> <span style="color: #0600FF; font-weight: bold;">null</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">else</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">return</span> <span style="color: #0600FF; font-weight: bold;">null</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">catch</span> <span style="color: #008000;">&#40;</span>Exception<span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">return</span> <span style="color: #0600FF; font-weight: bold;">null</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<span style="color: #008000;">&#125;</span><br />
<br />
<span style="color: #0600FF; font-weight: bold;">public</span> <span style="color: #6666cc; font-weight: bold;">string</span> reverseLookup<span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">string</span> host, <span style="color: #6666cc; font-weight: bold;">int</span> timeout<span style="color: #008000;">&#41;</span><br />
<span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">try</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; GetHostEntryHandler callback <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> GetHostEntryHandler<span style="color: #008000;">&#40;</span>Dns<span style="color: #008000;">.</span><span style="color: #0000FF;">GetHostEntry</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; IAsyncResult result <span style="color: #008000;">=</span> callback<span style="color: #008000;">.</span><span style="color: #0000FF;">BeginInvoke</span><span style="color: #008000;">&#40;</span>host, <span style="color: #0600FF; font-weight: bold;">null</span>, <span style="color: #0600FF; font-weight: bold;">null</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">if</span> <span style="color: #008000;">&#40;</span>result<span style="color: #008000;">.</span><span style="color: #0000FF;">AsyncWaitHandle</span><span style="color: #008000;">.</span><span style="color: #0000FF;">WaitOne</span><span style="color: #008000;">&#40;</span>timeout, <span style="color: #0600FF; font-weight: bold;">false</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">return</span> callback<span style="color: #008000;">.</span><span style="color: #0000FF;">EndInvoke</span><span style="color: #008000;">&#40;</span>result<span style="color: #008000;">&#41;</span><span style="color: #008000;">.</span><span style="color: #0000FF;">HostName</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">else</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">return</span> host<span style="color: #008000;">;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">catch</span> <span style="color: #008000;">&#40;</span>Exception<span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">return</span> <span style="color: #0600FF; font-weight: bold;">null</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<span style="color: #008000;">&#125;</span></div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/c-dns-reverselookup-mit-timeout-619.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Signal Handling in C</title>
		<link>http://www.j-zero.de/blog/signal-handling-in-c-613.html</link>
		<comments>http://www.j-zero.de/blog/signal-handling-in-c-613.html#comments</comments>
		<pubDate>Tue, 05 Apr 2011 18:14:47 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=613</guid>
		<description><![CDATA[Aus gegebenem Anlass, falls es jemand braucht: 1234567891011121314151617181920#include &#60;stdio.h&#62; #include &#60;stdlib.h&#62; #include &#60;signal.h&#62; void bye&#40;int sig&#41;; main&#40;&#41; &#123; &#160; &#160; &#160; &#160; &#40;void&#41; signal&#40;SIGINT,bye&#41;; &#160; &#160; &#160; &#160; for&#40;;;&#41; &#123; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; printf&#40;&#34;foobar...\n&#34;&#41;; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#40;void&#41;getchar&#40;&#41;; &#160; &#160; &#160; &#160; &#125; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Aus gegebenem Anlass, falls es jemand braucht:</p>
<div class="codecolorer-container cpp geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br /></div></td><td><div class="cpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339900;">#include &lt;stdio.h&gt;</span><br />
<span style="color: #339900;">#include &lt;stdlib.h&gt;</span><br />
<span style="color: #339900;">#include &lt;signal.h&gt;</span><br />
<br />
<span style="color: #0000ff;">void</span> bye<span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> sig<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span><br />
<br />
main<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">void</span><span style="color: #008000;">&#41;</span> <span style="color: #0000ff;">signal</span><span style="color: #008000;">&#40;</span><span style="color: #0000ff;">SIGINT</span>,bye<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">for</span><span style="color: #008000;">&#40;</span><span style="color: #008080;">;;</span><span style="color: #008000;">&#41;</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000dd;">printf</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;foobar...<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">void</span><span style="color: #008000;">&#41;</span><span style="color: #0000dd;">getchar</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000dd;">exit</span><span style="color: #008000;">&#40;</span><span style="color: #0000ff;">EXIT_SUCCESS</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">&#125;</span><br />
<br />
<span style="color: #0000ff;">void</span><br />
bye<span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> sig<span style="color: #008000;">&#41;</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000dd;">printf</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;bye...<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000dd;">exit</span><span style="color: #008000;">&#40;</span>sig<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">&#125;</span></div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/signal-handling-in-c-613.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 4 für Ubuntu</title>
		<link>http://www.j-zero.de/blog/firefox-4-fur-ubuntu-604.html</link>
		<comments>http://www.j-zero.de/blog/firefox-4-fur-ubuntu-604.html#comments</comments>
		<pubDate>Fri, 01 Apr 2011 07:37:38 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=604</guid>
		<description><![CDATA[Da Firefox 4 wesentlich schneller als 3.6 ist, hier eine Anleitung, wie man diesen unter Ubuntu am einfachsten installiert: 123sudo add-apt-repository ppa:mozillateam/firefox-stable &#38;&#38;\ sudo apt-get update &#38;&#38;\ sudo apt-get install firefox Das deutsche Sprachpaket findet ihr hier.]]></description>
			<content:encoded><![CDATA[<p>Da Firefox 4 wesentlich schneller als 3.6 ist, hier eine Anleitung, wie man diesen unter Ubuntu am einfachsten installiert:</p>
<div class="codecolorer-container bash geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:mozillateam<span style="color: #000000; font-weight: bold;">/</span>firefox-stable <span style="color: #000000; font-weight: bold;">&amp;&amp;</span>\<br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get update</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span>\<br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get install</span> firefox</div></td></tr></tbody></table></div>
<p>Das deutsche Sprachpaket findet ihr <a href="http://releases.mozilla.org/pub/mozilla.org/firefox/releases/4.0/linux-x86_64/xpi/de.xpi">hier</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/firefox-4-fur-ubuntu-604.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brückentechnologie</title>
		<link>http://www.j-zero.de/blog/bruckentechnologie-598.html</link>
		<comments>http://www.j-zero.de/blog/bruckentechnologie-598.html#comments</comments>
		<pubDate>Thu, 17 Mar 2011 11:21:53 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=598</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.j-zero.de/wp-content/uploads/2011/03/4905_e501.jpeg"><img class="aligncenter size-medium wp-image-599" title="Brueckentechnologie.jpeg" src="http://www.j-zero.de/wp-content/uploads/2011/03/4905_e501-300x167.jpg" alt="" width="300" height="167" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/bruckentechnologie-598.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dieser Artikel enthält Content &#8230;</title>
		<link>http://www.j-zero.de/blog/dieser-artikel-enthalt-content-595.html</link>
		<comments>http://www.j-zero.de/blog/dieser-artikel-enthalt-content-595.html#comments</comments>
		<pubDate>Tue, 15 Mar 2011 10:01:20 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=595</guid>
		<description><![CDATA[Ich habe gerade mal das hier zu meiner Seite hinzugefügt, nach dem mich YouTube heute morgen schon mehrfach genervt hat.]]></description>
			<content:encoded><![CDATA[<p>Ich habe gerade mal <a href="http://www.bustallmajors.com/">das hier</a> zu meiner Seite hinzugefügt, nach dem mich YouTube heute morgen schon mehrfach genervt hat.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/dieser-artikel-enthalt-content-595.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wer scheiße sät, &#8230;</title>
		<link>http://www.j-zero.de/blog/wer-scheise-sat-570.html</link>
		<comments>http://www.j-zero.de/blog/wer-scheise-sat-570.html#comments</comments>
		<pubDate>Thu, 18 Nov 2010 17:34:00 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=570</guid>
		<description><![CDATA[&#8230; wird Wolken ernten. Ich schaute gerade meine unsortierten Bilder durch und fand das Folgende Bild. Es entstand bei einer Sommer-Rad-Tour mit Geocaching-Einlage und hat, wie ich finde, eine merkwürdige aber unglaubich starke Philosophie.]]></description>
			<content:encoded><![CDATA[<p><em>&#8230; wird Wolken ernten.</em></p>
<p>Ich schaute gerade meine unsortierten Bilder durch und fand das Folgende Bild. Es entstand bei einer Sommer-Rad-Tour mit Geocaching-Einlage und hat, wie ich finde, eine merkwürdige aber unglaubich starke Philosophie.</p>
<p><a href="http://www.j-zero.de/wp-content/uploads/2010/11/cimg2576.jpg"><img class="aligncenter size-medium wp-image-571" title="wolkensaeher" src="http://www.j-zero.de/wp-content/uploads/2010/11/cimg2576-300x225.jpg" alt="Wer scheiße sät, wird Wolken ernten." width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/wer-scheise-sat-570.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Häuptling der 15 Sommer</title>
		<link>http://www.j-zero.de/blog/hauptling-der-15-sommer-466.html</link>
		<comments>http://www.j-zero.de/blog/hauptling-der-15-sommer-466.html#comments</comments>
		<pubDate>Tue, 23 Feb 2010 21:07:51 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>

		<guid isPermaLink="false">http://blog.j-zero.de/?p=466</guid>
		<description><![CDATA[Heute feiert der Apache HTTP Server 15 jähriges Jubiläum. Da ich ihn selbst oft und gern nutze, gratuliere ich natürlich auch. In diesem Sinne: Happy Birthday.]]></description>
			<content:encoded><![CDATA[<p>Heute feiert der <a href="http://httpd.apache.org/">Apache HTTP Server</a> 15 jähriges Jubiläum. Da ich ihn selbst oft und gern nutze, gratuliere ich natürlich auch.<br />
In diesem Sinne: Happy Birthday.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/hauptling-der-15-sommer-466.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wer die Wahl hat&#8230;</title>
		<link>http://www.j-zero.de/blog/wer-die-wahl-hat-381.html</link>
		<comments>http://www.j-zero.de/blog/wer-die-wahl-hat-381.html#comments</comments>
		<pubDate>Mon, 14 Sep 2009 07:48:42 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>
		<category><![CDATA[Fotos]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Piraten]]></category>
		<category><![CDATA[Wahlkampf]]></category>
		<category><![CDATA[Zensur]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=381</guid>
		<description><![CDATA[Mahlzeit, das nenne ich mal Wahlwerbung! Piraten vs. Zensursula CDU-Plakat zerstört Internet-/Festnetzanbindung SPD hängt alte Schröder-Plakate auf]]></description>
			<content:encoded><![CDATA[<p>Mahlzeit,</p>
<p>das nenne ich mal Wahlwerbung!</p>
<p><a href="http://matze.efreun.de/?p=40">Piraten vs. Zensursula</a></p>
<p><a href="http://matze.efreun.de/?p=40"><img class="alignnone" title="Piraten vs. Zensursula" src="http://matze.efreun.de/uschi1.jpg" alt="" width="121" height="162" /></a></p>
<p><a href="http://blog.fefe.de/?ts=b457ebb8">CDU-Plakat zerstört Internet-/Festnetzanbindung</a></p>
<p><a href="http://blog.fefe.de/?ts=b45bd004">SPD hängt alte Schröder-Plakate auf</a></p>
<p><a href="http://blog.fefe.de/?ts=b45bd004"><img class="alignnone" title="Schröder Plakat - Steinmeier im Hintergrund" src="http://outpost.h3q.com/fnord/SPD-verzweifelt.jpg" alt="" width="117" height="155" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/wer-die-wahl-hat-381.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changelog</title>
		<link>http://www.j-zero.de/blog/changelog-337.html</link>
		<comments>http://www.j-zero.de/blog/changelog-337.html#comments</comments>
		<pubDate>Mon, 24 Aug 2009 14:50:23 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=337</guid>
		<description><![CDATA[Einige Designfehler im Theme beseitigt Einige Dinge am Theme geändert und hinzugefügt GPG Public Key als Seite hinzugefügt]]></description>
			<content:encoded><![CDATA[<ul>
<li>Einige Designfehler im Theme beseitigt</li>
<li>Einige Dinge am Theme geändert und hinzugefügt</li>
<li><a href="http://www.j-zero.de/gpg">GPG Public Key</a> als Seite hinzugefügt</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/changelog-337.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monatshoroskop: Juni 2009</title>
		<link>http://www.j-zero.de/blog/monatshoroskop-juni-2009-263.html</link>
		<comments>http://www.j-zero.de/blog/monatshoroskop-juni-2009-263.html#comments</comments>
		<pubDate>Sun, 31 May 2009 23:00:36 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>
		<category><![CDATA[Horoskop]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=263</guid>
		<description><![CDATA[Steinbock: Zebras sind weiß-, nicht schwarzgestreift Wassermann: Grillen hören mit den Knien Fische: Schmetterlinge haben 12.000 Augen Widder: Goldfische können Seekrank werden Stier: Haie sterben, wenn sie nicht schwimmen Zwillinge: Der letzte Dodo starb 1681 Krebs: Kolibris können nicht laufen Löwe: Alle Hühner der Welt legen jedes jahr 400.000.000.000 Eier Jungfrau: Krokodile können nicht kauen [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Steinbock:</strong></p>
<ul>
<li>Zebras sind weiß-, nicht schwarzgestreift</li>
</ul>
<p><strong>Wassermann:</strong></p>
<ul>
<li>Grillen hören mit den Knien</li>
</ul>
<p><strong>Fische:</strong></p>
<ul>
<li>Schmetterlinge haben 12.000 Augen<strong><br />
</strong></li>
</ul>
<p><strong>Widder:</strong></p>
<ul>
<li>Goldfische können Seekrank werden<strong><br />
</strong></li>
</ul>
<p><strong>Stier:</strong></p>
<ul>
<li>Haie sterben, wenn sie nicht schwimmen<strong><br />
</strong></li>
</ul>
<p><strong>Zwillinge:</strong></p>
<ul>
<li>Der letzte Dodo starb 1681<strong><br />
</strong></li>
</ul>
<p><strong>Krebs:</strong></p>
<ul>
<li>Kolibris können nicht laufen<strong><br />
</strong></li>
</ul>
<p><strong>Löwe:</strong></p>
<ul>
<li>Alle Hühner der Welt legen jedes jahr 400.000.000.000 Eier</li>
</ul>
<p><strong>Jungfrau:</strong></p>
<ul>
<li>Krokodile können nicht kauen<strong><br />
</strong></li>
</ul>
<p><strong>Waage:</strong></p>
<ul>
<li>Zitteraale produzieren bis zu 500V<strong><br />
</strong></li>
</ul>
<p><strong>Skorpion:</strong></p>
<ul>
<li>Tintenfische können sich in Aufregung selbst fressen.<strong><br />
</strong></li>
</ul>
<p><strong>Schütze:</strong></p>
<ul>
<li>Elefanten können nicht in die Luft springen.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/monatshoroskop-juni-2009-263.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mehrkanalarbeiter</title>
		<link>http://www.j-zero.de/blog/mehrkanalarbeiter-250.html</link>
		<comments>http://www.j-zero.de/blog/mehrkanalarbeiter-250.html#comments</comments>
		<pubDate>Sat, 30 May 2009 13:11:43 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Musik]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[HiFi]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=250</guid>
		<description><![CDATA[Mahlzeit, ich habe vor schon etwas längerer Zeit meinen neuen AV-Receiver (Marantz SR-5003) erhalten, war bisher aber noch nicht in der Lage diesen ausgiebig zu testen. Dies habe ich jetzt nachgeholt. Nach anfänglichen Schwierigkeiten bezüglich der Verkabelung läuft das gute Stück nun hervorragend. Die besagten Schwierigkeiten lagen zum Teil an meinem Rechner, zum Teil auch [...]]]></description>
			<content:encoded><![CDATA[<p>Mahlzeit,</p>
<p><a href="http://www.j-zero.de/wp-content/uploads/2009/05/cimg1827.jpg"><img class="alignright size-medium wp-image-252" title="cimg1827" src="http://www.j-zero.de/wp-content/uploads/2009/05/cimg1827-300x225.jpg" alt="cimg1827" width="300" height="225" /></a>ich habe vor schon etwas längerer Zeit meinen neuen AV-Receiver (<a href="http://www.marantz.com/new/index.cfm?fuseaction=Products.Product&amp;cont=de&amp;bus=hf&amp;prod_id=3772&amp;series=comp&amp;type=avr">Marantz SR-5003</a>) erhalten, war bisher aber noch nicht in der Lage diesen ausgiebig zu testen. Dies habe ich jetzt nachgeholt. Nach anfänglichen Schwierigkeiten bezüglich der Verkabelung läuft das gute Stück nun hervorragend. Die besagten Schwierigkeiten lagen zum Teil an meinem Rechner, zum Teil auch an defekten oder dem nicht Vorhandensein von entsprechenden Kabeln (TOSLINK). Wer kann den ahnen, dass mein Mainboard Aufgrund eines Treibers von nVidia über den HDMI-Ausgang IMMER &#8220;Multichannel 5.1 PCM&#8221; ausgibt? Zwischenzeitlich ist auch mal nen Kabel in meinem Rechner verschmorrt&#8230; Produktionfehler; Massekontakt im Stecker.</p>
<p>Hier ein paar Daten zu dem Receiver:</p>
<ul>
<li>7 x 90 Watt / 8 Ohm RMS</li>
<li>u.A. Dolby TrueHD, DTS-HD</li>
<li>M-DAX für verbesserte Wiedergabe komprimierter Audio-Formate</li>
<li>Automatische Raumeinmessung von Audyssey mit Mikrofon</li>
<li>Videoskalierung von I-Chips für bis zu 1080p</li>
<li>3 HDMI 1.3a Eingänge / 1 HDMI 1.3a Ausgang</li>
<li>HT-EQ</li>
<li>Pure Direct</li>
<li>Unterstützt Multiroom / MultiSource</li>
<li>RS232c</li>
<li>Lernfähige Fernbedienung</li>
</ul>
<p>Wie dem auch sei, nun ist alles verkabelt und alles geht. Ich habe einige Filme mit <a href="http://www.dolby.de">Dolby Digital </a>und <a href="http://www.dts.com/">DTS</a> probiert und sehr erfreut über den Klang des Receivers. Getestet habe ich unter meinem iPod und diversen CDs auch folgende DVDs:</p>
<ul>
<li>Matrix Trilogy: DTS 5.1</li>
<li>Pulp Fiction: DD 5.1</li>
<li>Die Simpsons &#8211; Der Film:  DTS 5.1</li>
<li>Die Ärtze &#8211; Rock &#8216;n&#8217; Roll Realschule: DD 5.1</li>
<li>Nirvana &#8211; MTV Unplugged: DD 5.1</li>
<li>Fantastischen Vier &#8211; MTV Unplugged: DD 5.1</li>
<li>Die Toten Hosen &#8211; MTV Unplugged: DD 5.1</li>
<li>Eric Clapton &#8211; MTV Unplugged: DD 5.1</li>
<li>Eric Clapton &#8211; One More Car, One More Rider: DTS 5.1</li>
<li>Metallica S&amp;M &#8211; Band &amp; Orchestra: DD 5.1/Orchestra Only DD 2.0</li>
<li>AC/DC &#8211; Stiff Upper Lip: DD 5.1</li>
</ul>
<p>Ich bin absolut zufrieden mit dem Teil. Was als nächstes kommt sind neue Lautsprecher, da meine alten langsam ein wenig in die Jahre kommen. In welcher Form weiß ich aber noch nicht.</p>
<p>Außerdem folgen demnächst noch Bilder der Rückansicht.</p>
<p>bis neulich</p>
<p>j-zero</p>
<p>PS: Sehr beeindruckt hat mich übrigends die Vielzahl der Audiospuren auf der Metallica S&amp;M DVD. Möglich sind dort:</p>
<ul>
<li>Band &amp; Orchestra 5.1</li>
<li> Band &amp; Orchestra 2.0</li>
<li>Band only 2.0</li>
<li> Orchestra only 2.0.</li>
</ul>
<p>Es ist sehr cool mal nur das Orchester zu hören. <img src='http://www.j-zero.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/mehrkanalarbeiter-250.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jesus-Sky-Trip</title>
		<link>http://www.j-zero.de/blog/jesus-sky-trip-245.html</link>
		<comments>http://www.j-zero.de/blog/jesus-sky-trip-245.html#comments</comments>
		<pubDate>Fri, 22 May 2009 12:06:30 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=245</guid>
		<description><![CDATA[Mahlzeit, gestern haben wir erfolgreich Jesus-Sky-Trip zelibriert. Hier die Fotos aus meiner Kamera: bis neulich j-zero]]></description>
			<content:encoded><![CDATA[<p>Mahlzeit,</p>
<p>gestern haben wir erfolgreich Jesus-Sky-Trip zelibriert. Hier die Fotos aus meiner Kamera:</p>

<div class="ngg-galleryoverview" id="ngg-gallery-5-245">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-394" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1799.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1799.JPG" alt="CIMG1799.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1799.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-393" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1798.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1798.JPG" alt="CIMG1798.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1798.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-392" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1797.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1797.JPG" alt="CIMG1797.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1797.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-391" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1796.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1796.JPG" alt="CIMG1796.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1796.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-390" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1795.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1795.JPG" alt="CIMG1795.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1795.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-389" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1794.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1794.JPG" alt="CIMG1794.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1794.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-388" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1793.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1793.JPG" alt="CIMG1793.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1793.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-387" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1792.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1792.JPG" alt="CIMG1792.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1792.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-386" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1791.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1791.JPG" alt="CIMG1791.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1791.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-385" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1790.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1790.JPG" alt="CIMG1790.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1790.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-384" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1789.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1789.JPG" alt="CIMG1789.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1789.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-383" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1787.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1787.JPG" alt="CIMG1787.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1787.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-382" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1786.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1786.JPG" alt="CIMG1786.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1786.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-381" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1785.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1785.JPG" alt="CIMG1785.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1785.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-380" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1784.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1784.JPG" alt="CIMG1784.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1784.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-379" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1783.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1783.JPG" alt="CIMG1783.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1783.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-378" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1782.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1782.JPG" alt="CIMG1782.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1782.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-377" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1779.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1779.JPG" alt="CIMG1779.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1779.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-376" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1778.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1778.JPG" alt="CIMG1778.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1778.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-375" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/CIMG1777.JPG" title=" " class="shutterset_set_5" >
								<img title="CIMG1777.JPG" alt="CIMG1777.JPG" src="http://www.j-zero.de/wp-content/gallery/jesus-sky-trip/thumbs/thumbs_CIMG1777.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span class="current">1</span><a class="page-numbers" href="http://www.j-zero.de/blog/jesus-sky-trip-245.html?nggpage=2">2</a><a class="page-numbers" href="http://www.j-zero.de/blog/jesus-sky-trip-245.html?nggpage=3">3</a><a class="next" id="ngg-next-2" href="http://www.j-zero.de/blog/jesus-sky-trip-245.html?nggpage=2">&#9658;</a></div> 	
</div>


<p>bis neulich</p>
<p>j-zero</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/jesus-sky-trip-245.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monatshoroskop: Mai 2009</title>
		<link>http://www.j-zero.de/blog/monatshoroskop-mai-2009-212.html</link>
		<comments>http://www.j-zero.de/blog/monatshoroskop-mai-2009-212.html#comments</comments>
		<pubDate>Thu, 30 Apr 2009 23:00:45 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=212</guid>
		<description><![CDATA[Steinbock: Vor dem Öffnen des Gerätes Netzstecker ziehen. Wassermann: Hochspannung. Vorsicht Lebensgefahr! Fische: Laser Klasse 2. Nicht in den Strahl blicken. Widder: Aufzug im Brandfall nicht benutzen. Stier: Abgabe von Spirituosen und Tabakwaren an Kinder und Jugendliche unter 18 Jahren verboten. Zwillinge: Feuer, offenes Licht und Rauchen verboten. Krebs: 80 bei Nässe. Löwe: Kleidung nicht [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Steinbock:</strong></p>
<ul>
<li>Vor dem Öffnen des Gerätes Netzstecker ziehen.</li>
</ul>
<p><strong>Wassermann:</strong></p>
<ul>
<li>Hochspannung. Vorsicht Lebensgefahr!</li>
</ul>
<p><strong>Fische:</strong></p>
<ul>
<li>Laser Klasse 2. Nicht in den Strahl blicken.<strong><br />
</strong></li>
</ul>
<p><strong>Widder:</strong></p>
<ul>
<li>Aufzug im Brandfall nicht benutzen.<strong><br />
</strong></li>
</ul>
<p><strong>Stier:</strong></p>
<ul>
<li>Abgabe von Spirituosen und Tabakwaren an Kinder und Jugendliche unter 18 Jahren verboten<strong>.<br />
</strong></li>
</ul>
<p><strong>Zwillinge:</strong></p>
<ul>
<li>Feuer, offenes Licht und Rauchen verboten.<strong><br />
</strong></li>
</ul>
<p><strong>Krebs:</strong></p>
<ul>
<li>80 bei Nässe<strong>.<br />
</strong></li>
</ul>
<p><strong>Löwe:</strong></p>
<ul>
<li>Kleidung nicht am Körper bügeln!</li>
</ul>
<p><strong>Jungfrau:</strong></p>
<ul>
<li>Nicht ins Feuer werfen.<strong><br />
</strong></li>
</ul>
<p><strong>Waage:</strong></p>
<ul>
<li>Avoid dead.<strong><br />
</strong></li>
</ul>
<p><strong>Skorpion:</strong></p>
<ul>
<li>Rauchen in der Schwangerschaft schadet ihrem Kind.<strong><br />
</strong></li>
</ul>
<p><strong>Schütze:</strong></p>
<ul>
<li>Objects in the rear view mirror may appear closer than they are</li>
</ul>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/monatshoroskop-mai-2009-212.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perl Twitter</title>
		<link>http://www.j-zero.de/blog/perl-twitter-181.html</link>
		<comments>http://www.j-zero.de/blog/perl-twitter-181.html#comments</comments>
		<pubDate>Fri, 06 Mar 2009 15:45:52 +0000</pubDate>
		<dc:creator>j-zero</dc:creator>
				<category><![CDATA[Anderes]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programmieren]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.j-zero.de/?p=181</guid>
		<description><![CDATA[Mahlzeit! Ich bin nun auch unter die Twitterer gegangen, nach dem ich ja den Blogkram auch schon mit gemacht habe. Nach kurzer Zeit habe ich ein Tool gesucht, mit dem ich aus der Kommandozeile unter Linux einen Tweet absetzen kann, habe aber erstmal nix gefunden. Also habe ich mal geschaut, ob es ein Perl Modul [...]]]></description>
			<content:encoded><![CDATA[<p>Mahlzeit!</p>
<p>Ich bin nun auch unter die <a href="http://www.twitter.com" target="_blank">Twitterer</a> gegangen, nach dem ich ja den Blogkram auch schon mit gemacht habe. Nach kurzer Zeit habe ich ein Tool gesucht, mit dem ich aus der Kommandozeile unter Linux einen Tweet absetzen kann, habe aber erstmal nix gefunden. Also habe ich mal geschaut, ob es ein <a href="http://search.cpan.org" target="_blank">Perl Modul</a> gibt. Und ja(!), es gibt eins, und zwar: &#8220;<a href="http://search.cpan.org/~cthom/Net-Twitter-2.10/lib/Net/Twitter.pm" target="_blank">Net::Twitter</a>&#8221; &#8211; wär hätte das gedacht! Ihr könnt das einfach mittels &#8220;perl -MCPAN -e &#8220;install Net::Twitter&#8221; installieren.</p>
<p>Hier ist mein kleines Script, welches aus der Konsole Tweets sendet, viel Spaß damit.</p>
<div class="codecolorer-container perl geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br /></div></td><td><div class="perl codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;">#!/usr/bin/perl</span><br />
<span style="color: #000000; font-weight: bold;">use</span> Getopt<span style="color: #339933;">::</span><span style="color: #006600;">Std</span><span style="color: #339933;">;</span><br />
<span style="color: #000000; font-weight: bold;">use</span> Term<span style="color: #339933;">::</span><span style="color: #006600;">ReadKey</span><span style="color: #339933;">;</span><br />
<span style="color: #000000; font-weight: bold;">use</span> Net<span style="color: #339933;">::</span><span style="color: #006600;">Twitter</span><span style="color: #339933;">;</span><br />
getopt<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">'upt'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">\%opts</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #0000ff;">$usage</span><span style="color: #339933;">=</span> <span style="color: #cc0000; font-style: italic;">&lt;&lt;USAGE;<br />
commandline twitter 0.1b - www.j-zero.de<br />
Usage</span><span style="color: #339933;">:</span> twitter_cmd <span style="color: #339933;">-</span>u username <span style="color: #009900;">&#91;</span><span style="color: #339933;">-</span>t tweet<span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#91;</span><span style="color: #339933;">-</span>p password<span style="color: #009900;">&#93;</span><br />
USAGE<br />
<span style="color: #000000; font-weight: bold;">sub</span> gp<span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <a href="http://perldoc.perl.org/functions/print.html"><span style="color: #000066;">print</span></a> <span style="color: #ff0000;">&quot;password: &quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; ReadMode <span style="color: #cc66cc;">2</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <a href="http://perldoc.perl.org/functions/chomp.html"><span style="color: #000066;">chomp</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$l</span> <span style="color: #339933;">=</span> ReadLine<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <br />
&nbsp; &nbsp; ReadMode <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <a href="http://perldoc.perl.org/functions/print.html"><span style="color: #000066;">print</span></a> <span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <a href="http://perldoc.perl.org/functions/return.html"><span style="color: #000066;">return</span></a> <span style="color: #0000ff;">$l</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #0000ff;">$opts</span><span style="color: #009900;">&#123;</span>u<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><a href="http://perldoc.perl.org/functions/print.html"><span style="color: #000066;">print</span></a> <span style="color: #0000ff;">$usage</span><span style="color: #339933;">;</span><a href="http://perldoc.perl.org/functions/exit.html"><span style="color: #000066;">exit</span></a> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span><span style="color: #0000ff;">$u</span><span style="color: #339933;">=</span><span style="color: #0000ff;">$opts</span><span style="color: #009900;">&#123;</span>u<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><br />
<br />
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #0000ff;">$opts</span><span style="color: #009900;">&#123;</span>t<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><a href="http://perldoc.perl.org/functions/print.html"><span style="color: #000066;">print</span></a> <span style="color: #ff0000;">&quot;tweet: &quot;</span><span style="color: #339933;">;</span><a href="http://perldoc.perl.org/functions/chomp.html"><span style="color: #000066;">chomp</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$t</span><span style="color: #339933;">=</span><span style="color: #009999;">&lt;STDIN&gt;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span><span style="color: #0000ff;">$t</span><span style="color: #339933;">=</span><span style="color: #0000ff;">$opts</span><span style="color: #009900;">&#123;</span>t<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><br />
<br />
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #0000ff;">$opts</span><span style="color: #009900;">&#123;</span>p<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #0000ff;">$p</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&amp;gp</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span><span style="color: #0000ff;">$p</span><span style="color: #339933;">=</span><span style="color: #0000ff;">$opts</span><span style="color: #009900;">&#123;</span>p<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><br />
<span style="color: #0000ff;">$s</span><span style="color: #339933;">=</span>Net<span style="color: #339933;">::</span><span style="color: #006600;">Twitter</span><span style="color: #339933;">-&gt;</span><span style="color: #000000; font-weight: bold;">new</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>username<span style="color: #339933;">=&gt;</span><span style="color: #ff0000;">&quot;$u&quot;</span><span style="color: #339933;">,</span>password<span style="color: #339933;">=&gt;</span><span style="color: #ff0000;">&quot;$p&quot;</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #0000ff;">$s</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">update</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>status<span style="color: #339933;">=&gt;</span><span style="color: #ff0000;">&quot;$t&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<a href="http://perldoc.perl.org/functions/exit.html"><span style="color: #000066;">exit</span></a> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
<p>j-zero</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-zero.de/blog/perl-twitter-181.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

