<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>sebastianvogelsang.com</title>
	
	<link>http://www.sebastianvogelsang.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Thu, 04 Jun 2009 16:58:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<geo:lat>52.498413</geo:lat><geo:long>13.442631</geo:long><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/SebastianVogelsang" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Scaling images to fit a screen</title>
		<link>http://feedproxy.google.com/~r/SebastianVogelsang/~3/Xcjd2YUNmQA/</link>
		<comments>http://www.sebastianvogelsang.com/2009/06/04/scaling-images-to-fit-a-screen/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 16:58:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[development]]></category>

		<category><![CDATA[aspect ratio]]></category>

		<category><![CDATA[images]]></category>

		<category><![CDATA[opennetcf]]></category>

		<category><![CDATA[scaling]]></category>

		<category><![CDATA[screen]]></category>

		<category><![CDATA[smart device framework]]></category>

		<guid isPermaLink="false">http://www.sebastianvogelsang.com/?p=159</guid>
		<description><![CDATA[Lately I had to do some image scaling for a .NET compact framework project. While the actual scaling can easily be done by means of the Smart Device Framework (OpenNETCF), the process of deciding whether to adjust the image to the screen&#8217;s height or the width takes a  little more effort than on a regular [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I had to do some image scaling for a .NET compact framework project. While the actual scaling can easily be done by means of the <span id="dnn_ctr415_dnnTITLE_lblTitle" class="Head"><a href="http://www.opennetcf.com/Default.aspx?tabid=65http://www.opennetcf.com/Default.aspx?tabid=65" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.opennetcf.com');" target="_blank">Smart Device Framework</a> (OpenNETCF), the process of deciding whether to adjust the image to the screen&#8217;s height or the width takes a  little more effort than on a regular (landscape) computer, due to the multitude of possible screen/picture aspect-ratio combinations</span> (most phones let the user switch between landscape and portrait mode). The following code solves theses issues (IBitmapImage and ImageUtils are OpenNETCF classes):</p>

<div class="wp_syntax"><div class="code"><pre class="csharp"><span style="color: #0600FF;">private</span> IBitmapImage scaleImageToDisplay<span style="color: #000000;">&#40;</span>Image img, Stream s<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
<span style="color: #FF0000;">float</span> ScreenRatio = <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">targetWidth</span> / <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">float</span><span style="color: #000000;">&#41;</span><span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">targetHeight</span>;
<span style="color: #FF0000;">float</span> ImgRatio = img.<span style="color: #0000FF;">Width</span> / <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">float</span><span style="color: #000000;">&#41;</span>img.<span style="color: #0000FF;">Height</span>;
&nbsp;
<span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>ImgRatio &amp;gt; <span style="color: #FF0000;">1</span>.0f<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
<span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>ScreenRatio &amp;gt; ImgRatio<span style="color: #000000;">&#41;</span>
<span style="color: #0600FF;">return</span> ImageUtils.<span style="color: #0000FF;">CreateThumbnail</span><span style="color: #000000;">&#40;</span>s, <span style="color: #008000;">new</span> <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Drawing</span>.<span style="color: #0000FF;">Size</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span><span style="color: #000000;">&#41;</span>Math.<span style="color: #0000FF;">Round</span><span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">targetHeight</span> * ImgRatio, <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>, <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">targetHeight</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0600FF;">else</span>
<span style="color: #0600FF;">return</span> ImageUtils.<span style="color: #0000FF;">CreateThumbnail</span><span style="color: #000000;">&#40;</span>s, <span style="color: #008000;">new</span> <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Drawing</span>.<span style="color: #0000FF;">Size</span><span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">targetWidth</span>, <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span><span style="color: #000000;">&#41;</span>Math.<span style="color: #0000FF;">Round</span><span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">targetWidth</span> / ImgRatio, <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
<span style="color: #0600FF;">else</span>
<span style="color: #000000;">&#123;</span>
<span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>ScreenRatio &amp;lt; ImgRatio<span style="color: #000000;">&#41;</span>
<span style="color: #0600FF;">return</span> ImageUtils.<span style="color: #0000FF;">CreateThumbnail</span><span style="color: #000000;">&#40;</span>s, <span style="color: #008000;">new</span> <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Drawing</span>.<span style="color: #0000FF;">Size</span><span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">targetWidth</span>, <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span><span style="color: #000000;">&#41;</span>Math.<span style="color: #0000FF;">Round</span><span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">targetWidth</span> / ImgRatio, <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0600FF;">else</span>
<span style="color: #0600FF;">return</span> ImageUtils.<span style="color: #0000FF;">CreateThumbnail</span><span style="color: #000000;">&#40;</span>s, <span style="color: #008000;">new</span> <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Drawing</span>.<span style="color: #0000FF;">Size</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span><span style="color: #000000;">&#41;</span>Math.<span style="color: #0000FF;">Round</span><span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">targetHeight</span> * ImgRatio, <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>, <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">targetHeight</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #0600FF;">return</span> <span style="color: #0600FF;">null</span>;
<span style="color: #000000;">&#125;</span></pre></div></div>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=Xcjd2YUNmQA:xHUwWZZIBAQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=Xcjd2YUNmQA:xHUwWZZIBAQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=Xcjd2YUNmQA:xHUwWZZIBAQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?i=Xcjd2YUNmQA:xHUwWZZIBAQ:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SebastianVogelsang/~4/Xcjd2YUNmQA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sebastianvogelsang.com/2009/06/04/scaling-images-to-fit-a-screen/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sebastianvogelsang.com/2009/06/04/scaling-images-to-fit-a-screen/</feedburner:origLink></item>
		<item>
		<title>Bahncard Photo</title>
		<link>http://feedproxy.google.com/~r/SebastianVogelsang/~3/5UqksXuVJXo/</link>
		<comments>http://www.sebastianvogelsang.com/2009/04/22/bahncard-photo/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 12:05:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[fun]]></category>

		<category><![CDATA[bahncard]]></category>

		<category><![CDATA[donkey]]></category>

		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://www.sebastianvogelsang.com/?p=155</guid>
		<description><![CDATA[So you apply for a Bahncard 25, send in photo number 1 and what do you get?!? They crop the hell out of it until it only shows the stupid guy with his stupid beanie next to you! Since Shrek, donkeys have not been taken serious anymore! Damn you, humans!
]]></description>
			<content:encoded><![CDATA[<p>So you apply for a Bahncard 25, send in photo number 1 and what do you get?!? They crop the hell out of it until it only shows the stupid guy with his stupid beanie next to you! Since Shrek, donkeys have not been taken serious anymore! Damn you, humans!</p>
<div class="wp-caption alignnone" style="width: 510px"><img title="1" src="http://farm4.static.flickr.com/3228/3141826852_b6e1407156.jpg" alt="" width="500" height="375" /><p class="wp-caption-text">1</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img style="margin-left: 10px; margin-right: 5px;" title="2" src="http://farm4.static.flickr.com/3477/3464759463_0cae0ea871.jpg" alt="" width="500" height="281" /><p class="wp-caption-text">2</p></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=5UqksXuVJXo:GG9WjkMVQw4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=5UqksXuVJXo:GG9WjkMVQw4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=5UqksXuVJXo:GG9WjkMVQw4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?i=5UqksXuVJXo:GG9WjkMVQw4:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SebastianVogelsang/~4/5UqksXuVJXo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sebastianvogelsang.com/2009/04/22/bahncard-photo/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sebastianvogelsang.com/2009/04/22/bahncard-photo/</feedburner:origLink></item>
		<item>
		<title>NightTunes - a plugin for iTunes that shuts down your PC</title>
		<link>http://feedproxy.google.com/~r/SebastianVogelsang/~3/0Sg7iR0CZY4/</link>
		<comments>http://www.sebastianvogelsang.com/2009/04/09/nighttunes-a-plugin-for-itunes-that-shuts-down-your-pc/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 11:15:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[development]]></category>

		<category><![CDATA[web]]></category>

		<category><![CDATA[hibernate]]></category>

		<category><![CDATA[iTunes]]></category>

		<category><![CDATA[plugin]]></category>

		<category><![CDATA[shut down]]></category>

		<category><![CDATA[sleep timer]]></category>

		<category><![CDATA[standby]]></category>

		<category><![CDATA[turn off]]></category>

		<guid isPermaLink="false">http://www.sebastianvogelsang.com/?p=149</guid>
		<description><![CDATA[I released a new iTunes plugin on http://www.earlybirdapplications.com today: NightTunes, a simple plugin for iTunes that can automatically shutdown, hibernate or send your PC to standby at the end of a playlist.
If you, like me, enjoy listening to a good audiobook while dozing off to dreamland, but don&#8217;t want to leave your computer running throughout [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><img style="margin: 5px; float: left;" src="http://www.earlybirdapplications.com/uploads/Image/icon-nighttunes.png" alt="" width="128" height="128" />I released a new iTunes plugin on <a href="http://www.earlybirdapplications.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.earlybirdapplications.com');" target="_blank">http://www.earlybirdapplications.com</a> today: <a href="http://www.earlybirdapplications.com/products/5-NightTunes" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.earlybirdapplications.com');" target="_blank"><strong>NightTunes</strong></a>, a simple plugin for iTunes that can automatically shutdown, hibernate or send your PC to standby at the end of a playlist.</p>
<p style="text-align: justify;">If you, like me, enjoy listening to a good audiobook while dozing off to dreamland, but don&#8217;t want to leave your computer running throughout the entire night&#8230;</p>
<p style="text-align: center;"><strong>NightTunes</strong> is for you!</p>
<p style="text-align: justify;">No more harddisk clatter noise or blowing CPU fans disturbing your sleep &#8230;plus you&#8217;re reducing your your energy bill and your carbon footprint <img src='http://www.sebastianvogelsang.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p style="text-align: justify;">Unlike other shutdown solutions, NightTunes does not depend on user-set timers to determine when to shutdown your PC. That way it is guaranteed that your computer won&#8217;t bail out on you right in the middle of your goodnight tale, only because you forgot to set the timer right.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=0Sg7iR0CZY4:aQlY678vJ7E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=0Sg7iR0CZY4:aQlY678vJ7E:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=0Sg7iR0CZY4:aQlY678vJ7E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?i=0Sg7iR0CZY4:aQlY678vJ7E:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SebastianVogelsang/~4/0Sg7iR0CZY4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sebastianvogelsang.com/2009/04/09/nighttunes-a-plugin-for-itunes-that-shuts-down-your-pc/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sebastianvogelsang.com/2009/04/09/nighttunes-a-plugin-for-itunes-that-shuts-down-your-pc/</feedburner:origLink></item>
		<item>
		<title>Enabling the TV-Out of an NVIDIA graphics card</title>
		<link>http://feedproxy.google.com/~r/SebastianVogelsang/~3/DBYo1Rby3fg/</link>
		<comments>http://www.sebastianvogelsang.com/2009/03/12/enabling-the-tv-out-of-an-nvidia-graphics-card/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 16:44:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[computer issues]]></category>

		<category><![CDATA[activate]]></category>

		<category><![CDATA[cinch]]></category>

		<category><![CDATA[nvidia]]></category>

		<category><![CDATA[pal-b]]></category>

		<category><![CDATA[s-video]]></category>

		<category><![CDATA[tv-out]]></category>

		<guid isPermaLink="false">http://www.sebastianvogelsang.com/?p=99</guid>
		<description><![CDATA[I don&#8217;t know if this goes for all the GeForce 8 and 9 series graphics cards, but getting the S-Video tv-out of my brand new Gainward 9800GT Golden Sample to run seems to be a real hassle. In the following, I wanna how I got it to work:
Hardware setup:
Starting from the video card&#8217;s s-video outlet, [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if this goes for all the GeForce 8 and 9 series graphics cards, but getting the S-Video tv-out of my brand new Gainward 9800GT Golden Sample to run seems to be a real hassle. In the following, I wanna how I got it to work:</p>
<h3>Hardware setup:</h3>
<p>Starting from the video card&#8217;s s-video outlet, I use a standard s-video/cinch adapter as depicted below. Please notice that this <strong>is not</strong> the adapter that came with the card, but instead one that only has four jacks on the s-video side.</p>
<p><img src="http://www.hama.de/bilder/00042/abb/00042737abb.jpg" alt="" width="152" height="152" /><img src="http://i31.twenga.com/3/tp/02/91/9105376487036820291.png" alt="" width="100" height="100" /></p>
<p>On the TV side I use a cinch/Scart adapter like the one below:</p>
<p><img src="http://www.alternate.de/pix/prodpic/200x200/j/jzzv07.jpg" alt="" width="136" height="136" /></p>
<h3>Software Setup:</h3>
<p>This is where it gets icky <img src='http://www.sebastianvogelsang.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> To get it running, you first need to enable the &#8220;old&#8221; Nvidia control center. This can be done, by means of the registry entries you can download <a href="http://drop.io/z66sgyb" onclick="javascript:pageTracker._trackPageview('/outbound/article/drop.io');" target="_blank">here</a>. Upon unzipping the file, double-click on &#8220;enableoldNV_CP.reg&#8221; and confirm. Then do a right-click on your desktop and click on &#8220;NVIDA Display&#8221; -&gt; TV. In the opening window, click on the left button (<span style="font-size: x-small;">only have it in German here, but I guess in English it says something like &#8220;Properties&#8221;</span>).</p>
<p>Then you should see your monitor and your TV side-by-side. Right-click on the TV, select &#8220;Choose TV-format&#8221; -&gt; bottom entry (<span style="font-size: x-small;">again&#8230;.only have it in German here:-) but should be something like &#8220;more/enhanced/advanced&#8221;</span>). In the new window you may choose the right signal format in the top chooser, although this will make no difference at this point. The important selection here is &#8220;S-Video-Output&#8221; in the bottom chooser. Don&#8217;t leave it set to &#8220;automatic&#8221;. Click OK on this and all other dialogs from before to close them. Now you should have an image on your TV, which most likely is black and white. To get your colors, do the following.</p>
<p>Double-click on the second file (disableoldNV_CP.reg) from the zip-archive to deactivate the old and re-activate the new NVIDIA control panel. Next, right-click on the desktop and click on &#8220;NVIDA Control Panel&#8221;. In the left menu choose &#8220;Run television setup wizard&#8221; from the &#8220;Video &amp; Television&#8221; menu section. Click &#8220;Next&#8221; and select &#8220;S-Video&#8221; in the next (&#8221;Connector Type&#8221;) dialog. Click on &#8220;Next&#8221; to get to the &#8220;Television Signal Format&#8221; dialog. There you want to choose &#8220;PAL-B&#8221;. Click &#8220;Next&#8221; until you&#8217;re done with the dialog.</p>
<p>That should be it! Have fun with your TV!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=DBYo1Rby3fg:kR_Y4XpxQ6A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=DBYo1Rby3fg:kR_Y4XpxQ6A:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=DBYo1Rby3fg:kR_Y4XpxQ6A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?i=DBYo1Rby3fg:kR_Y4XpxQ6A:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SebastianVogelsang/~4/DBYo1Rby3fg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sebastianvogelsang.com/2009/03/12/enabling-the-tv-out-of-an-nvidia-graphics-card/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sebastianvogelsang.com/2009/03/12/enabling-the-tv-out-of-an-nvidia-graphics-card/</feedburner:origLink></item>
		<item>
		<title>Counterstrike - the root of all evil</title>
		<link>http://feedproxy.google.com/~r/SebastianVogelsang/~3/OeDLjbFnWeE/</link>
		<comments>http://www.sebastianvogelsang.com/2009/03/12/counterstrike-the-root-of-all-evil/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 15:01:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[politics]]></category>

		<category><![CDATA[amoklauf]]></category>

		<category><![CDATA[counterstrike]]></category>

		<category><![CDATA[german]]></category>

		<category><![CDATA[killerspiele]]></category>

		<category><![CDATA[winnenden]]></category>

		<guid isPermaLink="false">http://www.sebastianvogelsang.com/?p=133</guid>
		<description><![CDATA[Ich muss sagen, dass ich seit gestern insgeheim auf diesen Moment gewartet habe. Die Welt fragt sich, was Tim K. aus Winnenden zu seinem Amoklauf getrieben hat. Dabei scheint sich die Antwort auf diese Frage in vielen (alten wirren) Köpfen längst gefestigt zu haben. Wie in einem Video in Spiegel Onlines Mediathek zu sehen ist, [...]]]></description>
			<content:encoded><![CDATA[<p>Ich muss sagen, dass ich seit gestern insgeheim auf diesen Moment gewartet habe. Die Welt fragt sich, was Tim K. aus Winnenden zu seinem Amoklauf getrieben hat. Dabei scheint sich die Antwort auf diese Frage in vielen (alten wirren) Köpfen längst gefestigt zu haben. Wie in einem <a href="http://www.spiegel.de/video/video-55680.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.spiegel.de');" target="_blank">Video in Spiegel Onlines Mediathek</a> zu sehen ist, gab heute ein Sprecher der Polizei folgendes Statement ab: &#8220;Wir haben während diesen Abends seine Computer noch sichergestellt und auch analysiert, grob analysiert, die Feinanalyse läuft aktuell, und auch daraufhin sich die typischen Spiele, die auch in das Raster eines Amokläufers passen, wie Counterstrike (&#8230;gefunden?)&#8221;.</p>
<p>Damit dürfte sich die Sache für viele auch schon erledigt haben.  Kein Gedanke wird an das erzieherische Defizit der Eltern oder die Tatsache dass K. anscheinend seit 2008 an Depressionen litt, sich deshalb zunächst stationär in psychiatrischer Behandlung befand und eine anschließende Therapie nicht aufnahm, verschwendet. Ebenso wenig interessiert das Faktum, dass sich im Elternhaus 15 (!!!) Schusswaffen befanden (an dieser Stelle frage ich mich ernsthaft, warum jemand auch nur 1 Waffe in seinem Haus verwahren muss???).<br />
Stattdessen ist eine der ersten Meldungen, welche man der Presse nach dem Amoklauf entnehmen darf,  <a href="http://www.spiegel.de/politik/deutschland/0,1518,612735,00.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.spiegel.de');" target="_blank">eine Ausprache von Union und Polizei gegen ein schärferes Waffenrecht</a>. Das oben erwähnte Extrakt aus der Pressemitteilung lässt erahnen, was dem folgen wird. Wieder einmal werden sich Unionspolitiker, wie zuletzt <a href="http://www.stern.de/politik/deutschland/:Killerspiel-Debatte-Das/578137.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.stern.de');" target="_blank">Niedersachsens Innenminister Uwe Schünemann</a>, für ein Verbot von sogenannten &#8220;Killerspielen&#8221; (wenn der Begriff nicht Populismus pur ist?!?) aussprechen und damit jegliche wissenschaftlichen Erkenntnisse der Wirkungsforschung in den Wind schlagen. Ich frage mich: Wie geht so etwas? Warum kommen diese Menschen damit durch, wenn selbst auf einer Partnerseite des Bundesministeriums für Familie, Senioren, Frauen und Jugend, <a href="http://www.jugendschutz.net" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.jugendschutz.net');" target="_blank">jugendschutz.net</a>, eindeutig statuiert wird:</p>
<p><cite>&#8220;Direkte Wirkungen in dem Sinne, dass ein Spieler nach einem blutrünstigen Deathmatch mit der Pumpgun auf die Straße läuft und dort wahllos alles abschlachtet, sind nicht nachweisbar.&#8221; </cite></p>
<p>und weiter</p>
<p><cite>&#8220;Der in der Öffentlichkeit beliebte direkte Schluss vom Inhalt von „Killerspielen“ auf deren Wirkungen ist aber unzulässig. Der Wirkungszusammenhang zwischen Spieler und Spielen ist so komplex, dass generelle Aussagen zur Wirkung von Gewaltdarstellungen nicht gemacht werden können.&#8221;</cite> (<a href="http://www.jugendschutz.net/gewalt/Gewaltspiele/index.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.jugendschutz.net');">Quelle</a>)</p>
<p>Haben diese Menschen keine Berater, die ihnen diese Fakten zuteil werden lassen, bevor sie hergehen, ihre Kausalketten auf einen einzelnen Strang reduzieren und sich damit lächerlich machen? In ähnlicher Manier könnte man ein Verbot von Tischtennis verlangen&#8230;offentsichtlich war Tim K. ein großer Anhänger des Sports.</p>
<h6><span style="font-size: medium;">Auch wenn es in diesem Beitrag weniger um den schrecklichen Amoklauf in </span><span style="font-size: medium;"><strong>Winnenden</strong></span><span style="font-size: medium;">, als vielmehr um auf die Reaktion darauf geht, möchte ich allen, die in Winnenden Angehörige, Kinder oder Freunde verloren haben, mein Beileid aussprechen.</span></h6>
<p><span style="font-size: medium;">&#8212;&#8212;EDIT&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</span></p>
<p><span style="font-size: medium;">Und es geht los:</span></p>
<ul>
<li><a href="http://www.golem.de/0903/65894.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.golem.de');" target="_blank">Die bayerische Justizministerin Beate Merk (CSU) fordert nach dem Amoklauf von Winnenden mit drastischen Worten ein Verbot sogenannter Killerspiele</a></li>
<li><a href="http://www.golem.de/0903/65888.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.golem.de');" target="_blank">BIU: Kein Zusammenhang von Spielen und Amoklauf</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=OeDLjbFnWeE:JaeJW4_oF2Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=OeDLjbFnWeE:JaeJW4_oF2Y:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=OeDLjbFnWeE:JaeJW4_oF2Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?i=OeDLjbFnWeE:JaeJW4_oF2Y:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SebastianVogelsang/~4/OeDLjbFnWeE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sebastianvogelsang.com/2009/03/12/counterstrike-the-root-of-all-evil/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sebastianvogelsang.com/2009/03/12/counterstrike-the-root-of-all-evil/</feedburner:origLink></item>
		<item>
		<title>You got AIM-Fish-Bot-ed!</title>
		<link>http://feedproxy.google.com/~r/SebastianVogelsang/~3/plWZ7vqRldY/</link>
		<comments>http://www.sebastianvogelsang.com/2009/03/11/you-got-aim-fish-bot-ed/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 15:53:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[aim]]></category>

		<category><![CDATA[bot]]></category>

		<category><![CDATA[coho]]></category>

		<category><![CDATA[fish bot]]></category>

		<category><![CDATA[prank]]></category>

		<guid isPermaLink="false">http://www.sebastianvogelsang.com/?p=129</guid>
		<description><![CDATA[Today I got AIM-Fish-Bot-ed (not that that verb exists). As Nixie explains in her article, Fish-Bots do exactely what you may have done as a child: call two total strangers, then hold the two phones together and listen in on how they accuse each other of doing a prank call. Only Fish-Bots do it via [...]]]></description>
			<content:encoded><![CDATA[<p>Today I got AIM-Fish-Bot-ed (not that that verb exists). As Nixie explains in <a href="http://nixiepixel.com/blog/index.php/aim-fish-bot-help" onclick="javascript:pageTracker._trackPageview('/outbound/article/nixiepixel.com');" target="_blank">her article</a>, Fish-Bots do exactely what you may have done as a child: call two total strangers, then hold the two phones together and listen in on how they accuse each other of doing a prank call. Only Fish-Bots do it via AIM or ICQ. While the whole thing seems to upset a lot of people, I found the idea hilarious and would love to read more chat protocols of &#8220;victims&#8221; <img src='http://www.sebastianvogelsang.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> Here&#8217;s mine (the first message is from the bot (RolyPolyCoho), the following come from the person I got connected to):</p>
<p><em><strong>16:20:00 RolyPolyCoho</strong></em><br />
Greetings! I know this is hard to believe, but I&#8217;m you - from the future. I bear important news.<br />
<em><strong>16:20:13 seboslaw</strong></em><br />
holy crap! How old are you&#8230;.err&#8230;am I?<br />
<em><strong>16:21:00 RolyPolyCoho</strong></em><br />
still didn&#8217;t answer my question<br />
<em><strong>16:21:13 seboslaw</strong></em><br />
what question?<br />
<em><strong>16:21:42 RolyPolyCoh</strong>o</em><br />
the question asking who are you?<br />
<strong><em>16:22:07 seboslaw</em></strong><br />
well&#8230;&#8230;if I believe you, I am you<br />
<strong><em>16:22:49 RolyPolyCoho</em></strong><br />
whatever<br />
<strong><em>16:23:20 seboslaw</em></strong><br />
whatever my ass&#8230;.you said: Greetings! I know this is hard to believe, but I&#8217;m you - from the future. I bear important news.<br />
<strong><em>16:23:31</em></strong><br />
so what&#8217;s the important news?<br />
<strong><em>16:23:48</em></strong><br />
or do I know already? this me-you thing&#8217;s kinda confusing me<br />
<strong><em>16:25:42</em></strong><br />
haha, I guess we both got tricked&#8230;..http://nixiepixel.com/blog/index.php/aim-fish-bot-help</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=plWZ7vqRldY:JdCpNF86qjg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=plWZ7vqRldY:JdCpNF86qjg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=plWZ7vqRldY:JdCpNF86qjg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?i=plWZ7vqRldY:JdCpNF86qjg:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SebastianVogelsang/~4/plWZ7vqRldY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sebastianvogelsang.com/2009/03/11/you-got-aim-fish-bot-ed/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sebastianvogelsang.com/2009/03/11/you-got-aim-fish-bot-ed/</feedburner:origLink></item>
		<item>
		<title>Wrestling safety</title>
		<link>http://feedproxy.google.com/~r/SebastianVogelsang/~3/KWi0F-zbGIM/</link>
		<comments>http://www.sebastianvogelsang.com/2009/03/05/wrestling-safety/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 13:48:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.sebastianvogelsang.com/?p=126</guid>
		<description><![CDATA[After watching &#8220;The Wrestler&#8221; (a totally awesome movie by the way) the other day I went online to research, whether the story was biographically or not. After some time I came across &#8220;Wrestling Obituaries&#8221; and was shocked to learn that most of the (former WWF) guys I watched doing their showy thingy on TV more [...]]]></description>
			<content:encoded><![CDATA[<p>After watching &#8220;<a href="http://us.imdb.com/title/tt1125849/" onclick="javascript:pageTracker._trackPageview('/outbound/article/us.imdb.com');" target="_blank">The Wrestler</a>&#8221; (a totally awesome movie by the way) the other day I went online to research, whether the story was biographically or not. After some time I came across <a href="http://www.pwwew.net/people/dead.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pwwew.net');" target="_blank">&#8220;Wrestling Obituaries&#8221;</a> and was shocked to learn that most of the (former WWF) guys I watched doing their showy thingy on TV more than 20 years ago have already passed away, most of them due to heart attacks&#8230;.in their mid-40s!!!. The following names rang some bells and brought back some childhood memories for me:</p>
<ul>
<li><span style="font-family: Arial; font-size: x-small;">Jerry &#8220;Crusher&#8221; Blackwell&#8211;January 22,      1995&#8211;Died of complications from injuries sustained in a road accident.</span></li>
<li><a href="http://www.pwwew.net/people/byebulldog.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pwwew.net');"><span style="font-family: Arial; font-size: x-small;">&#8220;The         British Bulldog&#8221; Davey Boy Smith</span></a><span style="font-family: Arial; font-size: x-small;"> (39) &#8211;May 18, 2002&#8211;Died from a heart attack.</span></li>
<li><a href="http://www.pwwew.net/people/byeowen.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pwwew.net');"><span style="font-family: Arial; font-size: x-small;">Owen         Hart</span></a><span style="font-family: Arial; font-size: x-small;">: May 23,         1999&#8211;Died from 50 foot fall from ceiling to ring. </span></li>
<li><a href="http://www.pwwew.net/people/byeyokozuna.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pwwew.net');"><span style="font-family: Arial; font-size: x-small;">Yokozuna</span></a><span style="font-family: Arial; font-size: x-small;"> (34)&#8211;October 22, 2000&#8211;Died from         a heart attack. </span></li>
<li><a href="http://www.pwwew.net/people/byebulldog.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pwwew.net');"><span style="font-family: Arial; font-size: x-small;">&#8220;The         British Bulldog&#8221; Davey Boy Smith</span></a><span style="font-family: Arial; font-size: x-small;"> (39) &#8211;May 18, 2002&#8211;Died from a heart attack.</span></li>
<li><a href="http://www.pwwew.net/people/byehennig.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pwwew.net');"><span style="font-family: Arial; font-size: x-small;">&#8220;Mr.         Perfect&#8221; Curt Hennig</span></a><span style="font-family: Arial; font-size: x-small;"> (44)&#8211;February 10, 2003&#8211;acute cocaine intoxication.</span></li>
<li><span style="font-family: Arial; font-size: x-small;"><a href="http://www.pwwew.net/bio/bigbossman.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pwwew.net');">Ray &#8220;Big Bossman&#8221; Traylor</a> (41)&#8211;September      22, 2004&#8211;Heart failure.</span></li>
<li><span style="font-family: Arial; font-size: x-small;">John Tenta [Earthquake]  (42)&#8211;June 7,      2006&#8211;bladder cancer.</span></li>
<li><span style="font-family: Arial; font-size: x-small;">Bam Bam Bigelow [Scott Bigelow] (45)&#8211;January 19,      2007&#8211;Drugs.</span></li>
</ul>
<p>RIP. I guess, &#8220;The Wrestler&#8221; portrays the reality of wrestlers better than you&#8217;d expect.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=KWi0F-zbGIM:Z5iPDwE1f1M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=KWi0F-zbGIM:Z5iPDwE1f1M:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SebastianVogelsang?a=KWi0F-zbGIM:Z5iPDwE1f1M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SebastianVogelsang?i=KWi0F-zbGIM:Z5iPDwE1f1M:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SebastianVogelsang/~4/KWi0F-zbGIM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sebastianvogelsang.com/2009/03/05/wrestling-safety/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sebastianvogelsang.com/2009/03/05/wrestling-safety/</feedburner:origLink></item>
		<item>
		<title>Contact Alarm v.1.0 released</title>
		<link>http://feedproxy.google.com/~r/SebastianVogelsang/~3/aO0wsfIrnYc/</link>
		<comments>http://www.sebastianvogelsang.com/2009/02/25/contact-alarm-v10-released/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 20:45:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[development]]></category>

		<category><![CDATA[contact alarm]]></category>

		<category><![CDATA[contacts]]></category>

		<category><![CDATA[notification]]></category>

		<category><![CDATA[plugin]]></category>

		<category><![CDATA[skype]]></category>

		<category><![CDATA[status]]></category>

		<guid isPermaLink="false">http://www.sebastianvogelsang.com/?p=117</guid>
		<description><![CDATA[
Today I released version 1.0 of my Skype plugin &#8220;Contact Alarm&#8221;. Amongst many new features like audio/video alarms and logging, it integrates with Snarl and allows for nice fade-in/fade-out status notification windows.
Check out http://www.earlybirdapplications.com for details.
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 5px;" src="http://www.earlybirdapplications.com/uploads/Image/ca-icon.png" alt="" width="128" height="128" /><br />
Today I released version 1.0 of my Skype plugin &#8220;Contact Alarm&#8221;. Amongst many new features like audio/video alarms and logging, it integrates with <a href="http://www.fullphat.net/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.fullphat.net');" target="_blank">Snarl</a> and allows for nice fade-in/fade-out status notification windows.</p>
<p>Check out <a href="http://www.earlybirdapplications.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.earlybirdapplications.com');" target="_blank">http://www.earlybirdapplications.com</a> for details.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SebastianVogelsang?a=9xtCtN81"><img src="http://feeds.feedburner.com/~f/SebastianVogelsang?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SebastianVogelsang?a=82a41Ann"><img src="http://feeds.feedburner.com/~f/SebastianVogelsang?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SebastianVogelsang?a=SHNFfIXk"><img src="http://feeds.feedburner.com/~f/SebastianVogelsang?i=SHNFfIXk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SebastianVogelsang/~4/aO0wsfIrnYc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sebastianvogelsang.com/2009/02/25/contact-alarm-v10-released/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sebastianvogelsang.com/2009/02/25/contact-alarm-v10-released/</feedburner:origLink></item>
		<item>
		<title>NEW WEBSITE - http://earlybirdapplications.com</title>
		<link>http://feedproxy.google.com/~r/SebastianVogelsang/~3/Eg_vU61Vc6U/</link>
		<comments>http://www.sebastianvogelsang.com/2009/02/06/new-website-httpearlybirdapplicationscom/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 16:49:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[development]]></category>

		<category><![CDATA[web]]></category>

		<category><![CDATA[contact alarm]]></category>

		<category><![CDATA[earlybirdapplications]]></category>

		<category><![CDATA[flickrdrive]]></category>

		<category><![CDATA[iTunesSnarl]]></category>

		<category><![CDATA[notfication contacts]]></category>

		<category><![CDATA[plugin]]></category>

		<category><![CDATA[skype]]></category>

		<category><![CDATA[snarl]]></category>

		<guid isPermaLink="false">http://www.sebastianvogelsang.com/?p=108</guid>
		<description><![CDATA[For a while now I&#8217;ve been working on a platform to publish some of the software I&#8217;ve developed in the past (and that I will be developing in the future:-). Well, it was a long path, some people even doubted that, given my tendency to perfectionism, I would ever finish up on this&#8230;but after way [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><img class="alignleft" style="margin-right: 5px; margin-top: 3px;" src="http://farm4.static.flickr.com/3453/3258518878_36ddaa3b73_o.jpg" alt="" width="53" height="53" />For a while now I&#8217;ve been working on a platform to publish some of the software I&#8217;ve developed in the past (and that I will be developing in the future:-). Well, it was a long path, some people even doubted that, given my tendency to perfectionism, I would ever finish up on this&#8230;but after <span style="text-decoration: line-through;">way too many</span> several re-writes, platform switches and logo changes (big thanks to Tobi for the final one), today I proudly present to you (*drumroll*):</p>
<p style="text-align: center;"><img src="http://farm4.static.flickr.com/3111/3258519340_959af7393e_m.jpg" alt="" width="240" height="150" /></p>
<p style="text-align: center;"><a href="http://earlybirdapplications.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/earlybirdapplications.com');" target="_blank">http://earlybirdapplications.com</a></p>
<p>Come in, take a cookie and browse through the, yet, <span style="text-decoration: line-through;">sparse</span> exclusive product list!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SebastianVogelsang?a=t0jGCdPH"><img src="http://feeds.feedburner.com/~f/SebastianVogelsang?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SebastianVogelsang?a=S436LB3c"><img src="http://feeds.feedburner.com/~f/SebastianVogelsang?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SebastianVogelsang?a=8FoTgROU"><img src="http://feeds.feedburner.com/~f/SebastianVogelsang?i=8FoTgROU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SebastianVogelsang/~4/Eg_vU61Vc6U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sebastianvogelsang.com/2009/02/06/new-website-httpearlybirdapplicationscom/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sebastianvogelsang.com/2009/02/06/new-website-httpearlybirdapplicationscom/</feedburner:origLink></item>
		<item>
		<title>Setup an IVR with Asterisk (on an Ubuntu VPS)</title>
		<link>http://feedproxy.google.com/~r/SebastianVogelsang/~3/AHcY_CQ0Q9s/</link>
		<comments>http://www.sebastianvogelsang.com/2009/02/01/setup-an-ivr-with-asterisk-on-an-ubuntu-vps/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 14:29:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[asterisk]]></category>

		<category><![CDATA[ivr]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://www.sebastianvogelsang.com/?p=101</guid>
		<description><![CDATA[Wanna have your own infoline that users can call and navigate through using their dialpad (this is normally called an IVR, which stands for Interactive Voice Response)???
Well, all you need is a VPS (Mine is a 256MB Ubuntu server at hosteurope for 9.99€/month) and a VOIP-account (I went with a sipgate basic plan from sipgate, [...]]]></description>
			<content:encoded><![CDATA[<p>Wanna have your own infoline that users can call and navigate through using their dialpad (this is normally called an IVR, which stands for Interactive Voice Response)???<br />
Well, all you need is a VPS (Mine is a 256MB Ubuntu server at <a href="http://www.hosteurope.de/produkt/Virtual-Server-Linux-L" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.hosteurope.de');" target="_blank">hosteurope for 9.99€/month</a>) and a VOIP-account (I went with a <a href="https://secure.sipgate.de/user/tariff_basic.php" onclick="javascript:pageTracker._trackPageview('/outbound/article/secure.sipgate.de');" target="_blank">sipgate basic plan</a> from sipgate, since it&#8217;s free and you get a local phone number with it).</p>
<p>If you haven&#8217;t done so already, you may wanna upgrade your ubuntu to hardy (although I don&#8217;t know if this is a requirement). Next, install the required asterisk packages:</p>
<p><code>sudo apt-get install asterisk asterisk-config asterisk-mp3 asterisk-prompt-de asterisk-sounds-extra asterisk-sounds-main</code></p>
<p>You may exchange the asterisk-prompt-de for your local language pack or skip it altogether&#8230;.this is just the way I did it. Also the asterisk-mp3 package is only mandatory, if you want to play MP3s to your callers.<br />
Next, open the file /etc/asterisk/sip.conf and put the following line into the OUTBOUND SIP REGISTRATIONS section:</p>
<p><code>register =&gt; SIP_ID:SIP_PASSWORD@sipgate.de</code></p>
<p>(Note the &#8220;:&#8221; in-between SIP_ID and SIP_PASSWORD) Replace SIP_ID and SIP_PASSWORD with the infos from your <a href="https://secure.sipgate.de/user/settings.php#overview" onclick="javascript:pageTracker._trackPageview('/outbound/article/secure.sipgate.de');" target="_blank">sipgate account page</a>. Afterward, you may wanna restart your asterisk with:</p>
<p><code>sudo /etc/init.d/asterisk restart</code></p>
<p>Wait a little while and look at your sipgate settings page. It should now list your VPS as a registered device. On the same page, click on the fourth tab (called &#8220;Telefonie&#8221; in german&#8230;.probably something like &#8220;phone&#8221; in english), which should list the local phone number, under which your asterisk setup should be accessible now.</p>
<p>Dial it and be happy you made it so far. It&#8217;s your server talking on the other end of the line:-)</p>
<p>I&#8217;ll write about setting up the actual IVR soon.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SebastianVogelsang?a=IOyEg7sa"><img src="http://feeds.feedburner.com/~f/SebastianVogelsang?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SebastianVogelsang?a=3Z9XyZl2"><img src="http://feeds.feedburner.com/~f/SebastianVogelsang?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SebastianVogelsang?a=rC7ezrZ2"><img src="http://feeds.feedburner.com/~f/SebastianVogelsang?i=rC7ezrZ2" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SebastianVogelsang/~4/AHcY_CQ0Q9s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sebastianvogelsang.com/2009/02/01/setup-an-ivr-with-asterisk-on-an-ubuntu-vps/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sebastianvogelsang.com/2009/02/01/setup-an-ivr-with-asterisk-on-an-ubuntu-vps/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 1.594 seconds -->
