<?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>Christian Weigel – WebIngenieur</title>
	<atom:link href="http://www.christianweigel.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.christianweigel.com</link>
	<description>... in pursuit of global and personal happiness</description>
	<lastBuildDate>Thu, 04 Aug 2011 18:54:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Installing OpenVAS on Debian Lenny &#8211; trouble importing public key</title>
		<link>http://www.christianweigel.com/113-installing-openvas-on-debian-lenny/</link>
		<comments>http://www.christianweigel.com/113-installing-openvas-on-debian-lenny/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 17:45:45 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://www.christianweigel.com/?p=113</guid>
		<description><![CDATA[Following the installation instructions on the OpenVAS site I stumbled upon some problems importing the required Public Key. The pgp.net keyservers seem to be not really reliably these so I was unable to use them to retrieve the required Public key for validating the repositories&#8217; packages. this resulted in the following error: Reading package lists&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>Following the installation instructions on<a title="Installation instructions for Debian (Lenny)" href="http://www.openvas.org/install-packages.html#openvas4_debian_obs" target="_blank"> the OpenVAS site</a> I stumbled upon some problems importing the required Public Key.</p>
<p>The pgp.net keyservers seem to be not really reliably these so I was unable to use them to retrieve the required Public key for validating the repositories&#8217; packages.</p>
<p>this resulted in the following error:</p>
<blockquote><p>Reading package lists&#8230; Done W: GPG error: http://download.opensuse.org ./ Release: The following signatures couldn&#8217;t be verified because the public key is not available: NO_PUBKEY BED1E87979EAFD54 W: You may want to run apt-get update to correct these problems</p></blockquote>
<p>to resolve this problem just download the key directly  from the repository</p>
<blockquote><p>wget http://download.opensuse.org/repositories/security:/<br />
OpenVAS:/STABLE:/v4/Debian_5.0/Release.key</p></blockquote>
<p>and import the key manually</p>
<blockquote><p>apt-key adv &#8211;import Release.key</p></blockquote>
<p>update your package lists</p>
<blockquote><p>apt-get update</p></blockquote>
<p>and it should work without problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.christianweigel.com/113-installing-openvas-on-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Switching easily between Amazon EC2 Regions (linux console)</title>
		<link>http://www.christianweigel.com/111-switching-easily-between-amazon-ec2-regions-linux-console/</link>
		<comments>http://www.christianweigel.com/111-switching-easily-between-amazon-ec2-regions-linux-console/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 17:45:25 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.christianweigel.com/?p=111</guid>
		<description><![CDATA[Having AWS resources in different regions, it is handy to quickly switch the region you are currently working with. Some simple bash tricks as explained in this post will do the job nicely.]]></description>
			<content:encoded><![CDATA[<p>If your AWS resources are spread across multiple Regions, there is a simple trick to save you adding the &#8211;region=REGION parameter after each time your are issuing AWS EC2 API commands.</p>
<p>store your settings in a file e.g. ~/.ec2/eu-settings</p>
<blockquote><p>export EC2_URL=https://ec2.eu-west-1.amazonaws.com<br />
export EC2_REGION=eu-west-1</p></blockquote>
<p>and e.g. ~/.ec2/us-settings</p>
<blockquote><p>export EC2_URL=https://ec2.us-east-1.amazonaws.com<br />
export EC2_REGION=us-east-1</p></blockquote>
<p>now we define two simple aliases as shortcuts to these settings.</p>
<blockquote><p># alias eu=&#8217;source ~/.ec2/eu-settings&#8217;<br />
# alias us=&#8217;source ~/.ec2/us-settings&#8217;</p></blockquote>
<p>calling &#8216;eu&#8217; or &#8216;us&#8217; from shell will now switch the regions for you.</p>
<p>you may check that it worked by typing <em>env</em> and noting the values for EC2_URL and EC2_REGION.</p>
<p>These two aliases will &#8211; for now &#8211; only work in your current login session. To persist the setting, just do the following&#8230;</p>
<h2>Persisting the aliases in /etc/bash.bashrc</h2>
<p>edit /etc/bash.bashrc (in debian &#8211; this might differ a bit in other linux distributions)</p>
<blockquote><p># vi /etc/bash.bashrc</p></blockquote>
<p>add</p>
<blockquote><p>alias eu=&#8217;source ~/.ec2/eu-settings&#8217;<br />
alias us=&#8217;source ~/.ec2/us-settings&#8217;</p></blockquote>
<p>below anything that is written there. And call</p>
<blockquote><p># source /etc/bash.bashrc</p></blockquote>
<p>The aliases should work as previously, but will now be available after a system restart or new login to your machine.</p>
<p>Check again using <em>env </em>if you want to verify everything worked correctly.</p>
<p>Inspiration taken from: http://learninginlinux.blogspot.com/2007/02/setting-environment-variables-through.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.christianweigel.com/111-switching-easily-between-amazon-ec2-regions-linux-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting VoIP to work on your Nokia E52 (with BETAMAX justvoip.com)</title>
		<link>http://www.christianweigel.com/98-getting-voip-to-work-on-your-nokia-e52-with-betamax-justvoip-com/</link>
		<comments>http://www.christianweigel.com/98-getting-voip-to-work-on-your-nokia-e52-with-betamax-justvoip-com/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 22:44:10 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[E52]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[VoIP]]></category>

		<guid isPermaLink="false">http://www.christianweigel.com/?p=98</guid>
		<description><![CDATA[This Step-by-step guide will help you set up VoIP on you Nokia E52 handset using a BETAMAX VoIP account - justvoip.com in this case.]]></description>
			<content:encoded><![CDATA[<p>Acquiring my Nokia E52 recently I wanted to make use of the integrated VoIP capabilities (no additional tools like Fring are needed). I will summarise the steps I took to get Voice over IP working (using BETAMAX JustVoip.com service). The settings should be more or less the same for other BETAMAX services like voipdiscount.com, jumblo.com, telbo.com, etc.</p>
<p>As a prerequisite you should have already registered an account with justvoip.com or another BETAMAX service of your choice.</p>
<p><span id="more-98"></span>First you have to get the <a title="Link to VoIP Settings (Nokia site)" href="http://www.forum.nokia.com/info/sw.nokia.com/id/d476061e-90ca-42e9-b3ea-1a852f3808ec/SIP_VoIP_Settings.html" target="_blank">current Version of the VoIP Settings</a> (V.3.0 at the time of writing) from Nokia which is,  or at least was not bundled with my handset.</p>
<p><a title="Download Uptodate VoIP Settings" href="http://sw.nokia.com/id/b1c361a2-7eb2-4853-8c0c-d2f54e184237/SIP_VoIP_3_1_Settings_v2_0_en.sis" target="_blank">Download it here</a></p>
<p>Install the VoIP Settings Manager.  You will find it after installation in Menu &gt; Control Panel &gt; Net Settings &gt; Advanced VoIP Settings. Open the Settings Manager and create a new SIP Profile with the following values:</p>
<p>Profile Name: justvoip<br />
Service Profile: IETF<br />
Default Destination: Internet (I am using VoIP via my Home-WLAN)<br />
Default Access Point:  none<br />
Public Username: sip:YOURJUSTVOIPUSERNAME@justvoip.com (<em>Note:</em> &#8220;sip:&#8221; will always be added automatically)<br />
Use compression: No<br />
Registration: When needed or always on (choose your preference)<br />
Use Security: No</p>
<p>Proxy &amp; Registration Server have <strong>identical(!)</strong> values:</p>
<p>Server Address: sip:sip.justvoip.com<br />
Realm: justvoip.com<br />
User name: YOURJUSTVOIPUSERNAME<br />
Password: YOURJUSTVOIPPASSWORD<br />
Allow loose routing: Yes<br />
Transport type: UDP<br />
Port: 5060</p>
<p>After setting up the profile sucessfully, you will be able to activate VoIP from the Homescreen within the same menu, where you activate WLAN scanning. Just select &#8216;enable justvoip.com&#8217;, or how you called the profile, to turn on VoIP. Doing so the VoIP icon appears on your homescreen (Phone with a globe). Selecting a contact  will now feature &#8220;Internet call&#8221; beside the normal &#8220;Voice call&#8221; option.</p>
<p>I have just made use of this residing in my home WLAN. Possibly you can also turn VoIP on using a UMTS connection.</p>
<p>Good luck setting this up on your E52 &amp; Happy voiping!</p>
<p><a title="Link to Nokia Forums" href="http://discussions.nokia.co.uk/discussions/board/message?board.id=communicators&amp;thread.id=45590&amp;view=by_date_ascending&amp;page=2" target="_blank">This post in the Nokia Forums</a> helped me setting this all up &#8211; please have a look for yourself  if you like.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.christianweigel.com/98-getting-voip-to-work-on-your-nokia-e52-with-betamax-justvoip-com/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cakefest 2009 WrapUp</title>
		<link>http://www.christianweigel.com/75-cakefest-2009-wrapup/</link>
		<comments>http://www.christianweigel.com/75-cakefest-2009-wrapup/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 22:48:02 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[cakefest]]></category>
		<category><![CDATA[cakephp]]></category>

		<guid isPermaLink="false">http://www.christianweigel.com/?p=75</guid>
		<description><![CDATA[Cakefest 2009 was held from 9th-12th July 2009 in Berlin. Luckily I was able to attend the two day conference part of it on Saturday and Sunday. The crowd was really international. People from all over the world gathered &#8211; even folks from Australia and Japan joined the event. The bakers were overall very friendly [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 10px 10px 5px 0pt; float: left;" title="Cakefest Logo" src="http://www.christianweigel.com/wp-content/uploads/2009/07/cakefest_berlin_gray_small.png" alt="Cakefest Logo" width="101" height="41" /></p>
<p>Cakefest 2009 was held from 9th-12th July 2009 in Berlin. Luckily I was able to attend the two day conference part of it on Saturday and Sunday. The crowd was really international. People from all over the world gathered &#8211; even folks from Australia and Japan joined the event. The bakers were overall very friendly and helpful &#8211; the talks really great! <span id="more-75"></span>Given to the fact that the network was shaky from time to time which doesn&#8217;t help if you are showing a way of deploying live into an amazon cloud there were no deficiencies.</p>
<p>Attending the Cakefest raised &#8211; among other things &#8211; the awareness of the importance of giving things back to the community. Further the importance of various development aspects were raised. Among them:</p>
<ul>
<li>Git is THE THING if you want proper version control &#8211; forget about SVN</li>
<li>Think before you implement (this one should be obvious) &#8211; how you implement thing in the CakePHP way. Chose carefully which path you take: Component, Helper, Datasource&#8230;</li>
<li> Datasources in general are entities where CRUD statements can be carried out. (Twitter is a datasource by this defintion)</li>
<li>Implement and use testing as standard practice (implement your Tests directly after implementing any functionality)</li>
<li>Continuous integration is a great thing (Tools: <a title="Link to Phing Website (Opens in new window)" href="http://phing.info/trac/" target="_blank">Phing</a>, <a title="Link to Xinc Website (Opens in new window)" href="http://code.google.com/p/xinc/" target="_blank">Xinc</a>)</li>
<li>Check out the CakePHP Media Plugin (this will resolve a lot of problems handling file- and mediauploads) and <a title="Link to Media Plugin and Queue on GitHub" href="http://github.com/davidpersson/" target="_blank">give feedback to David via GitHub</a></li>
<li>Internationalisation is convenient with CakePHP &#8211; <a title="Internationalisation with CakePHP - (Opens in new window)" href="http://cakephp.org/downloads/CakeFest/CakeFest%203%20-%20Berlin%202009/Mariano%20Iglesias%20-%20Internationalizing%20CakePHP%20Applications" target="_blank">get sample code and slides here</a></li>
</ul>
<p>Thanks for the great organisation of the event, I imagine this was no easy task to accomplish!  I am looking forward meeting you all at the next Cakefest in 2010!</p>
<p><strong>Further Coverage of Cakefest 2009</strong></p>
<ul>
<li><em>Talk wrapup articles from Graham Weldon on CakeDC.com</em><br />
<a title="Keynote - Garret Woodworth (Opens in new Window)" href="http://cakedc.com/developer/graham_weldon/2009/07/13/garret-woodworth-cakephp-then-now-and-tomorrow-opening-keynote" target="_blank">Garret Woodworth &#8211; CakePHP then, now and tomorrow (Opening keynote)</a><br />
<a title="Joel Perras Opens in new Window" href="http://cakedc.com/developer/graham_weldon/2009/07/13/joel-perras-demystifying-webservices-in-cakephp" target="_blank"> Joël Perras &#8211; Demystifying Webservices in CakePHP</a><br />
<a title="Felix Geisendörfer - Receipes for successful CakePHP projects (Opens in new Window)" href="http://cakedc.com/developer/graham_weldon/2009/07/13/felix-geisendorfer-recipies-for-successful-cakephp-projects" target="_blank">Felix Geisendörfer &#8211; Recipies for successful CakePHP projects</a><br />
<a title="Neil Crookes - Bake Master classes (Opens in new Window)" href="http://cakedc.com/developer/graham_weldon/2009/07/14/neil-crookes-bake-master-class" target="_blank">Neil Crookes &#8211; Bake Master Class</a></li>
<li><em>Materials (Code Samples and Slides) on CakePHP.org</em><br />
<a href="http://cakephp.org/downloads/CakeFest/CakeFest%203%20-%20Berlin%202009/Alexander%20Morland%20-%20Test%20and%20API%20driven%20development%20of%20CakePHP%20Behaviors" target="_blank">Alexander Morland &#8211; Test and API driven development of CakePHP Behaviors<br />
</a><a href="http://cakephp.org/downloads/CakeFest/CakeFest%203%20-%20Berlin%202009/Charlie%20van%20de%20Kerkhof%20-%20Building%20Custom%20APIs" target="_blank">Charlie van de Kerkhof &#8211; Building Custom APIs</a><br />
<a href="http://cakephp.org/downloads/CakeFest/CakeFest%203%20-%20Berlin%202009/Felix%20Geisendorfer%20-%20Recipies%20for%20successful%20CkaePHP%20projects" target="_blank">Felix Geisendorfer &#8211; Recipies for successful CakePHP projects</a><br />
<a href="http://cakephp.org/downloads/CakeFest/CakeFest%203%20-%20Berlin%202009/Mariano%20Iglesias%20-%20Internationalizing%20CakePHP%20Applications" target="_blank">Mariano Iglesias &#8211; Internationalizing CakePHP Applications</a><br />
<a href="http://cakephp.org/downloads/CakeFest/CakeFest%203%20-%20Berlin%202009/Marius%20Wilms%20-%20The%20CakePHP%20Media%20Plugin" target="_blank">David Persson &#8211; The CakePHP Media Plugin</a><br />
<a href="http://cakephp.org/downloads/CakeFest/CakeFest%203%20-%20Berlin%202009/Neil%20Crookes%20-%20Bake%20Master%20Class" target="_blank">Neil Crookes &#8211; Bake Master Class<br />
</a><a href="http://cakephp.org/files/CakeFest/CakeFest%203%20-%20Berlin%202009/Topic_Mind_Map.pdf" target="_blank">Topic_Mind_Map</a></li>
</ul>
<p>To keep updated on new materials and further news on Cakefest 2009 I would recommend <a title="Search on Twitter for news on cakefest" href="http://twitter.com/#search?q=cakefest" target="_blank">taking a look on Twitter</a>, as news will be posted there first hand.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.christianweigel.com/75-cakefest-2009-wrapup/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Resolving problems with system-tools-backends in Ubuntu Intrepid Ibex (8.10)</title>
		<link>http://www.christianweigel.com/39-resolving-problems-with-system-tools-backends-in-ubuntu-jaunty-jackalope-810/</link>
		<comments>http://www.christianweigel.com/39-resolving-problems-with-system-tools-backends-in-ubuntu-jaunty-jackalope-810/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 11:10:51 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[aptitude]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[packages]]></category>

		<guid isPermaLink="false">http://www.borgond.de/?p=39</guid>
		<description><![CDATA[Installing (x)Ubuntu on my dated Toshiba Satellite everything went smooth. Just after finishing the installation and getting the first package updates a strange Error with system-tools-backends occured. Luckily this problem is already known and a Workaround to fix this problem exists. Open up a terminal and type the following: sudo invoke-rc.d system-tools-backends stop sudo dpkg [...]]]></description>
			<content:encoded><![CDATA[<p>Installing (x)Ubuntu on my dated Toshiba Satellite everything went smooth. Just after finishing the installation and getting the first package updates a strange Error with system-tools-backends occured.</p>
<p>Luckily this problem is already known and a Workaround to fix this problem exists.</p>
<p>Open up a terminal and type the following:</p>
<blockquote><p>sudo invoke-rc.d system-tools-backends stop</p>
<p>sudo dpkg &#8211;configure -a</p></blockquote>
<p>This resolved the error for me &#8211; thanks to <a href="https://launchpad.net/~islevegan" target="_blank">Islevegan</a> for his post on launchpad</p>
<p><a title="Link to Launchpad" href="https://bugs.launchpad.net/ubuntu/+source/system-tools-backends/+bug/294389" target="_blank">Find a thorough description and how to resolve on launchpad</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.christianweigel.com/39-resolving-problems-with-system-tools-backends-in-ubuntu-jaunty-jackalope-810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading to Kubuntu 8.10</title>
		<link>http://www.christianweigel.com/34-upgrading-to-kubuntu-810/</link>
		<comments>http://www.christianweigel.com/34-upgrading-to-kubuntu-810/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 19:39:54 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ati]]></category>
		<category><![CDATA[kdm]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[radeon]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vesa]]></category>

		<guid isPermaLink="false">http://www.borgond.de/?p=34</guid>
		<description><![CDATA[As the geek that I am it was too tempting to immediately upgrade to the latest version of my (current) beloved linux distro. I expected everything to run smoothly &#8211; which as reality showed me again &#8211; is often not the case. And yes &#8211; I should have known better The Upgrade ran without problems, [...]]]></description>
			<content:encoded><![CDATA[<p>As the geek that I am it was too tempting to immediately upgrade to the latest version of my (current) beloved linux distro. I expected everything to run smoothly &#8211; which as reality showed me again &#8211; is often not the case. And yes &#8211; I should have known better <img src='http://www.christianweigel.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>The Upgrade ran without problems, but after restarting my system &#8211; a black screen was greeting me. A bit of research using <a title="Homepage of the Links browser on Sourceforge" href="http://links.sourceforge.net/" target="_blank">Links</a> showed me that I am not the only one running into problems after the upgrade.</p>
<p>After tinkering around and wasting almost a whole night I managed to have KDM, X and my Desktop running again.</p>
<p>If you are running into similar problems &#8211; Kubuntu Ugrade to 8.10 &#8211; X Server doesn&#8217;t start &#8211; KDM not default Display Manager, please <a title="Link to Ubuntu Forums" href="http://ubuntuforums.org/showpost.php?p=6069366&amp;postcount=2" target="_blank">have a read of my post to the Ubuntu Forums</a> where I summarized my efforts getting my X-Server and Desktop back.</p>
<p>Not such a pleasant start &#8211; but I am looking forward <img src='http://www.christianweigel.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.christianweigel.com/34-upgrading-to-kubuntu-810/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

