<?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>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>
	<lastBuildDate>Mon, 08 Feb 2010 09:30:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Howto boot ISO images via grub2 with ubuntu</title>
		<link>http://ansi.interblc.com/2010/02/06/howto-boot-iso-images-via-grub2-with-ubuntu/</link>
		<comments>http://ansi.interblc.com/2010/02/06/howto-boot-iso-images-via-grub2-with-ubuntu/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 18:59:55 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=303</guid>
		<description><![CDATA[Moin
I am using Ubuntu &#8220;Daily builds&#8221; for some time inside Suns VirtualBox. Unfortunately the daily builds are not longer booting inside VirtualBox for more then 2 weeks now. Christian told me about a new feature of Grub2. You can boot ISO images directly from your hard disk without burning them on CD or USB. Awesome [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>I am using Ubuntu &#8220;<a href="http://cdimages.ubuntu.com/daily-live/current/" target="_blank">Daily builds</a>&#8221; for some time inside Suns <a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a>. Unfortunately the daily builds are not longer booting inside VirtualBox for more then 2 weeks now. <a href="http://www.facebook.com/christian.kirsch" target="_blank">Christian</a> told me about a new feature of <a href="http://grub.enbug.org/FrontPage?action=show&amp;redirect=StartSeite" target="_blank">Grub2</a>. You can boot ISO images directly from your hard disk without burning them on CD or USB. Awesome feature and I had to try it today. Here is the description on how to do it with Ubuntu 9.10.</p>
<p>First I am using this tiny script to update all daily builds with the <a href="http://zsync.moria.org.uk/" target="_blank">zsync</a> tool. It transfers only the changed parts of the ISO so you and the Ubuntu teams save a lot of traffic.</p>
<pre>zsync http://cdimages.ubuntu.com/daily-live/current/lucid-desktop-i386.iso.zsync
cd kubuntu
zsync http://cdimages.ubuntu.com/kubuntu/daily-live/current/lucid-desktop-i386.iso.zsync
cd ../netbook
zsync http://cdimages.ubuntu.com/ubuntu-netbook/daily-live/current/lucid-netbook-i386.iso.zsync
cd ../xubunutu
zsync http://cdimages.ubuntu.com/xubuntu/daily-live/current/lucid-desktop-i386.iso.zsync
cd ..
rm `find ./ -name "*.zs-old" `</pre>
<p>This script keeps all my daily builds up to date.</p>
<p>Next Step is to enable the grub menu. In Ubuntu it can be done in &#8220;<strong>/etc/default/grub</strong>&#8220;. Change the following lines</p>
<pre>GRUB_HIDDEN_TIMEOUT=<strong>10</strong>
GRUB_HIDDEN_TIMEOUT_QUIET=<strong>false</strong></pre>
<p>With this change you will see a 10 seconds count down when booting up. With the <strong>shift-key</strong> you get access to the grub boot menu. Next is to add the ISO images to the grub menu. Change to the &#8220;<strong>/etc/grub.d</strong>&#8221; dir.</p>
<p>Here you can find the grub menu entries and configuration files. Add your ISO images starting with <strong>50</strong> here. For example my entry for the normal Ubuntu ISO image (50_ubuntu) looks like this:</p>
<pre>echo "Adding $(egrep menu[e]ntry $0 | cut -d'"' -f2)" &gt;&amp;2
 cat &lt;&lt; EOF
menuentry "Ubuntu 10.04 Daily Build" {
       loopback loop (<strong>hd0,3</strong>)<strong>/ansi/software_and_config/ISOs/ubuntu/lucid-desktop-i386.iso</strong>
       linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=<strong>/ansi/software_and_config/ISOs/ubuntu/lucid-desktop-i386.iso</strong> file=(loop)/preseed/ubuntu.seed quiet splash bootkbd=sg --
       initrd (loop)/casper/initrd.lz
}</pre>
<p>My ISO files are stored on <strong>sda3</strong> under <strong>/ansi/software_and_config/ISOs/ubuntu/</strong>. In order to change it for your needs there are 3 elements to change. The <strong>loopback</strong> line contains your hard disk in grub style (hdx,y  x=0-&gt;sda x=1-&gt;sdb aso) and the path. The third element to change is in the linux line. Store this file as &#8220;<strong>50_ubuntu</strong>&#8221; in &#8220;<strong>/etc/grub.d</strong>&#8220;, make it executable with &#8220;<strong>chmod a+x 50_ubuntu</strong>&#8221; and activate the changes with &#8220;<strong>ubdate-grub</strong>&#8220;. After a reboot you should be able to activate the grub menu with the <strong>shift-key</strong> and select the new entry. Have fun.</p>
<p>I found some pages on this topic but the description there was not working for me so I changed it. But take a look on your own:</p>
<ul>
<li><a href="http://forum.ubuntuusers.de/topic/lucid-lynx-ohne-cd-brennen-auf-realem-system-/#post-2326751">http://forum.ubuntuusers.de/topic/lucid-lynx-ohne-cd-brennen-auf-realem-system-/#post-2326751</a></li>
<li><a href="http://wiki.ubuntuusers.de/GRUB_2/Konfiguration">http://wiki.ubuntuusers.de/GRUB_2/Konfiguration</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2010%2F02%2F06%2Fhowto-boot-iso-images-via-grub2-with-ubuntu%2F&amp;linkname=Howto%20boot%20ISO%20images%20via%20grub2%20with%20ubuntu"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2010/02/06/howto-boot-iso-images-via-grub2-with-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Chrome extentions</title>
		<link>http://ansi.interblc.com/2009/12/20/chrome-extentions/</link>
		<comments>http://ansi.interblc.com/2009/12/20/chrome-extentions/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 19:02:08 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[setup]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=297</guid>
		<description><![CDATA[Moin
I just run through several Chrome Extensions and here is my list of extensions I can recommend. Please write some comments if you have additional  recommendations.

Read It Later, very usefull to store webpages for later reading: https://chrome.google.com/extensions/detail/bkikpncfbjndhfkipijhdoddiadaipaa
Gmail Notification: https://chrome.google.com/extensions/detail/mihcahmgecmbnbcchbopgniflfhgnkff
Use Gmail as default mailer: https://chrome.google.com/extensions/detail/pgphcomnlaojlmmcjmiddhdapjpbgeoc
Forecastfox: https://chrome.google.com/extensions/detail/ihffmkcfkejomlfnilnmkokcpgclhfeg
Delicious: https://chrome.google.com/extensions/detail/anlkjppofaicbdanhhpbbogknfodfhfm
Last.fm: https://chrome.google.com/extensions/detail/nbjfhhdfhoccglhllgdfcknjgjbifcjk
TwitterBar: https://chrome.google.com/extensions/detail/pbadgdglepgngpoeijdgicjccomadekm
Page reload: https://chrome.google.com/extensions/detail/njoipeaphfnaplplihpbgndfojhdhmjo
Google Latitude: https://chrome.google.com/extensions/detail/bhencimpdjidjlgopdgofmkeojbiacie
Remember the milk: https://chrome.google.com/extensions/detail/chieodlkhimccchlojdmiondhiggkhmf
Youtube with HTML5 instead of [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>I just run through several Chrome Extensions and here is my list of extensions I can recommend. Please write some comments if you have additional  recommendations.</p>
<ul>
<li>Read It Later, very usefull to store webpages for later reading: <a href="https://chrome.google.com/extensions/detail/bkikpncfbjndhfkipijhdoddiadaipaa" target="_blank">https://chrome.google.com/extensions/detail/bkikpncfbjndhfkipijhdoddiadaipaa</a></li>
<li>Gmail Notification: <a href="https://chrome.google.com/extensions/detail/mihcahmgecmbnbcchbopgniflfhgnkff" target="_blank">https://chrome.google.com/extensions/detail/mihcahmgecmbnbcchbopgniflfhgnkff</a></li>
<li>Use Gmail as default mailer: <a href="https://chrome.google.com/extensions/detail/pgphcomnlaojlmmcjmiddhdapjpbgeoc" target="_blank">https://chrome.google.com/extensions/detail/pgphcomnlaojlmmcjmiddhdapjpbgeoc</a></li>
<li>Forecastfox: <a href="https://chrome.google.com/extensions/detail/ihffmkcfkejomlfnilnmkokcpgclhfeg" target="_blank">https://chrome.google.com/extensions/detail/ihffmkcfkejomlfnilnmkokcpgclhfeg</a></li>
<li>Delicious: <a href="https://chrome.google.com/extensions/detail/anlkjppofaicbdanhhpbbogknfodfhfm" target="_blank">https://chrome.google.com/extensions/detail/anlkjppofaicbdanhhpbbogknfodfhfm</a></li>
<li>Last.fm: <a href="https://chrome.google.com/extensions/detail/nbjfhhdfhoccglhllgdfcknjgjbifcjk" target="_blank">https://chrome.google.com/extensions/detail/nbjfhhdfhoccglhllgdfcknjgjbifcjk</a></li>
<li>TwitterBar: <a href="https://chrome.google.com/extensions/detail/pbadgdglepgngpoeijdgicjccomadekm" target="_blank">https://chrome.google.com/extensions/detail/pbadgdglepgngpoeijdgicjccomadekm</a></li>
<li>Page reload: <a href="https://chrome.google.com/extensions/detail/njoipeaphfnaplplihpbgndfojhdhmjo" target="_blank">https://chrome.google.com/extensions/detail/njoipeaphfnaplplihpbgndfojhdhmjo</a></li>
<li>Google Latitude: <a href="https://chrome.google.com/extensions/detail/bhencimpdjidjlgopdgofmkeojbiacie" target="_blank">https://chrome.google.com/extensions/detail/bhencimpdjidjlgopdgofmkeojbiacie</a></li>
<li>Remember the milk: <a href="https://chrome.google.com/extensions/detail/chieodlkhimccchlojdmiondhiggkhmf" target="_blank">https://chrome.google.com/extensions/detail/chieodlkhimccchlojdmiondhiggkhmf</a></li>
<li>Youtube with HTML5 instead of flash: <a href="https://chrome.google.com/extensions/detail/kchoimdlcbapmcdnheaahjcdpdjdpfco" target="_blank">https://chrome.google.com/extensions/detail/kchoimdlcbapmcdnheaahjcdpdjdpfco</a></li>
<li>Beautify Facebook: <a href="https://chrome.google.com/extensions/detail/ipnenhkngeiigfbhacdhadcnjjklhblm" target="_blank">https://chrome.google.com/extensions/detail/ipnenhkngeiigfbhacdhadcnjjklhblm</a></li>
<li>Facebook Extention: <a href="https://chrome.google.com/extensions/detail/hfdhelbngglkahnmlggcbjlkbddhkffm" target="_blank">https://chrome.google.com/extensions/detail/hfdhelbngglkahnmlggcbjlkbddhkffm</a></li>
<li>RapidShare Download Remover: ﻿<a href="https://chrome.google.com/extensions/detail/iciefpkfldmhehakpkphbclofdhiojih">https://chrome.google.com/extensions/detail/iciefpkfldmhehakpkphbclofdhiojih</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F12%2F20%2Fchrome-extentions%2F&amp;linkname=Chrome%20extentions"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/12/20/chrome-extentions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Qype: Weinstube Trollinger in Stuttgart</title>
		<link>http://ansi.interblc.com/2009/12/18/qype-weinstube-trollinger-in-stuttgart/</link>
		<comments>http://ansi.interblc.com/2009/12/18/qype-weinstube-trollinger-in-stuttgart/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 13:07:29 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Cooking]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Qype]]></category>
		<category><![CDATA[Restaurant]]></category>
		<category><![CDATA[stuttgart]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/2009/12/18/qype-weinstube-trollinger-in-stuttgart/</guid>
		<description><![CDATA[Stuttgart &#8211; Essen &#38; Trinken &#8211; Restaurants &#8211; Weinbars &#38; Weinstuben
Letzte Woche auf der Suche nach einem netten Abendrestaurant durch Stuttgart gelaufen und durch &#8220;Zufall&#8221; ins Trollinger geraten. Aber sehr ueberrascht worden. Das Essen war sehr lecker, das Fleisch sehr zart, die Portionen uebergross und die Bedienung war superfreundlich und sehr schnell. Obwohl ein &#8220;Zufallstreffen&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.qype.com/de111-stuttgart-west">Stuttgart</a> &#8211; <a href="http://www.qype.com/de111-stuttgart-west/categories/883-essen-und-trinken-in-west">Essen &amp; Trinken</a> &#8211; <a href="http://www.qype.com/de111-stuttgart-west/categories/1-restaurants">Restaurants</a> &#8211; <a href="http://www.qype.com/de111-stuttgart-west/categories/558-weinbars-und-weinstuben-in-west">Weinbars &amp; Weinstuben</a></p>
<p>Letzte Woche auf der Suche nach einem netten Abendrestaurant durch Stuttgart gelaufen und durch &#8220;Zufall&#8221; ins Trollinger geraten. Aber sehr ueberrascht worden. Das Essen war sehr lecker, das Fleisch sehr zart, die Portionen uebergross und die Bedienung war superfreundlich und sehr schnell. Obwohl ein &#8220;Zufallstreffen&#8221; werden wir oefters vorbei schauen. Kann ich sehr empfehlen.</p>
<p>Mein Beitrag zu <a href="http://www.qype.com/place/23388-Weinstube-Trollinger-Stuttgart">Weinstube Trollinger</a> &#8211; Ich bin <a href="http://www.qype.com/people/AnsgarSchmidt">AnsgarSchmidt</a> &#8211; auf <a href="http://www.qype.com/">Qype</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F12%2F18%2Fqype-weinstube-trollinger-in-stuttgart%2F&amp;linkname=Qype%3A%20Weinstube%20Trollinger%20in%20Stuttgart"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/12/18/qype-weinstube-trollinger-in-stuttgart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Hero earphone jack problem and howto solve</title>
		<link>http://ansi.interblc.com/2009/11/29/htc-hero-earphone-jack-problem-and-howto-solve/</link>
		<comments>http://ansi.interblc.com/2009/11/29/htc-hero-earphone-jack-problem-and-howto-solve/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 13:18:54 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Gadget]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[hero]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[install]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=289</guid>
		<description><![CDATA[Moin
Last week I had some problems with my HTC Hero Android phone. The mobile is awesome no question about that, but there is one funny &#8220;feature&#8221; which I don&#8217;t need at all and what caused me some trouble. The Hero (maybe other mobiles too) has the nice feature to switch from build-in loudspeakers to external [...]]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
Last week I had some problems with my HTC Hero Android phone. The mobile is awesome no question about that, but there is one funny &#8220;feature&#8221; which I don&#8217;t need at all and what caused me some trouble. The Hero (maybe other mobiles too) has the nice feature to switch from build-in loudspeakers to external earphones (via the jack on top) via software switch and not like other devices via hardware switch. This causes a problem when the process is not responding when you plug in the earphone. First impression is &#8220;hardware error&#8221; and you want to send back your phone to the repair center. But wait. This is a software bug (although the T-Mobile stores are not aware of that). Thanks to the <a href="http://androidforums.com/htc-hero/7102-htc-hero-headphone-jack-problem.html" target="_blank">Androidforum</a> ere are two solutions for that.</p>
<ol>
<li>The easy but not always working way
<ol>
<li>Turn off the phone by holding down the Hangup button for some time.</li>
<li>Plug in your earphones</li>
<li>Turn on the phone (if you see the earphone symbol everything is fine now)</li>
</ol>
</li>
<li>The not so easy but always working way
<ol>
<li>Download the APKatcher App from the Market (<a style="color: #769c11; text-decoration: none;" href="market://search?q=pname:nEx.software.Apps.APKatcher" target="_blank">market://search?q=pname:nEx.software.Apps.APKatcher</a>) <a href="market://search?q=pname:nEx.software.Apps.APKatcher"><img class="alignright" src="http://www.androidpit.de/img/dyn/assets/asset-15781-qr-82.png" alt="" width="82" height="82" /></a></li>
<li>Enable 3rd party apps on your mobile in order to accept apps from other locations then the market</li>
<li>Get the <a href="http://code.google.com/p/toggleheadset/" target="_blank">toggleheadset</a> <a href="http://toggleheadset.googlecode.com/files/ToggleHeadset.apk">application</a> from google code.</li>
<li>Send the app to your phone via email</li>
<li>Install the app</li>
<li>Add the toggleheadset widget to your phone desktop</li>
</ol>
</li>
</ol>
<p>After that you can toggle between your earphones and the internal loudspeaker.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F11%2F29%2Fhtc-hero-earphone-jack-problem-and-howto-solve%2F&amp;linkname=HTC%20Hero%20earphone%20jack%20problem%20and%20howto%20solve"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/11/29/htc-hero-earphone-jack-problem-and-howto-solve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Qype: Ackermanns in Stuttgart</title>
		<link>http://ansi.interblc.com/2009/11/15/qype-ackermanns-in-stuttgart/</link>
		<comments>http://ansi.interblc.com/2009/11/15/qype-ackermanns-in-stuttgart/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 22:11:27 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Cooking]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Qype]]></category>
		<category><![CDATA[Restaurant]]></category>
		<category><![CDATA[stuttgart]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/2009/11/15/qype-ackermanns-in-stuttgart/</guid>
		<description><![CDATA[Stuttgart &#8211; Essen &#38; Trinken &#8211; Bars &#38; Kneipen &#8211; Kneipen &#8211; Essen &#38; Trinken &#8211; Bars &#38; Kneipen &#8211; Bars
Eigentlich waren wir auf der Suche nach einer Tatort Kneipe und sind haben das &#8220;Maulwurf&#8221; mit dem Ackermanns verwechselt (ist die gleiche Internetseite). Leider gab es dann in diesem Ackermanns kein Tatort. Aber dafuer haben [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.qype.com/de111-stuttgart-west">Stuttgart</a> &#8211; <a href="http://www.qype.com/de111-stuttgart-west/categories/883-essen-und-trinken-in-west">Essen &amp; Trinken</a> &#8211; <a href="http://www.qype.com/de111-stuttgart-west/categories/609-bars-und-kneipen-in-west">Bars &amp; Kneipen</a> &#8211; <a href="http://www.qype.com/de111-stuttgart-west/categories/21-kneipe-und-pub-in-west">Kneipen</a> &#8211; <a href="http://www.qype.com/de111-stuttgart-west/categories/883-essen-und-trinken-in-west">Essen &amp; Trinken</a> &#8211; <a href="http://www.qype.com/de111-stuttgart-west/categories/609-bars-und-kneipen-in-west">Bars &amp; Kneipen</a> &#8211; <a href="http://www.qype.com/de111-stuttgart-west/categories/22-bars-in-west">Bars</a></p>
<p>Eigentlich waren wir auf der Suche nach einer Tatort Kneipe und sind haben das &#8220;Maulwurf&#8221; mit dem Ackermanns verwechselt (ist die gleiche Internetseite). Leider gab es dann in diesem Ackermanns kein Tatort. Aber dafuer haben wir eine sehr sehr schoene Kneipe entdeckt. Lecker und guenstiges Essen. Nette Atmosphere und super nette Bedienung. Wir werden da wohl oefters hingehen. Die Bier und Whisky Karte ist super und sehr sehr lecker.</p>
<p>Mein Beitrag zu <a href="http://www.qype.com/place/1054-Ackermanns-Stuttgart">Ackermanns</a> &#8211; Ich bin <a href="http://www.qype.com/people/AnsgarSchmidt">AnsgarSchmidt</a> &#8211; auf <a href="http://www.qype.com/">Qype</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F11%2F15%2Fqype-ackermanns-in-stuttgart%2F&amp;linkname=Qype%3A%20Ackermanns%20in%20Stuttgart"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/11/15/qype-ackermanns-in-stuttgart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ansi now on weather underground</title>
		<link>http://ansi.interblc.com/2009/06/26/ansi-now-on-weather-underground/</link>
		<comments>http://ansi.interblc.com/2009/06/26/ansi-now-on-weather-underground/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 16:38:02 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Gadget]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[weather]]></category>
		<category><![CDATA[weatherunderground]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=282</guid>
		<description><![CDATA[Moin
Since 5 minutes I push my local weather station data (which can be seen in near real time here) to the weather underground network. See the sticker on the right side or this cool one here:

]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
Since 5 minutes I push my local weather station data (which can be seen in near real time <a href="http://ansi.no-ip.com/weather/" target="_blank">here</a>) to the <a href="http://www.wunderground.com" target="_blank">weather underground network</a>. See the sticker on the right side or this cool one here:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="290" height="130" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.wunderground.com/swf/pws_mini_rf_nc.swf?station=IBAWUEST2&amp;freq=2.5&amp;units=metric&amp;lang=EN" /><embed type="application/x-shockwave-flash" width="290" height="130" src="http://www.wunderground.com/swf/pws_mini_rf_nc.swf?station=IBAWUEST2&amp;freq=2.5&amp;units=metric&amp;lang=EN"></embed></object></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F06%2F26%2Fansi-now-on-weather-underground%2F&amp;linkname=Ansi%20now%20on%20weather%20underground"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/06/26/ansi-now-on-weather-underground/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>APRS igate running xastir</title>
		<link>http://ansi.interblc.com/2009/06/14/aprs-igate-running-xastir/</link>
		<comments>http://ansi.interblc.com/2009/06/14/aprs-igate-running-xastir/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 21:15:46 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[GPS]]></category>
		<category><![CDATA[HAM]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[aprs]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[services]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=274</guid>
		<description><![CDATA[Moin
I just played a little bit with APRS igate on Linux. There are some igate software available on Linux  but the most supported package (javAPRESSrvr) is not available today because of an error on Yahoogroups where the files are hosted.
Therefore I installed xastir from Sourceforge and connected the the local running instance with the [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>I just played a little bit with <a href="http://www.aprs.net/" target="_blank">APRS</a> igate on Linux. There are some <a href="http://www.aprs-is.net/Software.aspx" target="_blank">igate software</a> available on Linux  but the most supported package (<a href="http://www.aprs-is.net/javAPRSSrvr/" target="_blank">javAPRESSrvr</a>) is not available today because of an error on <a href="http://groups.yahoo.com/group/javaprssrvr/" target="_blank">Yahoogroups</a> where the files are hosted.</p>
<p>Therefore I installed <a href="http://www.xastir.org" target="_blank">xastir</a> from <a href="http://sourceforge.net/projects/xastir/" target="_blank">Sourceforge</a> and connected the the local running instance with the <a href="http://www.aprs-is.net/" target="_blank">APRS-IS</a> network. Now DM1AS is visible on <a href="http://www.findu.com/cgi-bin/find.cgi?dm1as" target="_blank">FINDU</a>. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Nice side effect on this, the server generates an Google Maps page every 5 minutes with APRS stations around my home. Maybe tomorrow I connect my radio to the igate and there will be more local stations available.</p>
<p>So far you can see the map here:<a href="http://tinyurl.com/nacc5k" target="_blank"><strong></strong></a><strong><a href="http://tinyurl.com/nacc5k"  target="_blank">http://tinyurl.com/nacc5k</a> </strong></p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fansi.no-ip.com%2Faprs.kml&amp;ie=UTF8&amp;t=h&amp;ll=48.788771,9.244995&amp;spn=1.523599,3.537598&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fansi.no-ip.com%2Faprs.kml&amp;ie=UTF8&amp;t=h&amp;ll=48.788771,9.244995&amp;spn=1.523599,3.537598" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F06%2F14%2Faprs-igate-running-xastir%2F&amp;linkname=APRS%20igate%20running%20xastir"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/06/14/aprs-igate-running-xastir/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>testupload</title>
		<link>http://ansi.interblc.com/2009/06/13/testupload/</link>
		<comments>http://ansi.interblc.com/2009/06/13/testupload/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 20:28:32 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/2009/06/13/testupload/</guid>
		<description><![CDATA[New bibliothek stuttgart	
				- Posted using MobyPicture.com
]]></description>
			<content:encoded><![CDATA[<p>New bibliothek stuttgart<br />	<a href="http://www.mobypicture.com/user/ansi/view/274761" title="See more at MobyPicture.com"><img src="http://ansi.interblc.com/wp-content/uploads/2009/06/0bc339b868711c16626ce87c995736aa.jpg" width="400px" alt="Image posted by MobyPicture.com" /></a><br />
				- Posted using <a href="http://www.mobypicture.com">MobyPicture.com</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F06%2F13%2Ftestupload%2F&amp;linkname=testupload"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/06/13/testupload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bikemap Routes on Garmin GPS</title>
		<link>http://ansi.interblc.com/2009/06/13/bikemap-routes-on-garmin-gps/</link>
		<comments>http://ansi.interblc.com/2009/06/13/bikemap-routes-on-garmin-gps/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 11:30:28 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[GPS]]></category>
		<category><![CDATA[bikemap]]></category>
		<category><![CDATA[garmin]]></category>
		<category><![CDATA[gpsbabel]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[osm]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=270</guid>
		<description><![CDATA[Moin
I love Peters Bikemap.net page. Using this service to plan all my bike tours. Unfortunately my Garmin (GPSmap 60) does not understand the gpx file from Bikemap export. I wrote this little script to modify and split the route into smaller routes. GPSmap 60 only handle 250 points per route. Therefore the script splits the [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>I love <a href="http://www.bodenseepeter.de/" target="_blank">Peters</a> <a href="http://www.bikemap.net/" target="_blank">Bikemap.net</a> page. Using this service to plan all my bike tours. Unfortunately my Garmin (GPSmap 60) does not understand the gpx file from Bikemap export. I wrote this little script to modify and split the route into smaller routes. GPSmap 60 only handle 250 points per route. Therefore the script splits the route into smaller pieces, renames the note names into &#8220;rtept&#8221; resp. &#8220;rte&#8221; and uploads the route via USB to the connected garmin.</p>
<p>What you need to run this script are <a href="http://www.gpsbabel.org/" target="_blank">gpsbabel</a> and the unix commands: sed, split,cut and head .</p>
<p>Here it is, as usually no guarantee.</p>
<pre>#!/bin/bash
filename=$1

gpsbabel -i gpx -f ${filename} -o csv -F out.csv
split -l 200 out.csv splits
rm out.csv

for i in `ls splits*`
do
 gpsbabel -i csv -f ${i} -o gpx -F ${i}.gpx
 sed 's/wpt/rtept/' ${i}.gpx &gt; out
 rm ${i}.gpx
 mv out ${i}.gpx
 rm ${i}

 linenumber=`wc -l ${i}.gpx | cut -d " " -f 1`
 let linenumber-=1

 sed -n 10,${linenumber}p ${i}.gpx &gt;a.gpx

 rm ${i}.gpx

 cat ${filename} | head -n 9  &gt;${i}.gpx
 echo "&lt;rte&gt;"                &gt;&gt;${i}.gpx
 cat a.gpx                   &gt;&gt;${i}.gpx
 echo "&lt;/rte&gt;"               &gt;&gt;${i}.gpx
 echo "&lt;/gpx&gt;"               &gt;&gt;${i}.gpx
 rm a.gpx

 sudo gpsbabel -r -i gpx -f ${i}.gpx -o garmin -F usb:0
 rm ${i}.gpx
done</pre>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F06%2F13%2Fbikemap-routes-on-garmin-gps%2F&amp;linkname=Bikemap%20Routes%20on%20Garmin%20GPS"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/06/13/bikemap-routes-on-garmin-gps/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>LeChuck Me&#8230; Monkey Island is back yeahhhhh</title>
		<link>http://ansi.interblc.com/2009/06/02/lechuck-me-monkey-island-is-back-yeahhhhh/</link>
		<comments>http://ansi.interblc.com/2009/06/02/lechuck-me-monkey-island-is-back-yeahhhhh/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 19:06:57 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Game]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[MonkeyIsland]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=263</guid>
		<description><![CDATA[Moin
Just found on Slashdot the article on the new Monkey Island. Its points to rockpapershutgun. Go and read on your own or just watch this cool movie with preview and background information and hey also great impressions on the new Monkey Island. Cant wait to have it:

]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Just found on <a href="http://www.slashdot.org" target="_blank">Slashdot</a> the <a href="http://games.slashdot.org/story/09/06/02/0642248/emMonkey-Islandem-To-Return?art_pos=1" target="_blank">article</a> on the new Monkey Island. Its points to <a href="http://www.rockpapershotgun.com/2009/06/01/lechuck-me-monkey-island-returns/" target="_blank">rockpapershutgun</a>. Go and read on your own or just watch this cool movie with preview and background information and hey also great impressions on the new Monkey Island. Cant wait to have it:<br />
<object width="560" height="340" data="http://www.youtube.com/v/Hb_FaGcmTPM&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Hb_FaGcmTPM&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F06%2F02%2Flechuck-me-monkey-island-is-back-yeahhhhh%2F&amp;linkname=LeChuck%20Me%26%238230%3B%20Monkey%20Island%20is%20back%20yeahhhhh"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/06/02/lechuck-me-monkey-island-is-back-yeahhhhh/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pachube Temp Sensor with Atmel MC over ethernet</title>
		<link>http://ansi.interblc.com/2009/05/21/pachube-temp-sensor-with-atmel-mc-over-ethernet/</link>
		<comments>http://ansi.interblc.com/2009/05/21/pachube-temp-sensor-with-atmel-mc-over-ethernet/#comments</comments>
		<pubDate>Thu, 21 May 2009 20:18:43 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Atmel]]></category>
		<category><![CDATA[pachube]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=258</guid>
		<description><![CDATA[Moin
I spend this rainy day working on an old project and I am happy to announce its 99.8% finished.   Now I have a nice Atmel Board screwed to the wall with an ethernet port. Nice little project where you can access measurement values and digital I/Os via normal http access. For now I [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>I spend this rainy day working on an old project and I am happy to announce its 99.8% finished. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Now I have a nice Atmel Board screwed to the wall with an ethernet port. Nice little project where you can access measurement values and digital I/Os via normal http access. For now I have 3 temperature sensors running. One outside, one on the ceiling and one on the floor of my office. Idea is to control a fan when the temperature between the ceiling and the floor is to hight. I have this problem specially in winter times when the heater is on. Next week I will attach a light sensor as well. For now you can find all the measurements on <a href="http://www.pachube.com" target="_blank">pachube</a> feed <a href="http://www.pachube.com/feeds/1303" target="_blank">1303</a>. For example here is the outside temperature sensor. Time is in utc. </p>
<p><script src="http://apps.pachube.com/google_viz/viz.js"></script><script type="text/javascript"><!--
createViz(1303,5,500,200,"FF0066");
// --></script></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F05%2F21%2Fpachube-temp-sensor-with-atmel-mc-over-ethernet%2F&amp;linkname=Pachube%20Temp%20Sensor%20with%20Atmel%20MC%20over%20ethernet"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/05/21/pachube-temp-sensor-with-atmel-mc-over-ethernet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server update to Ubuntu Server 9.04</title>
		<link>http://ansi.interblc.com/2009/04/26/server-update-to-ubuntu-server-904/</link>
		<comments>http://ansi.interblc.com/2009/04/26/server-update-to-ubuntu-server-904/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 10:05:09 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=256</guid>
		<description><![CDATA[Moin
My blog will be offline on sunday for some time because I will reinstall the server with new HD and Ubuntu 9.04.
]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>My blog will be offline on sunday for some time because I will reinstall the server with new HD and Ubuntu 9.04.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F04%2F26%2Fserver-update-to-ubuntu-server-904%2F&amp;linkname=Server%20update%20to%20Ubuntu%20Server%209.04"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/04/26/server-update-to-ubuntu-server-904/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Planning a geekend</title>
		<link>http://ansi.interblc.com/2009/04/24/planning-a-geekend/</link>
		<comments>http://ansi.interblc.com/2009/04/24/planning-a-geekend/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 15:40:08 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Atmel]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Gadget]]></category>
		<category><![CDATA[brain]]></category>
		<category><![CDATA[geekend]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=241</guid>
		<description><![CDATA[Moin
If you ever wondered if geeks are social here is the answer. Yes they are and they are very social and organising some very cool events which are called &#8220;geekends&#8221;. Combination of weekend and geek. Not just going for hiking with friends. No developing, building, ironing and coding very cool and geeky things.
As being a [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>If you ever wondered if geeks are social here is the answer. Yes they are and they are very social and organising some very cool events which are called &#8220;geekends&#8221;. Combination of weekend and geek. Not just going for hiking with friends. No developing, building, ironing and coding very cool and geeky things.</p>
<p>As being a reader of the very cool <a href="http://www.makezine.com/" target="_blank">MAKE magazin</a> I read the <a href="http://makezine.com/10/brainwave/" target="_blank">article</a> on a brain machine the other day. This project is great for a geekend. Something to build, some hardware, software and after all a great toy to play with.</p>
<p>The idea is to build one of these Brainwave (aka Light and Sound Machines) on your own with a little micro controller. Lets see if we can optimize the hard and software a little bit. The original one is based on an other project and therefore the hard and software is not optimizes for a LSM.</p>
<p>More Information on the original project you can find the the blog <a href="http://blog.makezine.com/archive/2007/05/hack_your_brain_make_vide.html" target="_blank">here</a>.</p>
<p>Stay tuned to my blog to read more on this geekend.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F04%2F24%2Fplanning-a-geekend%2F&amp;linkname=Planning%20a%20geekend"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/04/24/planning-a-geekend/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gott gibt es nicht</title>
		<link>http://ansi.interblc.com/2009/04/24/gottgibtesnicht/</link>
		<comments>http://ansi.interblc.com/2009/04/24/gottgibtesnicht/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 12:46:25 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[berlin]]></category>
		<category><![CDATA[compain]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=253</guid>
		<description><![CDATA[Moin
Saw it today and I have to support it!!!!
]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 478px"><a href="http://www.cognitiones.de/doku.php/religionsunterricht_ist_betrug"><img title="Religionsunterricht ist Betrug" src="http://www.cognitiones.de/lib/exe/fetch.php/noreli.png" alt="Religionsunterricht ist Betrug" width="468" height="60" /></a><p class="wp-caption-text">Religionsunterricht ist Betrug</p></div>
<p>Moin</p>
<p>Saw it today and I have to support it!!!!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F04%2F24%2Fgottgibtesnicht%2F&amp;linkname=Gott%20gibt%20es%20nicht"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/04/24/gottgibtesnicht/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Star Trek 11 juhu</title>
		<link>http://ansi.interblc.com/2009/04/17/star-trek-11-juhu/</link>
		<comments>http://ansi.interblc.com/2009/04/17/star-trek-11-juhu/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 12:50:05 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Movie]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[cinema]]></category>
		<category><![CDATA[ScienceFiction]]></category>
		<category><![CDATA[StarTrek]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=245</guid>
		<description><![CDATA[Moin
After six very long years of waiting&#8230; here it is Star Trek 11

]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>After six very long years of waiting&#8230; here it is Star Trek 11<br />
<object width="336" height="280"><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true" /><param name="movie" value="http://www.ppiwidget.com/campaigns/as3base.swf?inst_id=1168599"/><embed src="http://www.ppiwidget.com/campaigns/as3base.swf?inst_id=1168599" type="application/x-shockwave-flash" width="336" height="280" wmode="transparent" allowFullScreen="true"></embed></object></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F04%2F17%2Fstar-trek-11-juhu%2F&amp;linkname=Star%20Trek%2011%20juhu"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/04/17/star-trek-11-juhu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Picture Mashup</title>
		<link>http://ansi.interblc.com/2009/04/10/picture-mashup/</link>
		<comments>http://ansi.interblc.com/2009/04/10/picture-mashup/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 23:30:48 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Gutenberg2.0]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[mashup]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=239</guid>
		<description><![CDATA[Moin
Cooly just pointed me to a nice and very funny online mashup service for pictures. Made this funny picture at Hetemeel

]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
Cooly just pointed me to a nice and very funny online mashup service for pictures. Made this funny picture at <a href="http://www.hetemeel.com/" target="_blank">Hetemeel</a></p>
<p><a title="einsteinshow.php" href="http://farm4.static.flickr.com/3617/3426497501_ea5e01aa1f_o.jpg" rel="lightbox[239]"><img class="slickr-post" src="http://farm4.static.flickr.com/3617/3426497501_ea5e01aa1f_o.jpg" alt="einsteinshow.php" width="500" height="375" /></a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F04%2F10%2Fpicture-mashup%2F&amp;linkname=Picture%20Mashup"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/04/10/picture-mashup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easter Geocaching</title>
		<link>http://ansi.interblc.com/2009/04/09/easter-geocaching/</link>
		<comments>http://ansi.interblc.com/2009/04/09/easter-geocaching/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 17:50:59 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[geocaching]]></category>
		<category><![CDATA[stuttgart]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=235</guid>
		<description><![CDATA[Moin
Together with a friend of mine we are planning to take the opportunity and make a nice friday-easter-geocaching-event (fege). We are planning to make 3 or maybe 4 multicaches and several single caches on the road. Here are the stages for the multis (must do)
View Larger Map
and here are all stages from the multi and [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Together with a friend of mine we are planning to take the opportunity and make a nice friday-easter-<a href="http://www.geocaching.com" target="_blank">geocaching</a>-event (fege). We are planning to make 3 or maybe 4 multicaches and several single caches on the road. Here are the stages for the multis (must do)</p>
<p><iframe width="640" height="480" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.de/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fansi.no-ip.com%2Fmulti.kml&amp;ie=UTF8&amp;ll=48.800475,9.206457&amp;spn=0.027137,0.054932&amp;t=h&amp;z=14&amp;output=embed"></iframe><br /><small><a href="http://maps.google.de/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fansi.no-ip.com%2Fmulti.kml&amp;ie=UTF8&amp;ll=48.800475,9.206457&amp;spn=0.027137,0.054932&amp;t=h&amp;z=14" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>and here are all stages from the multi and a lot of singles arround Bad Cannstatt.</p>
<p><iframe width="640" height="480" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.de/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fansi.no-ip.com%2Ffreitag.kml&amp;ie=UTF8&amp;ll=48.795217,9.220104&amp;spn=0.05428,0.109863&amp;t=h&amp;z=13&amp;output=embed"></iframe><br /><small><a href="http://maps.google.de/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fansi.no-ip.com%2Ffreitag.kml&amp;ie=UTF8&amp;ll=48.795217,9.220104&amp;spn=0.05428,0.109863&amp;t=h&amp;z=13" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F04%2F09%2Feaster-geocaching%2F&amp;linkname=Easter%20Geocaching"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/04/09/easter-geocaching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Hacking or we call a geekend</title>
		<link>http://ansi.interblc.com/2009/03/27/happy-hacking-or-we-call-a-geekend/</link>
		<comments>http://ansi.interblc.com/2009/03/27/happy-hacking-or-we-call-a-geekend/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 22:08:37 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[geekend]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=233</guid>
		<description><![CDATA[Moin
As you can see on the picture sitting with Thinkpads can be very social. Reminds me of this famous picture with guys sitting on a not yet finished skyscraper.

]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>As you can see on the picture sitting with Thinkpads can be very social. Reminds me of this famous picture with guys sitting on a not yet finished skyscraper.</p>
<p><a title="IMG_4605" href="http://farm4.static.flickr.com/3635/3390961572_03ce8940ed_b.jpg" rel="lightbox[233]"><img class="slickr-post" src="http://farm4.static.flickr.com/3635/3390961572_03ce8940ed.jpg" alt="IMG_4605" width="500" height="333" /></a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F03%2F27%2Fhappy-hacking-or-we-call-a-geekend%2F&amp;linkname=Happy%20Hacking%20or%20we%20call%20a%20geekend"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/03/27/happy-hacking-or-we-call-a-geekend/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Long Night of Stuttgart Museums</title>
		<link>http://ansi.interblc.com/2009/03/27/long-night-of-stuttgart-museums/</link>
		<comments>http://ansi.interblc.com/2009/03/27/long-night-of-stuttgart-museums/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 17:27:06 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[museum]]></category>
		<category><![CDATA[stuttgart]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=226</guid>
		<description><![CDATA[Moin
Last weekend was a big event in Stuttgart. Its called &#8220;Lange Nacht der Museen&#8220;. Many many museums and galleries are open until 2 o&#8217;clock in the morning. Lift organized this event and they also hired a log (well not enough) buses to transport all the people around Stuttgart. Well most of the time you spend [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Last weekend was a big event in Stuttgart. Its called &#8220;<a href="http://www.lange-nacht.de/main.php" target="_blank">Lange Nacht der Museen</a>&#8220;. Many many museums and galleries are open until 2 o&#8217;clock in the morning. <a href="http://www.lift-online.de/" target="_blank">Lift</a> organized this event and they also hired a log (well not enough) buses to transport all the people around Stuttgart. Well most of the time you spend waiting for totally overcrowded buses but nevertheless it was a great event. Thanks to <a href="http://www.lift-online.de/" target="_blank">Lift</a> for this. Besides the <a href="http://www.museum-mercedes-benz.com/" target="_blank">Mercedes Museum</a>, Boat tour in the <a href="http://www.hafenstuttgart.de/" target="_blank">Stuttgarter Harbor</a> (yes Stuttgart has an Harbor), <a href="http://stuttgart-tourist.de/downloads/weinbaumuseum.pdf" target="_blank">Wine Museum</a> we visit the bunker below the marked place. Here are some pictures of the former bunker which was an hotel after the second World War and was given up completely long time ago. They had some pictures on the wall how the hotel was looking before when it was still active. And besides that they invited the last active hotel employee who talk about old times.</p>
<p><a title="22.03.2009" href="http://farm4.static.flickr.com/3618/3374291100_0f4aeb8704_b.jpg" rel="lightbox[226]"><img class="slickr-post" src="http://farm4.static.flickr.com/3618/3374291100_0f4aeb8704.jpg" alt="22.03.2009" width="500" height="375" /></a> <a title="22.03.2009" href="http://farm4.static.flickr.com/3621/3373478899_cf0a35926a_b.jpg" rel="lightbox[226]"><img class="slickr-post" src="http://farm4.static.flickr.com/3621/3373478899_cf0a35926a.jpg" alt="22.03.2009" width="500" height="375" /></a> <a title="22.03.2009" href="http://farm4.static.flickr.com/3456/3374303616_1ab6c2fb7d_b.jpg" rel="lightbox[226]"><img class="slickr-post" src="http://farm4.static.flickr.com/3456/3374303616_1ab6c2fb7d.jpg" alt="22.03.2009" width="500" height="375" /></a> <a title="22.03.2009" href="http://farm4.static.flickr.com/3554/3374305380_02cd8ed2cc_b.jpg" rel="lightbox[226]"><img class="slickr-post" src="http://farm4.static.flickr.com/3554/3374305380_02cd8ed2cc.jpg" alt="22.03.2009" width="500" height="375" /></a> <a title="22.03.2009" href="http://farm4.static.flickr.com/3647/3374310528_f70956d8cd_b.jpg" rel="lightbox[226]"><img class="slickr-post" src="http://farm4.static.flickr.com/3647/3374310528_f70956d8cd.jpg" alt="22.03.2009" width="500" height="375" /></a> <a title="22.03.2009" href="http://farm4.static.flickr.com/3450/3374298772_7ba3a298a5_b.jpg" rel="lightbox[226]"><img class="slickr-post" src="http://farm4.static.flickr.com/3450/3374298772_7ba3a298a5.jpg" alt="22.03.2009" width="500" height="375" /></a> <a title="22.03.2009" href="http://farm4.static.flickr.com/3542/3373484817_e9c1c176b3_b.jpg" rel="lightbox[226]"><img class="slickr-post" src="http://farm4.static.flickr.com/3542/3373484817_e9c1c176b3.jpg" alt="22.03.2009" width="500" height="375" /></a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F03%2F27%2Flong-night-of-stuttgart-museums%2F&amp;linkname=Long%20Night%20of%20Stuttgart%20Museums"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/03/27/long-night-of-stuttgart-museums/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Schematic Roboter Leg</title>
		<link>http://ansi.interblc.com/2009/03/08/schematic-roboter-leg/</link>
		<comments>http://ansi.interblc.com/2009/03/08/schematic-roboter-leg/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 21:32:43 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Atmel]]></category>
		<category><![CDATA[Roboter]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[robotics]]></category>
		<category><![CDATA[schematic]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=223</guid>
		<description><![CDATA[Moin
After a lot of experiments with Atmel and servos the schematic design for the leg controller is ready. Unfortunately the Atmega8 has the I2C interface on 2 of the ACDs so only 4 ACDs are left. Therefore I have to use 1 Atmega8 for each leg to control the 3 servos. Besides the PWM servo [...]]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
After a lot of experiments with Atmel and servos the schematic design for the leg controller is ready. Unfortunately the Atmega8 has the I2C interface on 2 of the ACDs so only 4 ACDs are left. Therefore I have to use 1 Atmega8 for each leg to control the 3 servos. Besides the PWM servo control I also added 3 PWM LED controllers (via transistor). Just in case later on I decide to &#8220;pimp my robot&#8221; <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Well at least I can use them for visual debugging when I train the robot to walk. The idea of this schematic is quite easy. There are</p>
<ul>
<li>2 connectors for the bus (i2c and power)</li>
<li>3 connectors for LEDs (transistor connected)</li>
<li>3 PWM servo connectors (with current (resistor) measurement)</li>
<li>1 SPI interface to flash the atmel onboard</li>
</ul>
<p>Well its not a big deal but maybe someone finds it usefull. Next week I have to fight with placing it on a board without to many crossings.</p>
<p><a title="robileg" href="http://farm4.static.flickr.com/3306/3338530745_d0c62372f7_o.png" rel="lightbox[223]"><img class="slickr-post" src="http://farm4.static.flickr.com/3306/3338530745_827fc4ab79.jpg" alt="robileg" width="500" height="332" /></a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F03%2F08%2Fschematic-roboter-leg%2F&amp;linkname=Schematic%20Roboter%20Leg"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/03/08/schematic-roboter-leg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Robot Leg Video</title>
		<link>http://ansi.interblc.com/2009/02/23/robot-leg-video/</link>
		<comments>http://ansi.interblc.com/2009/02/23/robot-leg-video/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 07:51:43 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Roboter]]></category>
		<category><![CDATA[leg]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[robotics]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=220</guid>
		<description><![CDATA[Moin
And here is the video I promised:

]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>And here is the video I promised:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/CowYvF_fZ7M&#038;hl=de&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/CowYvF_fZ7M&#038;hl=de&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F02%2F23%2Frobot-leg-video%2F&amp;linkname=Robot%20Leg%20Video"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/02/23/robot-leg-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Leg Movement</title>
		<link>http://ansi.interblc.com/2009/02/23/first-leg-movement/</link>
		<comments>http://ansi.interblc.com/2009/02/23/first-leg-movement/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 23:19:30 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Roboter]]></category>
		<category><![CDATA[leg]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[robotics]]></category>
		<category><![CDATA[servo]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=218</guid>
		<description><![CDATA[Moin
Had some time this weekend to make next steps on my robotic project. This time the topic to work on was hardware. And yes real hardware not PCI carts or so. We started to think about how to design and construct the leg. Having no CAD software (and no idea how to use it) I [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Had some time this weekend to make next steps on my robotic project. This time the topic to work on was hardware. And yes real hardware not PCI carts or so. We started to think about how to design and construct the leg. Having no CAD software (and no idea how to use it) I just used a pen and a paper to draw a leg. Well it worked out and the leg works. But it looks more like a bone than like a robot leg.</p>
<p><a title="21022009103" href="http://farm4.static.flickr.com/3486/3301138207_77f67af9dc_b.jpg" rel="lightbox[218]"><img class="slickr-post" src="http://farm4.static.flickr.com/3486/3301138207_77f67af9dc.jpg" alt="21022009103" width="500" height="375" /></a></p>
<p><a title="21022009102" href="http://farm4.static.flickr.com/3382/3301137595_df66ceb284_b.jpg" rel="lightbox[218]"><img class="slickr-post" src="http://farm4.static.flickr.com/3382/3301137595_df66ceb284.jpg" alt="21022009102" width="375" height="500" /></a></p>
<p>I also made a movie of the leg moving but Youtube is still processing the data. As soon as they are ready I will post the movie here.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F02%2F23%2Ffirst-leg-movement%2F&amp;linkname=First%20Leg%20Movement"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/02/23/first-leg-movement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flushing someones brain</title>
		<link>http://ansi.interblc.com/2009/02/16/flushing-someones-brain/</link>
		<comments>http://ansi.interblc.com/2009/02/16/flushing-someones-brain/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 08:24:00 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Science]]></category>
		<category><![CDATA[brain]]></category>
		<category><![CDATA[manipulation]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=216</guid>
		<description><![CDATA[Moin
Just read an article on Heise Technology Review on &#8220;Die-selektive-Loeschung-von-Erinnerungen&#8221; (selective remove of memories). Not on a computer, on mice brains!!! The researcher say it will be very great to help patients with post posttraumatic stress disorder. Well I am a great fan of Science and Research but just think how you can easily misuse [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Just read an article on <a href="http://www.heise.de" target="_blank">Heise</a> <a href="http://www.heise.de/tr/" target="_blank">Technology Review</a> on &#8220;<a href="http://www.heise.de/tr/Die-selektive-Loeschung-von-Erinnerungen--/artikel/117950" target="_blank">Die-selektive-Loeschung-von-Erinnerungen</a>&#8221; (selective remove of memories). Not on a computer, on mice brains!!! The researcher say it will be very great to help patients with post posttraumatic stress disorder. Well I am a great fan of Science and Research but just think how you can easily misuse this drug. On one hand as being a victim of it (leaving your company and get a small bye bye pill) or as misusing yourself (&#8220;I never did it!&#8221;). I think the researcher working on this project now have a lot of new friends from all kind of business.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F02%2F16%2Fflushing-someones-brain%2F&amp;linkname=Flushing%20someones%20brain"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/02/16/flushing-someones-brain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tomo Arigato Mr Roboto</title>
		<link>http://ansi.interblc.com/2009/02/08/tomo-arigato-mr-roboto/</link>
		<comments>http://ansi.interblc.com/2009/02/08/tomo-arigato-mr-roboto/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 19:04:29 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Atmel]]></category>
		<category><![CDATA[Movie]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[robotics]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=207</guid>
		<description><![CDATA[Moin
While searching for PWM for my atmel I found this video. If you want to see a robot dancing to WMCA and&#8221;Walk Like an Egyptian&#8221; have a look at the video.

]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>While searching for PWM for my atmel I found this video. If you want to see a robot dancing to WMCA and&#8221;<em>Walk Like an Egyptian</em>&#8221; have a look at the video.</p>
<p><object width="425" height="344" data="http://www.youtube.com/v/CwwLy9vu_Xs&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/CwwLy9vu_Xs&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F02%2F08%2Ftomo-arigato-mr-roboto%2F&amp;linkname=Tomo%20Arigato%20Mr%20Roboto"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/02/08/tomo-arigato-mr-roboto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenStreetMap in one year as a video</title>
		<link>http://ansi.interblc.com/2009/02/07/osm-in-one-year/</link>
		<comments>http://ansi.interblc.com/2009/02/07/osm-in-one-year/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 13:16:24 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Movie]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[osm]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=205</guid>
		<description><![CDATA[Moin
ItoWorld produced an impressing Video on OpenStreetMap mapping. Its absolutely impressing how fast a community can develop something like OpenStreetMap. Crowdsourcing is not only about shifting the work towards a community. Its more about how a community can change the world. Meanwhile countries like USA or the Netherlands are disclosing their maps for OpenStreetMap. Take [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p><a href="http://vimeo.com/itoworld" target="_blank">ItoWorld</a> produced an impressing Video on <a href="http://www.openstreetmap.org" target="_blank">OpenStreetMap</a> mapping. Its absolutely impressing how fast a community can develop something like OpenStreetMap. <a href="http://en.wikipedia.org/wiki/Crowdsourcing" target="_blank">Crowdsourcing</a> is not only about shifting the work towards a community. Its more about how a community can change the world. Meanwhile countries like USA or the Netherlands are disclosing their maps for OpenStreetMap. Take a look at the video and you will understand why OSM will change the world.</p>
<p><object width="400" height="225" data="http://vimeo.com/moogaloop.swf?clip_id=2598878&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=2598878&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /></object><br />
<a href="http://vimeo.com/2598878">OSM 2008: A Year of Edits</a> from <a href="http://vimeo.com/itoworld">ItoWorld</a> on <a href="http://vimeo.com">Vimeo</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F02%2F07%2Fosm-in-one-year%2F&amp;linkname=OpenStreetMap%20in%20one%20year%20as%20a%20video"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/02/07/osm-in-one-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C3 Maps &#8211; Realistic 3D City Models</title>
		<link>http://ansi.interblc.com/2009/02/06/c3-maps-realistic-3d-city-models/</link>
		<comments>http://ansi.interblc.com/2009/02/06/c3-maps-realistic-3d-city-models/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 13:14:32 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Movie]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[satellite]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=203</guid>
		<description><![CDATA[Moin
Found this on youtube. Impressing technology from Sesam.

]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Found this on youtube. Impressing technology from <a href="http://kart.sesam.no/3d/" target="_blank">Sesam</a>.</p>
<p><object width="425" height="344" data="http://www.youtube.com/v/RqtlGNtc58g&amp;hl=de&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/RqtlGNtc58g&amp;hl=de&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F02%2F06%2Fc3-maps-realistic-3d-city-models%2F&amp;linkname=C3%20Maps%20%26%238211%3B%20Realistic%203D%20City%20Models"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/02/06/c3-maps-realistic-3d-city-models/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Driving in Baghdad</title>
		<link>http://ansi.interblc.com/2009/01/31/driving-in-baghdad/</link>
		<comments>http://ansi.interblc.com/2009/01/31/driving-in-baghdad/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 15:39:50 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Movie]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=199</guid>
		<description><![CDATA[Moin
And if you wander why Americans are not so beloved in Baghdad&#8230;.

 
]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>And if you wander why Americans are not so beloved in Baghdad&#8230;.<br />
</p>
<p> <object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Yco1deXOzN8&#038;hl=de&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Yco1deXOzN8&#038;hl=de&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F01%2F31%2Fdriving-in-baghdad%2F&amp;linkname=Driving%20in%20Baghdad"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/01/31/driving-in-baghdad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashmob in Stuttgart</title>
		<link>http://ansi.interblc.com/2009/01/30/flashmob-in-stuttgart/</link>
		<comments>http://ansi.interblc.com/2009/01/30/flashmob-in-stuttgart/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 09:30:03 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[flashmob]]></category>
		<category><![CDATA[stuttgart]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=194</guid>
		<description><![CDATA[Moin
I never attended a Flashmob before. But this weekend (31.1.09) there is one in Stuttgart and I think I will go there and participate. If you are in Stuttgart this weekend, come over and have some fun too.  
Find more information on
http://www.urbangathering.de.vu/
or
http://www.stuttgart-blog.net/flashmob-urban-gathering
Hope we are many people and it will be a lot of fun. [...]]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
I never attended a <a href="http://en.wikipedia.org/wiki/Flashmob">Flashmob</a> before. But this weekend (31.1.09) there is one in Stuttgart and I think I will go there and participate. If you are in Stuttgart this weekend, come over and have some fun too. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Find more information on</p>
<p><a href="http://www.urbangathering.de.vu/" target="_blank">http://www.urbangathering.de.vu/</a></p>
<p>or</p>
<p><a href="http://www.stuttgart-blog.net/flashmob-urban-gathering" target="_blank">http://www.stuttgart-blog.net/flashmob-urban-gathering</a></p>
<p>Hope we are many people and it will be a lot of fun. See you there.<br />
<small><a href="http://www.openstreetmap.org/?lat=48.778409999999994&amp;lon=9.177154999999999&amp;zoom=16&amp;layers=0B00FTFTT&amp;mlat=48.77845&amp;mlon=9.17715">View Larger Map</a></small></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F01%2F30%2Fflashmob-in-stuttgart%2F&amp;linkname=Flashmob%20in%20Stuttgart"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/01/30/flashmob-in-stuttgart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter analyse</title>
		<link>http://ansi.interblc.com/2009/01/27/twitter-analyse/</link>
		<comments>http://ansi.interblc.com/2009/01/27/twitter-analyse/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 21:01:28 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[microblogger]]></category>
		<category><![CDATA[microblogging]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=190</guid>
		<description><![CDATA[Moin
I love these twitter mashups. More and more services are using the API and adding meta services.



]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
I love these twitter mashups. More and more services are using the API and adding meta services.</p>
<div id="tweeteffect"></div>
<p><script type="text/javascript" src="http://tweeteffect.com/badge.php?user=ansi">
</script></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F01%2F27%2Ftwitter-analyse%2F&amp;linkname=Twitter%20analyse"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/01/27/twitter-analyse/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Searching for music</title>
		<link>http://ansi.interblc.com/2009/01/27/searching-for-music/</link>
		<comments>http://ansi.interblc.com/2009/01/27/searching-for-music/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 19:17:39 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[Web2.0]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=188</guid>
		<description><![CDATA[Moin
Sitting here and searching for relaxing music and seeqpod is my help:

SeeqPod &#8211; Playable Search
]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
Sitting here and searching for relaxing music and <a href="http://www.seeqpod.com/" target="_blank">seeqpod</a> is my help:</p>
<p><object width="425" height="350" data="http://www.seeqpod.com/cache/seeqpodEmbed.swf" type="application/x-shockwave-flash"><param name="flashvars" value="domain=http://www.seeqpod.com&amp;playlist=a221f2213b" /><param name="src" value="http://www.seeqpod.com/cache/seeqpodEmbed.swf" /><param name="wmode" value="transparent" /></object><br />
<a href="http://www.seeqpod.com/search">SeeqPod &#8211; Playable Search</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fansi.interblc.com%2F2009%2F01%2F27%2Fsearching-for-music%2F&amp;linkname=Searching%20for%20music"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/01/27/searching-for-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
