<?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/"
	>

<channel>
	<title>Ansis World</title>
	<atom:link href="http://ansi.interblc.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ansi.interblc.com</link>
	<description>Family, Work, Life</description>
	<pubDate>Tue, 06 Jan 2009 09:26:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>RSS Torrent List from Onlinetvrecorder.com</title>
		<link>http://ansi.interblc.com/2009/01/05/rss-torrent-list-from-onlinetvrecordercom/</link>
		<comments>http://ansi.interblc.com/2009/01/05/rss-torrent-list-from-onlinetvrecordercom/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 16:00:12 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Tools]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[cookie]]></category>

		<category><![CDATA[howto]]></category>

		<category><![CDATA[onlinetvrecorder]]></category>

		<category><![CDATA[rss]]></category>

		<category><![CDATA[torrent]]></category>

		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=153</guid>
		<description><![CDATA[Moin
Onlinetvrecorder disabled the good old RSS where I can get the list of my torrents of recorded movies. Unfortunatelly the new RSS link requires a session cookie what is not so easy with a bash script. Here is a small solution how to enable the automatic download of the RSS stream in order to download [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p><a href="http://www.Onlinetvrecorder.com" target="_blank">Onlinetvrecorder</a> disabled the good old RSS where I can get the list of my torrents of recorded movies. Unfortunatelly the new RSS link requires a session cookie what is not so easy with a bash script. Here is a small solution how to enable the automatic download of the RSS stream in order to download the feeds automatically.</p>
<p>First get an session cookie for <a href="http://www.onlinetvrecorder.com" target="_blank">www.onlinetvrecorder.com</a> and store it into a local file.</p>
<pre>wget \
    --save-cookies ~/.cookies/onlinetvrecorder \
<strong>    --keep-session-cookies \</strong>
    --post-data "email=<strong>name%40provider.com</strong>&amp;pass=<strong>whatever</strong>&amp;checkbox_remember=checkbox_remember&amp;btn_login=Login&amp;do=login" \
    -O - \
    http://www.onlinetvrecorder.com/index.php \
    &gt; /dev/null</pre>
<p>With this command you store the onlinetvrecorder session key to a file what you can use later on to download the RSS feed. &#8220;keep-session-cookies&#8221; are important because the key is only valid in the session. Replace &#8220;name&#8221;, &#8220;provider.com&#8221;  and &#8220;whatever&#8221; with your personal data. the &#8220;%40&#8243; is url code for @.</p>
<pre>wget -o /dev/null -O - --load-cookies ~/.cookies/onlinetvrecorder "http://www.onlinetvrecorder.com/rss/rss.php?hash=<strong>hashcode</strong>&amp;userid=<strong>id</strong>"</pre>
<p>Also replace &#8220;hashcode&#8221; and &#8220;id&#8221; with your personal data. You can see it in the browser when you check the RSS feed in your browser. Thats all. I think the uTorrent or other trackers can deal with a local file to parse. So just use a cronjob to store this file from time to time to local disc and let uTorrent do the rest. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=RSS%20Torrent%20List%20from%20Onlinetvrecorder.com&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F01%2F05%2Frss-torrent-list-from-onlinetvrecordercom%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/01/05/rss-torrent-list-from-onlinetvrecordercom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using usbprog to build a PowerSwitch with USB connection</title>
		<link>http://ansi.interblc.com/2009/01/02/using-usbprog-to-build-a-powerswitch-with-usb-connection/</link>
		<comments>http://ansi.interblc.com/2009/01/02/using-usbprog-to-build-a-powerswitch-with-usb-connection/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 12:30:39 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Atmel]]></category>

		<category><![CDATA[atmega8]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[fuse]]></category>

		<category><![CDATA[pin]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=118</guid>
		<description><![CDATA[Moin
Today I found a lot of time working on my Atmel project. My colleague Angel pointed me to the AVR USB lib project (link). Really great and makes the use of USB as easy as the good old RS232. In fact I found it even easier to deal now with USB then RS232. And hey [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Today I found a lot of time working on my Atmel project. My colleague Angel pointed me to the AVR USB lib project (<a href="http://www.obdev.at/products/avrusb/index.html" target="_blank">link</a>). Really great and makes the use of USB as easy as the good old RS232. In fact I found it even easier to deal now with USB then RS232. And hey you get 5V for free. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I started with the <a href="http://www.obdev.at/products/avrusb/powerswitch.html" target="_blank">PowerSwitch</a> project. Nice little USB interface to control 8 digital outputs (for switching on or off whatever you like). Its a nice Project to get started with the lib.</p>
<p>For programming the Atmel I used my <a href="http://www.embedded-projects.net/index.php?page_id=165" target="_blank">USBProg</a> programmer from Embedded Project. With the SPI its really great to plash the Atmel inside your circuit. Be aware that the Pins are a little bit different than in the description. In order to flash the code to my atmega8 I used avrdude:</p>
<pre>avrdude -c avrispv2 -P usb -p  atmega8 -B8 -U flash:w:main.hex:i</pre>
<p>The <strong>B8</strong> parameter is very important otherwise the Atmega8 is not recognized. When you use the Atmega8 instead of the micro controller mentioned in the documentation you have to take care to use the right pins on the Atmel (it costs me 1 hour of searching for a wire error before I thought of that. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> )</p>
<p>The changes for the ISP Connector are:</p>
<ul>
<li>Pin 10 from the ISP connection is not connected as described to TXD instead its connected to PIN 8 and 22 as beeing the GND.</li>
<li>Pin 4,6 and 8 from the ISP connection are not connected at all</li>
</ul>
<p>The changes on the Atmel itself are:</p>
<ul>
<li><strong>XTAL </strong>
<ul>
<li>4-&gt;9</li>
<li>5-&gt;10</li>
</ul>
</li>
<li><strong>GND </strong>
<ul>
<li>10 -&gt;8,22</li>
</ul>
</li>
<li><strong>AIN</strong>
<ul>
<li>12-&gt;14</li>
<li>13-&gt;15</li>
</ul>
</li>
</ul>
<p>The fuses can me flashed with:</p>
<p>or checked with</p>
<pre>sudo avrdude -c avrispv2 -P usb -p atmega8 -B8 -U hfuse:r:hfuse.hex:b</pre>
<pre>sudo avrdude -c avrispv2 -P usb -p atmega8 -B8 -U lfuse:r:lfuse.hex:b</pre>
<p>After that the PowerSwitch worked great!</p>
<pre>./powerSwitch on 0 2</pre>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Using%20usbprog%20to%20build%20a%20PowerSwitch%20with%20USB%20connection&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F01%2F02%2Fusing-usbprog-to-build-a-powerswitch-with-usb-connection%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/01/02/using-usbprog-to-build-a-powerswitch-with-usb-connection/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Visiting Wilhelma</title>
		<link>http://ansi.interblc.com/2009/01/01/visiting-wilhelma/</link>
		<comments>http://ansi.interblc.com/2009/01/01/visiting-wilhelma/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 20:16:08 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Family]]></category>

		<category><![CDATA[wilhelma]]></category>

		<category><![CDATA[zoo]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=129</guid>
		<description><![CDATA[Moin
Today we went to the beautiful zoo in Stuttgart called Wilhelma. Was great to see guys and specially the Aquariums. If you ever visit Stuttgart the Wilhelma is a must! Here are some impressions. More are on my flickr account.

   

    

	]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Today we went to the beautiful zoo in Stuttgart called <a href="http://www.wilhelma.de/">Wilhelma.</a> Was great to see guys and specially the Aquariums. If you ever visit Stuttgart the Wilhelma is a must! Here are some impressions. More are on my <a href="http://www.flickr.com/photos/ansgarschmidt/">flickr</a> account.</p>
<p><a title="01.01.2009" href="http://farm4.static.flickr.com/3198/3155519993_760d8676b7_b.jpg" rel="lightbox[129]"><img class="slickr-post" src="http://farm4.static.flickr.com/3198/3155519993_760d8676b7.jpg" alt="01.01.2009" width="500" height="375" /></a></p>
<p><a title="01.01.2009" href="http://farm4.static.flickr.com/3236/3155392925_76680dfc4b_b.jpg" rel="lightbox[129]"><img class="slickr-post" src="http://farm4.static.flickr.com/3236/3155392925_76680dfc4b.jpg" alt="01.01.2009" width="500" height="375" /></a> <a title="01.01.2009" href="http://farm4.static.flickr.com/3083/3156328042_0f35135690_b.jpg" rel="lightbox[129]"><img class="slickr-post" src="http://farm4.static.flickr.com/3083/3156328042_0f35135690.jpg" alt="01.01.2009" width="500" height="375" /></a> <a title="01.01.2009" href="http://farm4.static.flickr.com/3224/3155401205_f750456571_b.jpg" rel="lightbox[129]"><img class="slickr-post" src="http://farm4.static.flickr.com/3224/3155401205_f750456571.jpg" alt="01.01.2009" width="500" height="375" /></a> <a title="01.01.2009" href="http://farm4.static.flickr.com/3252/3156274786_472c70f4ca_b.jpg" rel="lightbox[129]"><img class="slickr-post" src="http://farm4.static.flickr.com/3252/3156274786_472c70f4ca.jpg" alt="01.01.2009" width="375" height="500" /></a></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Visiting%20Wilhelma&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F01%2F01%2Fvisiting-wilhelma%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/01/01/visiting-wilhelma/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Aquarium arrived juuhuuu</title>
		<link>http://ansi.interblc.com/2008/12/21/aquarium-arrived-juuhuuu/</link>
		<comments>http://ansi.interblc.com/2008/12/21/aquarium-arrived-juuhuuu/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 14:42:32 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Aquarium]]></category>

		<category><![CDATA[xmas]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=113</guid>
		<description><![CDATA[Moin
Great, my xmas present arrived yesterday. Masha (aka @schneckchen) presented me a very cool Aquarium. I am sooo happy. On my flickr account are some pictures and as soon as we are back from holiday I will install all filters, heaters aso. You will see more pictures on flickr and here.  


   [...]]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
Great, my xmas present arrived yesterday. Masha (aka @schneckchen) presented me a very cool Aquarium. I am sooo happy. On my flickr account are some pictures and as soon as we are back from holiday I will install all filters, heaters aso. You will see more pictures on flickr and here. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a title="01.01.2009" href="http://farm4.static.flickr.com/3283/3155324089_a83e97eb83.jpg" rel="lightbox[113]"><img class="slickr-post" src="http://farm4.static.flickr.com/3283/3155324089_a83e97eb83_m.jpg" alt="01.01.2009" width="240" height="180" /></a></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Aquarium%20arrived%20juuhuuu&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F12%2F21%2Faquarium-arrived-juuhuuu%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/12/21/aquarium-arrived-juuhuuu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installed Akismet on my blog</title>
		<link>http://ansi.interblc.com/2008/12/21/installed-akismet-on-my-blog/</link>
		<comments>http://ansi.interblc.com/2008/12/21/installed-akismet-on-my-blog/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 13:07:42 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[System]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[plugin]]></category>

		<category><![CDATA[SPAM]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=115</guid>
		<description><![CDATA[Just installed Akismet on my blog. Hope I can handle now all these bloody spams. 82 in one day was tooo much!
And here is the counter: 

    

	]]></description>
			<content:encoded><![CDATA[<p>Just installed Akismet on my blog. Hope I can handle now all these bloody spams. 82 in one day was tooo much!</p>
<p>And here is the counter: <?php akismet_counter(); ?></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Installed%20Akismet%20on%20my%20blog&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F12%2F21%2Finstalled-akismet-on-my-blog%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/12/21/installed-akismet-on-my-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>First new Post with WordPress 2.7</title>
		<link>http://ansi.interblc.com/2008/12/12/first-new-post-with-wordpress-27/</link>
		<comments>http://ansi.interblc.com/2008/12/12/first-new-post-with-wordpress-27/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 22:14:57 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[System]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=107</guid>
		<description><![CDATA[just installed the latest greatest Wordpress 2.7 and hey the Dashboard looks great. Love the new interface.

    

	]]></description>
			<content:encoded><![CDATA[<p>just installed the latest greatest Wordpress 2.7 and hey the Dashboard looks great. Love the new interface.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=First%20new%20Post%20with%20WordPress%202.7&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F12%2F12%2Ffirst-new-post-with-wordpress-27%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/12/12/first-new-post-with-wordpress-27/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mixtapes</title>
		<link>http://ansi.interblc.com/2008/12/07/mixtapes/</link>
		<comments>http://ansi.interblc.com/2008/12/07/mixtapes/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 10:14:46 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=101</guid>
		<description><![CDATA[Moin
As in good old times when its raining outside, it Sunday and you definitely don&#8217;t want to clean apartment (ok at this time it was my room at parents place). There is a nice web2.0 side for making MixedTapes.
Here is the one I god from @adventskalender (nice twitter agent): christmas-favorites
And as all great Web2.0 applications [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>As in good old times when its raining outside, it Sunday and you definitely don&#8217;t want to clean apartment (ok at this time it was my room at parents place). There is a nice web2.0 <a href="http://www.mixwit.com" target="_blank">side</a> for making MixedTapes.</p>
<p>Here is the one I god from <a href="http://twitter.com/adventskalender" target="_blank">@adventskalender</a> (nice <a href="http://www.twitter.com" target="_blank">twitter</a> agent): <a href="http://www.mixwit.com/squirrelsgonewild/christmas-favorites" target="_blank">christmas-favorites</a></p>
<p>And as all great Web2.0 applications you can embed it into your own blog. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<div style="width: 430px; text-align:center;"><embed width="426" height="327" type="application/x-shockwave-flash" src="http://www.mixwit.com/flash/widgets/shell.swf" wmode="transparent" flashvars="env=embed&#038;widget=6c56e93ffd5fbbb8e5d9205645f85272&#038;playlist=4e5534157588fe900569414abfa978a0&#038;vuid=embed"></embed><br />
<script src="http://www.mixwit.com/m.js"></script><a href="http://www.mixwit.com/squirrelsgonewild?e"><img alt="Mixwit" border="0" src="http://www.mixwit.com/p.jpg" style="padding: 0px;" /></a><a href="http://www.mixwit.com/create?e"><img alt="Mixwit make a mixtape" border="0" src="http://www.mixwit.com/m.jpg" style="padding: 0px;" /></a><a href="http://www.mixwit.com/?e"><img alt="Mixwit mixtapes" border="0" src="http://www.mixwit.com/l.jpg" style="padding: 0px;" /></a></div>
<p><img style="visibility:hidden;width:0px;height:0px;" border=0 width=0 height=0 src="http://counters.gigya.com/wildfire/IMP/CXNID=2000002.0NXC/bT*xJmx*PTEyMjg2NDUyOTA5NDMmcHQ9MTIyODY*NTI5NTU2NCZwPTE4NDMzMSZkPSZnPTEmdD*mbz*yOTk3MDE4ZjA2ZDk*NWJjOGI*ZGFmYmU5OTQ*ZmQ*NQ==.gif" /></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Mixtapes&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F12%2F07%2Fmixtapes%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/12/07/mixtapes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Nokia Phone N97</title>
		<link>http://ansi.interblc.com/2008/12/02/new-nokia-phone-n97/</link>
		<comments>http://ansi.interblc.com/2008/12/02/new-nokia-phone-n97/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 12:36:50 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Gadget]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[nokia]]></category>

		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=98</guid>
		<description><![CDATA[Moin
Wow, its xmas time. Here is what I really really want.  

Video: Nokia N97 - Trailer&#160;(1:10)

    

	]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Wow, its xmas time. Here is what I really really want. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><object width="480" height="270"><param name="movie" value="http://video.golem.de/player/videoplayer.swf?id=1743&#038;autoPl=false"></param><param name="allowFullScreen" value="true"></param><param name="AllowScriptAccess" value="always"><embed src="http://video.golem.de/player/videoplayer.swf?id=1743&#038;autoPl=false" type="application/x-shockwave-flash" allowfullscreen="true" AllowScriptAccess="always" width="480" height="270"></embed></object>
<div style="width:480px; text-align:center; font-family:verdana,sans-serif; font-size:0.8em;"><a href="http://video.golem.de/handy/1743/nokia-n97-trailer.html">Video: Nokia N97 - Trailer</a>&nbsp;(1:10)</div>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=New%20Nokia%20Phone%20N97&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F12%2F02%2Fnew-nokia-phone-n97%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/12/02/new-nokia-phone-n97/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Music recomendation</title>
		<link>http://ansi.interblc.com/2008/11/19/music-recomendation/</link>
		<comments>http://ansi.interblc.com/2008/11/19/music-recomendation/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 17:19:19 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[Radio]]></category>

		<category><![CDATA[RBB]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=95</guid>
		<description><![CDATA[Moin
After all this technical blabla I think its time to talk also a little bit on music, wah?
Couple of days ago I heard on my favorite radio station Funkhaus Europa the &#8220;La Dolce Vita&#8221; show. If you are interested here is the link to listen again and here is the link to listen live to [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>After all this technical blabla I think its time to talk also a little bit on music, wah?</p>
<p>Couple of days ago I heard on my favorite radio station <a title="Funkhaus Europa" href="http://www.funkhaus-europa.de/" target="_blank">Funkhaus Europa</a> the &#8220;<a title="La Dolce Vita" href="http://www.multikulti.de/sendungen/sprache/deutsch/la_dolce_vita/la_dolce_vita.html" target="_blank">La Dolce Vita</a>&#8221; show. If you are interested <a href="http://www.multikulti.de/etc/medialib/rbb/mul/mitschnitte/sendungen/la_dolce_vita/la_dolce_vita_200811172205_montag.smil.smi" target="_blank">here</a> is the link to listen again and <a href="http://www.wdr.de/wdrlive/media/fhe.m3u" target="_blank">here</a> is the link to listen live to Funkhaus Europa. What gets my attention on this show was the song &#8220;Si j&#8217;etais un homme&#8221; from &#8220;S Petit Nico&#8221;. Unfortunatelly I can not order the CD on Amazon. But I found the myspace page from &#8220;<a href="http://www.myspace.com/spetitnico" target="_blank">S Petit Nico</a>&#8221; where you can listen to the song among others. Furthermore I found the music video on youtube:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/pREc0l_QyRg&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/pREc0l_QyRg&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
</p>
<p>Enjoy. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Music%20recomendation&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F11%2F19%2Fmusic-recomendation%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/11/19/music-recomendation/feed/</wfw:commentRss>
<enclosure url="http://www.wdr.de/wdrlive/media/fhe.m3u" length="103" type="audio/x-mpegurl" />
		</item>
		<item>
		<title>New IBM Video</title>
		<link>http://ansi.interblc.com/2008/11/16/new-ibm-video/</link>
		<comments>http://ansi.interblc.com/2008/11/16/new-ibm-video/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 18:28:53 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[IBM]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=89</guid>
		<description><![CDATA[Moin
IBMLab just released a new Video. Well, Nic looks like a rapper on the screenshot&#8230;..



    

	]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>IBMLab just released a new Video. Well, Nic looks like a rapper on the screenshot&#8230;..<br />
</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4SB4dQkiUjg&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/4SB4dQkiUjg&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=New%20IBM%20Video&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F11%2F16%2Fnew-ibm-video%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/11/16/new-ibm-video/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Server, Network and Phone reconfiguration</title>
		<link>http://ansi.interblc.com/2008/11/14/server-network-and-phone-reconfiguration/</link>
		<comments>http://ansi.interblc.com/2008/11/14/server-network-and-phone-reconfiguration/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 12:12:36 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[System]]></category>

		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=87</guid>
		<description><![CDATA[Moin
I am going to shutdown the server and network and the phone system now for complete reinstall and hardware upgrade / exchange. Hopefully the phone will work in one hour again and the network right after. The server can take a little bit longer&#8230; May be the tux with me&#8230;.

    

	]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
I am going to shutdown the server and network and the phone system now for complete reinstall and hardware upgrade / exchange. Hopefully the phone will work in one hour again and the network right after. The server can take a little bit longer&#8230; May be the tux with me&#8230;.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Server%2C%20Network%20and%20Phone%20reconfiguration&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F11%2F14%2Fserver-network-and-phone-reconfiguration%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/11/14/server-network-and-phone-reconfiguration/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Video Mashup</title>
		<link>http://ansi.interblc.com/2008/10/30/video-mashup/</link>
		<comments>http://ansi.interblc.com/2008/10/30/video-mashup/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 12:04:15 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Gutenberg2.0]]></category>

		<category><![CDATA[mashup]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=84</guid>
		<description><![CDATA[Moin
I am soooo sorry&#8230;


    

	]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>I am soooo sorry&#8230;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="360" height="300"><param name="AllowScriptAccess" value="always" /><param name="movie" value="http://s3.moveon.org/swf/embed.swf"></param><param name="allowFullScreen" value="true"></param><param name="FlashVars" value="id=BoKrjOd.srKkerWLJbVWeDY2MDc4MTI-"></param><embed FlashVars="id=BoKrjOd.srKkerWLJbVWeDY2MDc4MTI-" src="http://s3.moveon.org/swf/embed.swf" type="application/x-shockwave-flash" allowfullscreen="true" AllowScriptAccess="always" width="360" height="300"></embed></object></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Video%20Mashup&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F10%2F30%2Fvideo-mashup%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/10/30/video-mashup/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to export display via SSH after sudo su</title>
		<link>http://ansi.interblc.com/2008/10/08/how-to-export-display-via-ssh-after-sudo-su/</link>
		<comments>http://ansi.interblc.com/2008/10/08/how-to-export-display-via-ssh-after-sudo-su/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 12:37:31 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[System]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[display]]></category>

		<category><![CDATA[export]]></category>

		<category><![CDATA[ssh]]></category>

		<category><![CDATA[tunnel]]></category>

		<category><![CDATA[unix]]></category>

		<category><![CDATA[x11]]></category>

		<category><![CDATA[xterm]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=81</guid>
		<description><![CDATA[Moin
Just figured out together with DrScofield how to export the Display via an SSH tunnel after changing user to root via sudo. And hey it sound trivial but was not easy to find out. Here is the step by step way.

ssh -X server #as normal user
xterm #for testing if export display as normal user works
echo [...]]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
Just figured out together with DrScofield how to export the Display via an SSH tunnel after changing user to root via sudo. And hey it sound trivial but was not easy to find out. Here is the step by step way.</p>
<ol>
<li>ssh -X server #as normal user</li>
<li>xterm #for testing if export display as normal user works</li>
<li>echo $DISPLAY #write it down</li>
<li>xauth #enters the shell of xauth
<ol>
<li>list # find the line with the display number from step 3 for me it was &#8220;wpsvm054/unix:12  MIT-MAGIC-COOKIE-1  071df2e12cfff0ed75fd0af5869665f7&#8243; remember the first part of it</li>
<li>quit #to leave the shell</li>
</ol>
</li>
<li>xauth extract filename system/unix:12 # the line from step 4.1</li>
<li>sudo su - # to become root</li>
<li>xauth merge filename # filename from step 5</li>
<li>export DISPLAY=:nummer.0 #Displaynumber from step 3 resp. 4.1</li>
<li>xterm #for testing</li>
</ol>
<p>Hope it works on other systems too.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=How%20to%20export%20display%20via%20SSH%20after%20sudo%20su&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F10%2F08%2Fhow-to-export-display-via-ssh-after-sudo-su%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/10/08/how-to-export-display-via-ssh-after-sudo-su/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Microblogging</title>
		<link>http://ansi.interblc.com/2008/09/30/microblogging/</link>
		<comments>http://ansi.interblc.com/2008/09/30/microblogging/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 16:37:19 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Gutenberg2.0]]></category>

		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[microblogging]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=66</guid>
		<description><![CDATA[Moin
Lets find some slides on Microblogging, some videos and some examples. When I tell people about microblogging (or as some people call it &#8220;twitter&#8220;) they look at me like &#8220;what a freak!&#8221;. But let me try to explain why microblogging is realy something new and different from chat, blogs or SMS. First of all lets [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Lets find some slides on Microblogging, some videos and some examples. When I tell people about microblogging (or as some people call it &#8220;<a href="http://www.twitter.com">twitter</a>&#8220;) they look at me like &#8220;what a freak!&#8221;. But let me try to explain why microblogging is realy something new and different from chat, blogs or SMS. First of all lets have a look on <a href="http://www.slideshare.net">Slideshare</a> what presentations are available on this topic.<br />
</p>
<h1>Slides</h1>
<p>
There is one very good one in german language:</p>
<div style="width:425px;text-align:left" id="__ss_571288"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/assbach/140-einhundertvierzig-presentation?type=powerpoint" title="140 - einhundertvierzig">140 - einhundertvierzig</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=twitterall080827b-1219834221892294-9&#038;stripped_title=140-einhundertvierzig-presentation" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=twitterall080827b-1219834221892294-9&#038;stripped_title=140-einhundertvierzig-presentation" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View SlideShare <a style="text-decoration:underline;" href="http://www.slideshare.net/assbach/140-einhundertvierzig-presentation?type=powerpoint" title="View 140 - einhundertvierzig on SlideShare">presentation</a> or <a style="text-decoration:underline;" href="http://www.slideshare.net/upload?type=powerpoint">Upload</a> your own. (tags: <a style="text-decoration:underline;" href="http://slideshare.net/tag/4newbies">4newbies</a> <a style="text-decoration:underline;" href="http://slideshare.net/tag/deutsch">deutsch</a>)</div>
</div>
<p></p>
<p>And one in english with the basic facts:</p>
<div style="width:425px;text-align:left" id="__ss_525776"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/tibbon/twitter-and-your-company?type=powerpoint" title="Twitter and your Company">Twitter and your Company</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=twitterpublic-1216844817396683-8&#038;stripped_title=twitter-and-your-company" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=twitterpublic-1216844817396683-8&#038;stripped_title=twitter-and-your-company" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View SlideShare <a style="text-decoration:underline;" href="http://www.slideshare.net/tibbon/twitter-and-your-company?type=powerpoint" title="View Twitter and your Company on SlideShare">presentation</a> or <a style="text-decoration:underline;" href="http://www.slideshare.net/upload?type=powerpoint">Upload</a> your own. (tags: <a style="text-decoration:underline;" href="http://slideshare.net/tag/web2">web2</a> <a style="text-decoration:underline;" href="http://slideshare.net/tag/media">media</a>)</div>
</div>
<p></p>
<h1>Videos</h1>
<p></p>
<h2>Twitter in plain english</h2>
<p>
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/ddO9idmax0o&amp;hl=en&amp;fs=1"><param name="allowFullScreen" value="true"><embed src="http://www.youtube.com/v/ddO9idmax0o&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></object><br />
</p>
<h2>Twitter in pain german</h2>
<p>
<object style='width:470px;height:406px;' type='application/x-shockwave-flash' data='http://www.myvideo.de/movie/4867613'><param name='movie' value='http://www.myvideo.de/movie/4867613' /><param name='AllowFullscreen' value='true' /></object><br/><a href='http://www.myvideo.de/watch/4867613' title='The Bleeper Movie - MyVideo'>The Bleeper Movie - MyVideo</a><br />
</p>
<h1>Some Twitters:</h1>
<p></p>
<h2>IBM</h2>
<p>
<a href="http://twitter.com/IBM_System_z">http://twitter.com/IBM_System_z</a><br />
<a href="http://twitter.com/sametime">http://twitter.com/sametime</a><br />
<a href="http://twitter.com/ibmevents">http://twitter.com/ibmevents</a></p>
<h2>Conferences</h2>
<p>
<a href="http://twitter.com/w2e_NY08">http://twitter.com/w2e_NY08</a></p>
<h2>Election and Twitter</h2>
<p>
<a href="http://election.twitter.com">http://election.twitter.com</a><br />
<a href="http://twitter.com/BarackObama">http://twitter.com/BarackObama</a><br />
<a href="http://twitter.com/JohnMcCain">http://twitter.com/JohnMcCain</a></p>
<h2>German politicans</h2>
<p>
<a href="http://twitter.com/muentefering">http://twitter.com/muentefering</a><br />
<a href="http://twitter.com/hubertus_heil">http://twitter.com/hubertus_heil</a><br />
<a href="http://twitter.com/neuepolitik">http://twitter.com/neuepolitik</a><br />
<a href="http://twitter.com/diegruenen_at">http://twitter.com/diegruenen_at</a><br />
<a href="http://twitter.com/pofalla">http://twitter.com/pofalla</a></p>
<h2>Satire</h2>
<p>
<a href="http://twitter.com/schaeuble">http://twitter.com/schaeuble</a><br />
<a href="http://twitter.com/rolandkoch">http://twitter.com/rolandkoch</a><br />
<a href="http://twitter.com/merkel">http://twitter.com/merkel</a></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Microblogging&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F09%2F30%2Fmicroblogging%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/09/30/microblogging/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OpenStreetMap</title>
		<link>http://ansi.interblc.com/2008/09/30/openstreetmap/</link>
		<comments>http://ansi.interblc.com/2008/09/30/openstreetmap/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 14:42:38 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Gutenberg2.0]]></category>

		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[openstreetmap]]></category>

		<category><![CDATA[osm]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=54</guid>
		<description><![CDATA[Moin
Last weekend on the Barcamp in Stuttgart (#bc0711) I learned more about OpenStreetMap. Extreme impressing! What I really liked was the tremendous power of communities. Peter gave a very good presentation on Openstreetmap.
Presentation:
Openstreetmap im Tourismus
View SlideShare presentation or Upload your own. (tags: barcamp castlecamp)

Here are the live examples:
Buenos Aires
Google:
Größere Kartenansicht
OpenStreetMap:
View Larger Map
Hanoi:
Google:
Größere Kartenansicht 
OpenStreepMap:
View Larger [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Last weekend on the Barcamp in <a href="http://bcstuttgart.mixxt.de/" target="_blank">Stuttgart</a> (<a href="http://hashtags.org/tag/bc0711/" target="_blank">#bc0711</a>) I learned more about <a href="http://www.openstreetmap.org" target="_blank">OpenStreetMap</a>. Extreme impressing! What I really liked was the tremendous power of communities. <a href="https://www.xing.com/profile/Peter_Eich" target="_blank">Peter</a> gave a very good presentation on Openstreetmap.</p>
<p>Presentation:</p>
<div id="__ss_598639" style="width: 425px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="Openstreetmap im Tourismus" href="http://www.slideshare.net/muesli/openstreetmap-im-tourismus-presentation?type=powerpoint">Openstreetmap im Tourismus</a><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=osmeinfhrunghf-1221464218006171-9&amp;stripped_title=openstreetmap-im-tourismus-presentation" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://static.slideshare.net/swf/ssplayer2.swf?doc=osmeinfhrunghf-1221464218006171-9&amp;stripped_title=openstreetmap-im-tourismus-presentation" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;">View SlideShare <a style="text-decoration:underline;" title="View Openstreetmap im Tourismus on SlideShare" href="http://www.slideshare.net/muesli/openstreetmap-im-tourismus-presentation?type=powerpoint">presentation</a> or <a style="text-decoration:underline;" href="http://www.slideshare.net/upload?type=powerpoint">Upload</a> your own. (tags: <a style="text-decoration:underline;" href="http://slideshare.net/tag/barcamp">barcamp</a> <a style="text-decoration:underline;" href="http://slideshare.net/tag/castlecamp">castlecamp</a>)</div>
</div>
<p>Here are the live examples:</p>
<h2>Buenos Aires</h2>
<h3>Google:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.de/?ie=UTF8&amp;ll=-34.689686,-58.422546&amp;spn=0.759943,0.870667&amp;z=10&amp;output=embed&amp;s=AARTsJqzARj-Z8VnW5pkPMLMmZbqrJcYpw"></iframe><br /><small><a href="http://maps.google.de/?ie=UTF8&amp;ll=-34.689686,-58.422546&amp;spn=0.759943,0.870667&amp;z=10&amp;source=embed" style="color:#0000FF;text-align:left">Größere Kartenansicht</a></small></p>
<h3>OpenStreetMap:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=-58.832,-35.038,-58.083,-34.192&#038;layer=osmarender" style="border: 1px solid black"></iframe><br /><small><a href="http://www.openstreetmap.org/?lat=-34.614999999999995&#038;lon=-58.457499999999996&#038;zoom=10&#038;layers=0B00FTFT">View Larger Map</a></small></p>
<h2>Hanoi:</h2>
<h3>Google:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.de/maps?f=q&amp;hl=de&amp;geocode=&amp;q=Hanoi&amp;ie=UTF8&amp;z=12&amp;ll=21.07489,105.853958&amp;output=embed&amp;s=AARTsJrOf4CCj5ZIkOvv70pi01AbL9sSWQ"></iframe><br /><small><a href="http://maps.google.de/maps?f=q&amp;hl=de&amp;geocode=&amp;q=Hanoi&amp;ie=UTF8&amp;z=12&amp;ll=21.07489,105.853958&amp;source=embed" style="color:#0000FF;text-align:left">Größere Kartenansicht</a></small> </p>
<h3>OpenStreepMap:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=105.7563,20.9133,105.9437,21.1533&#038;layer=osmarender" style="border: 1px solid black"></iframe><br /><small><a href="http://www.openstreetmap.org/?lat=21.0333&#038;lon=105.85&#038;zoom=12&#038;layers=0B00FTFT">View Larger Map</a></small> </p>
<h2>Kapstadt:</h2>
<h3>Google:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.de/?ie=UTF8&amp;ll=-33.917438,18.445015&amp;spn=0.09587,0.108833&amp;z=13&amp;output=embed&amp;s=AARTsJqzARj-Z8VnW5pkPMLMmZbqrJcYpw"></iframe><br /><small><a href="http://maps.google.de/?ie=UTF8&amp;ll=-33.917438,18.445015&amp;spn=0.09587,0.108833&amp;z=13&amp;source=embed" style="color:#0000FF;text-align:left">Größere Kartenansicht</a></small></p>
<h3>OpenStreetMap:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=18.38,-33.9763,18.4738,-33.8697&#038;layer=osmarender" style="border: 1px solid black"></iframe><br /><small><a href="http://www.openstreetmap.org/?lat=-33.923&#038;lon=18.4269&#038;zoom=12&#038;layers=0B00FTFT">View Larger Map</a></small></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=OpenStreetMap&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F09%2F30%2Fopenstreetmap%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/09/30/openstreetmap/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The otherinbox</title>
		<link>http://ansi.interblc.com/2008/09/18/the-otherinbox/</link>
		<comments>http://ansi.interblc.com/2008/09/18/the-otherinbox/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 20:27:57 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[services]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=44</guid>
		<description><![CDATA[I plan to analyse at least one WEB 2.0 service per day and write a short blog on that.
Starting today with the &#8220;Otherinbox&#8220;. Nice combination of instant email service and web emailer. If you subscribe to the service you get a domain like ansi.otherinbox.com where you can use several email addresses like facebook@ansi.otherinbox.com or intershop@ansi.otherinbox.com. [...]]]></description>
			<content:encoded><![CDATA[<p>I plan to analyse at least one WEB 2.0 service per day and write a short blog on that.</p>
<p>Starting today with the &#8220;<a href="http://blog.otherinbox.com/overview.html" target="_blank">Otherinbox</a>&#8220;. Nice combination of instant email service and web emailer. If you subscribe to the service you get a domain like ansi.otherinbox.com where you can use several email addresses like facebook@ansi.otherinbox.com or intershop@ansi.otherinbox.com. The service accepts all emails for this domain and shows them in a web based mailer in seperate folders. Nice and usefull. At the moment they are in closed beta but you can follow them on twitter at <a href="http://twitter.com/otherinbox" target="_blank">@otherinbox</a>.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=The%20otherinbox&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F09%2F18%2Fthe-otherinbox%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/09/18/the-otherinbox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Convert</title>
		<link>http://ansi.interblc.com/2008/09/18/convert/</link>
		<comments>http://ansi.interblc.com/2008/09/18/convert/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 15:11:05 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Tools]]></category>

		<category><![CDATA[convert]]></category>

		<category><![CDATA[image]]></category>

		<category><![CDATA[ImageMagick]]></category>

		<category><![CDATA[picture]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=39</guid>
		<description><![CDATA[Played around a little bit with ImageMagick and specially with the convert command.
Nice feature is to add Text on a picture like a watermark:
convert -font \
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType/luximri.ttf \
-pointsize 160 -fill black -draw "text 0,590 'Text auf Spike'" \
P1020049.JPG spike.jpg
or make a border arround a picture
convert -border 10x10 -bordercolor "#000000" P1020049.JPG spike2.jpg
Nothing special but was nice to [...]]]></description>
			<content:encoded><![CDATA[<p>Played around a little bit with ImageMagick and specially with the convert command.</p>
<p>Nice feature is to add Text on a picture like a watermark:</p>
<pre>convert -font \
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType/luximri.ttf \
-pointsize 160 -fill black -draw "text 0,590 'Text auf Spike'" \
P1020049.JPG spike.jpg</pre>
<p>or make a border arround a picture</p>
<pre>convert -border 10x10 -bordercolor "#000000" P1020049.JPG spike2.jpg</pre>
<p>Nothing special but was nice to play with it.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Convert&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F09%2F18%2Fconvert%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/09/18/convert/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using Garmin with linux and gpsbabel</title>
		<link>http://ansi.interblc.com/2008/08/19/using-garmin-with-linux-and-gpsbabel/</link>
		<comments>http://ansi.interblc.com/2008/08/19/using-garmin-with-linux-and-gpsbabel/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 16:26:25 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[GPS]]></category>

		<category><![CDATA[garmin]]></category>

		<category><![CDATA[geocaching]]></category>

		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=34</guid>
		<description><![CDATA[This post if more for myself then for others because you can find this information on many places. I bought a Garmin GPS Map 60 some time ago. It works great with Linux and the GPSBabel software. In order to transfer the loc files from the Geocaching.com side you can use this script:
#!/bin/bash
rm a.csv
rm a.kml
rm [...]]]></description>
			<content:encoded><![CDATA[<p>This post if more for myself then for others because you can find this information on many places. I bought a Garmin GPS Map 60 some time ago. It works great with Linux and the GPSBabel software. In order to transfer the loc files from the <a href="http://www.geocaching.com" target="_blank">Geocaching.com</a> side you can use this script:</p>
<blockquote><p>#!/bin/bash<br />
rm a.csv<br />
rm a.kml<br />
rm a.gpx<br />
for i in *.loc<br />
do<br />
gpsbabel -i geo -f $i -o csv,prefer_shortnames -F $i.csv<br />
cat  $i.csv &gt;&gt; a.csv<br />
rm  $i.csv<br />
done<br />
gpsbabel -i csv -f a.csv -o kml -F a.kml<br />
gpsbabel -i csv -f a.csv -o gpx -F a.gpx</p>
<p>sudo gpsbabel -i gpx -f a.gpx -o garmin -F usb:0<br />
sudo gpsbabel -i garmin,power_off -f usb:0</p></blockquote>
<p>This script converts all the *.loc files in one folder into one GPX and one KML file. the KML file can be placed on a webserver and then fiewed with google maps or via google earth. Here are some usefull commands:</p>
<p>Upload route:</p>
<blockquote><p>sudo gpsbabel <strong>-r</strong> -i garmin -f usb:0 -o kml -F u.kml</p></blockquote>
<p>Tracks downloaden from Garmin:</p>
<blockquote><p>sudo gpsbabel -t -i garmin -f usb:0 -o gpx -F tracks.gpx</p></blockquote>
<p>Switch the Garmin off:sudo gpsbabel -i garmin,power_off -f usb:0</p>
<p>Best Webpage I found for creating routes for bike tours is <a href="http://www.marengo-ltd.com/map2/" target="_blank">Marengo</a></p>
<p>And now have fun. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Using%20Garmin%20with%20linux%20and%20gpsbabel&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F08%2F19%2Fusing-garmin-with-linux-and-gpsbabel%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/08/19/using-garmin-with-linux-and-gpsbabel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Howto extract all followers from twitter into list of RSS feeds</title>
		<link>http://ansi.interblc.com/2008/07/24/howto-extract-all-followers-from-twitter-into-list-of-rss-feeds/</link>
		<comments>http://ansi.interblc.com/2008/07/24/howto-extract-all-followers-from-twitter-into-list-of-rss-feeds/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 18:20:59 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Gutenberg2.0]]></category>

		<category><![CDATA[microblogger]]></category>

		<category><![CDATA[rss]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=28</guid>
		<description><![CDATA[I had this idea to use build a real distributed microblogger system a while ago. Unfortunately I was a little bit to late and twitter lost so many links between users (follow and followers) this night. But better now then never. I will post here from time to time parts of the pig picture how [...]]]></description>
			<content:encoded><![CDATA[<p>I had this idea to use build a real distributed microblogger system a while ago. Unfortunately I was a little bit to late and <a href="http://www.twitter.com" target="_blank">twitter</a> lost so many links between users (follow and followers) this night. But better now then never. I will post here from time to time parts of the pig picture how to build such a system. This time how to extract the list of friends from your Twitter account and generate a list of RSS feeds out of it.</p>
<p>Twitter has  a cool <a href="http://groups.google.com/group/twitter-development-talk/web/api-documentation" target="_blank">API</a> wich we can use legally. The xml list of users you follow can be retrieved with</p>
<pre><span style="font-family: courier new,monospace;"><span style="font-family: arial,sans-serif;"><span style="font-family: courier new,monospace;"><span style="font-family: arial,sans-serif;"><span style="font-family: courier new,monospace;">http://twitter.com/statuses/friends/<strong>USERNAME</strong>.xml?lite=true&amp;page=1..n (for me its ansi)</span></span></span></span></span></pre>
<p><span style="font-family: courier new,monospace;"><span style="font-family: arial,sans-serif;"><span style="font-family: courier new,monospace;"><span style="font-family: arial,sans-serif;"><span style="font-family: courier new,monospace;">Having at the moment 112 user I follow (yesterday more then 160. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> ) page 1 and 2 are all my guys.</span></span></span></span></span></p>
<p>This small xsl stylesheet extracts  the userids.  (if anyone is  into xsl please help me here. Would  be great to  extract username, realname and user with comma  separated per line. Please add comments if you know the solution, I appreciate it!)</p>
<pre>&lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
 &lt;xsl:strip-space elements="*"/&gt;

 &lt;xsl:template match="/users/user"&gt;
     &lt;xsl:for-each select="id"&gt;
      &lt;xsl:value-of select="." /&gt;
      &lt;xsl:text&gt;&amp;#10;&lt;/xsl:text&gt;
     &lt;/xsl:for-each&gt;
 &lt;/xsl:template&gt;</pre>
<p>Save this code snip to a file called extractIDs.xslt and call it with the processor:</p>
<pre>xsltproc extractIDs.xslt friendsPage1.xml  | sed 1d &gt;list_of_ids.txt</pre>
<pre>xsltproc extractIDs.xslt friendsPage2.xml  | sed 1d &gt;&gt;list_of_ids.txt</pre>
<p>So now next step howto get the rss feeds out of it. The API offers this call</p>
<p>http://twitter.com/statuses/user_timeline/<strong>USERID</strong>.atom</p>
<p>Short bashscript like</p>
<pre> for i in `cat list_of_ids.txt`</pre>
<pre> do</pre>
<pre>  echo "http://twitter.com/statuses/user_timeline/$i.atom" &gt;&gt;list_of_rrs_feeds.txt</pre>
<pre> done</pre>
<p>is doing the job. So we end up with a text file each line with one RSS feed. I totally agree its much easier at the moment to call the &#8220;user and friend&#8221; rss feed from twitter but the idea behind this is to get a list of each user so future systems can really be distributed among many microblogging systems.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Howto%20extract%20all%20followers%20from%20twitter%20into%20list%20of%20RSS%20feeds&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F07%2F24%2Fhowto-extract-all-followers-from-twitter-into-list-of-rss-feeds%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/07/24/howto-extract-all-followers-from-twitter-into-list-of-rss-feeds/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Howto Setup Ubuntu postfix to send email with 1und1 as smarthost</title>
		<link>http://ansi.interblc.com/2008/07/24/howto-setup-ubuntu-postfix-to-send-email-with-1und1-as-smarthost/</link>
		<comments>http://ansi.interblc.com/2008/07/24/howto-setup-ubuntu-postfix-to-send-email-with-1und1-as-smarthost/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 13:21:20 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[System]]></category>

		<category><![CDATA[1und1]]></category>

		<category><![CDATA[mail]]></category>

		<category><![CDATA[postfix]]></category>

		<category><![CDATA[setup]]></category>

		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=25</guid>
		<description><![CDATA[Installing Postfix with
apt-get install postfix
or choose dpkg-reconfigure postfix when you allready installed postfix before.
The configuration working for me is &#8220;satelite&#8221;.

System Mail Name: your maildomain name (interblc.com) not the dns name of your server.
SMTP relay host:smtp.1und1.de
Root and Postmaster mail recipient: your user account or external email address
Other destinations to accept mail for: your servername, localhost.localdomain,localhost
Force synchronous [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Postfix with</p>
<p>apt-get install postfix</p>
<p>or choose dpkg-reconfigure postfix when you allready installed postfix before.</p>
<p>The configuration working for me is &#8220;satelite&#8221;.</p>
<ol>
<li>System Mail Name: your maildomain name (interblc.com) not the dns name of your server.</li>
<li>SMTP relay host:<strong>smtp.1und1.de</strong></li>
<li>Root and Postmaster mail recipient: your user account or external email address</li>
<li>Other destinations to accept mail for: your servername, localhost.localdomain,localhost</li>
<li>Force synchronous updates on mail queue: If you have ext3 oder reiser NO otherwise better YES</li>
<li>Local Networks: 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128</li>
<li>Procmail for local delivery: Yes</li>
<li>Mailbox size limit: 0</li>
<li>Local address extension character: +</li>
<li>Internet Protocol:All</li>
</ol>
<p>Edit /etc/postfix/main.cf and add these lines at the end:</p>
<p>smtp_sasl_auth_enable = yes<br />
smtp_sasl_security_options = noanonymous<br />
smtp_sasl_password_maps = hash:/etc/postfix/sasl_password</p>
<p>Create <strong>/etc/postfox/sasl_password</strong> with one line:</p>
<p>smtp.1und1.de <strong>MAILACCOUNT_at_1und1</strong>:<strong>PASSWD</strong></p>
<p>Create and db file from this passwd file with</p>
<p><strong>postmap /etc/postfix/sasl_password</strong></p>
<p>Restart postfix with:</p>
<p><strong>/etc/init.d/postfix restart</strong><br />
Now it should work. Give it a try with</p>
<p>date | mail -s &#8220;testing&#8221; regen@wetter.de</p>
<p>and watch the logfile with</p>
<p>tail -f /var/log/mail.log</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Howto%20Setup%20Ubuntu%20postfix%20to%20send%20email%20with%201und1%20as%20smarthost&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F07%2F24%2Fhowto-setup-ubuntu-postfix-to-send-email-with-1und1-as-smarthost%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/07/24/howto-setup-ubuntu-postfix-to-send-email-with-1und1-as-smarthost/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Shift Happens</title>
		<link>http://ansi.interblc.com/2008/07/24/shift-happens/</link>
		<comments>http://ansi.interblc.com/2008/07/24/shift-happens/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 07:31:30 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[Gutenberg2.0]]></category>

		<category><![CDATA[education]]></category>

		<category><![CDATA[project]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=22</guid>
		<description><![CDATA[Moin
One of the best Videos for explaining the shift is from the &#8220;Did you know&#8221; or &#8220;Shift Happens&#8221; page from Karl Fisch. More information you can find here.


    

	]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>One of the best Videos for explaining the shift is from the &#8220;Did you know&#8221; or &#8220;Shift Happens&#8221; page from Karl Fisch. More information you can find <a href="http://shifthappens.wikispaces.com/" target="_blank">here</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/pMcfrLYDm2U&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/pMcfrLYDm2U&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Shift%20Happens&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F07%2F24%2Fshift-happens%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/07/24/shift-happens/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Howto set up your own twitter</title>
		<link>http://ansi.interblc.com/2008/07/23/howto-set-up-your-own-twitter/</link>
		<comments>http://ansi.interblc.com/2008/07/23/howto-set-up-your-own-twitter/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 20:51:06 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[System]]></category>

		<category><![CDATA[blogging]]></category>

		<category><![CDATA[idento.ca]]></category>

		<category><![CDATA[install]]></category>

		<category><![CDATA[laconica]]></category>

		<category><![CDATA[microblogger]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=13</guid>
		<description><![CDATA[So first serious blog entry. I try to install my own instance of identi.ca what is microblogging system. Its based on Laconica. Lets see how to install this system on Ubuntu Server Edition. l.m.orchard has compiled an outstanding description see DECAFBAD.

Additionally a changed something so here are the description for the latest greatest version. I [...]]]></description>
			<content:encoded><![CDATA[<p>So first serious blog entry. I try to install my own instance of <a href="http://identi.ca" target="_blank">identi.ca</a> what is microblogging system. Its based on <a href="http://laconi.ca" target="_blank">Laconica</a>. Lets see how to install this system on Ubuntu Server Edition. l.m.orchard<span class="author"> has compiled an outstanding description see </span><strong><a href="http://decafbad.com/blog/2008/07/03/getting-laconica-up-and-running" target="_blank">DECAFBAD.<br />
</a></strong></p>
<p>Additionally a changed something so here are the description for the latest greatest version. I do not repeat his description only point out the changes.</p>
<p>There is a new version of the xmpPHP library available at least a new release candidate.</p>
<p>http://xmpphp.googlecode.com/files/xmpphp-0.1beta-r50.tar.gz</p>
<p>Beside</p>
<pre><code> cp xmpphp/*.php ../extlib/</code></pre>
<p>also</p>
<p>cp -R xmpphp/XMPPHP ../extlib/</p>
<p>to copy the necessary libraries.<br />
In order to convince apache2 to accept the rewrite it is neccessary to activate the rewrite module with</p>
<p>a2enmod rewrite</p>
<p>/etc/init.d/apache2 force-reload</p>
<p>The XMPP Part is still not running but I try this tomorrow.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Howto%20set%20up%20your%20own%20twitter&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F07%2F23%2Fhowto-set-up-your-own-twitter%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/07/23/howto-set-up-your-own-twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ansis World is now open</title>
		<link>http://ansi.interblc.com/2008/07/23/ansis-world-is-now-open/</link>
		<comments>http://ansi.interblc.com/2008/07/23/ansis-world-is-now-open/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 09:40:36 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
		
		<category><![CDATA[System]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[IBM]]></category>

		<category><![CDATA[start]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=10</guid>
		<description><![CDATA[Moin
Sodale, after a long time my colleagues convinced me to start a blog.  Wordpress is now up and running. Lets see what I will write here.  

    

	]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Sodale, after a long time my colleagues convinced me to start a blog.  Wordpress is now up and running. Lets see what I will write here. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Ansis%20World&amp;siteurl=http%3A%2F%2Fansi.interblc.com%2F&amp;linkname=Ansis%20World%20is%20now%20open&amp;linkurl=http%3A%2F%2Fansi.interblc.com%2F2008%2F07%2F23%2Fansis-world-is-now-open%2F"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/07/23/ansis-world-is-now-open/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
