<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Steve's Ubuntu Weblog</title>
	<atom:link href="http://steveyoung.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://steveyoung.wordpress.com</link>
	<description>Mainly (but not only) about Ubuntu</description>
	<lastBuildDate>Thu, 08 Oct 2009 20:35:29 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='steveyoung.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/40d0c8d5eb48d8bdc6e4fb2c775661ac?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Steve's Ubuntu Weblog</title>
		<link>http://steveyoung.wordpress.com</link>
	</image>
			<item>
		<title>Configuring tftp in Ubuntu</title>
		<link>http://steveyoung.wordpress.com/2009/10/08/configuring-tftp-in-ubuntu/</link>
		<comments>http://steveyoung.wordpress.com/2009/10/08/configuring-tftp-in-ubuntu/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 20:33:30 +0000</pubDate>
		<dc:creator>steveyoung</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://steveyoung.wordpress.com/?p=153</guid>
		<description><![CDATA[I am trying to upgrade an old FNS1000 NAS to be a LAMP server, which I will describe here if I am successful. One thing I needed was to be able to communicate with the NAS via tftp and I had a real hard time setting up the tftp server on my Ubuntu system. I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=153&subd=steveyoung&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I am trying to upgrade an old FNS1000 NAS to be a LAMP server, which I will describe here if I am successful. One thing I needed was to be able to communicate with the NAS via tftp and I had a real hard time setting up the tftp server on my Ubuntu system. I have finally got it working and so I will explain how I did it here.</p>
<p>First you need to download and install tftp tftpd and xinetd using Synaptic or with</p>
<p><code>sudo apt-get install tftp tftpd xinetd</code></p>
<p>Using your favourite editor write the following text file and save it as /etc/xinetd.d/tftp</p>
<p><code>service tftp<br />
{<br />
protocol        = udp<br />
port            = 69<br />
socket_type     = dgram<br />
wait            = yes<br />
user            = nobody<br />
server          = /usr/sbin/in.tftpd<br />
server_args     = -s var/lib/tftpboot<br />
disable         = no<br />
}</code></p>
<p>I found that the directory /var/lib/tftpboot was already in my /var/lib folder. I&#8217;m not sure where it came from but if you have it use it and if not make it with </p>
<p><code>sudo mkdir /var/lib/tftpboot</code></p>
<p>Then change it&#8217;s permissions and ownership with</p>
<p><code>sudo chmod -R 777 /var/lib/tftpboot<br />
sudo chown -R nobody /var/lib/tftpboot</code></p>
<p>Then start tftpd through xinetd. You have to use re-start and not start</p>
<p><code>sudo /etc/init.d/xinetd restart</code></p>
<p>That&#8217;s the configuration. Now to test the server.</p>
<p>Place a test file test.txt in the /var/lib/tftpboot and then give it 777 permissions with </p>
<p><code>chmod 777 /var/lib/tftpboot/test.txt</code></p>
<p>cd into the /var/lib/tftpboot directory and start tftp with the ip address of your PC. On the tftp&gt; type &#8220;put test.txt&#8221; and if everything works you will get the Sent message like below.</p>
<p><code>cd /var/lib/tftpboot<br />
tftp 192.168.0.10<br />
tftp&gt; put test.txt<br />
Sent 722 bytes in 0.0 seconds<br />
tftp&gt; quit</code></p>
<p>Good luck</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/steveyoung.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/steveyoung.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/steveyoung.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/steveyoung.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/steveyoung.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/steveyoung.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/steveyoung.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/steveyoung.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/steveyoung.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/steveyoung.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=153&subd=steveyoung&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://steveyoung.wordpress.com/2009/10/08/configuring-tftp-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f7b2f3de70eec5c499fae50b5fa095e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">steveyoung</media:title>
		</media:content>
	</item>
		<item>
		<title>Microwave Link Engineering Tool proving popular in Poland</title>
		<link>http://steveyoung.wordpress.com/2009/10/08/microwave-link-engineering-tool-proving-popular-in-poland/</link>
		<comments>http://steveyoung.wordpress.com/2009/10/08/microwave-link-engineering-tool-proving-popular-in-poland/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 18:59:04 +0000</pubDate>
		<dc:creator>steveyoung</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://steveyoung.wordpress.com/?p=150</guid>
		<description><![CDATA[This is a special welcome to all of the new MLET users from Poland, I hope that you are happy with the tool. You can leave any comments or suggestions for improvement below. 
There has been a big increase of MLET users from Poland over the last few weeks and I was wondering what the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=150&subd=steveyoung&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is a special welcome to all of the new MLET users from Poland, I hope that you are happy with the tool. You can leave any comments or suggestions for improvement below. </p>
<p>There has been a big increase of MLET users from Poland over the last few weeks and I was wondering what the reason for this increase is. Was there an article written about the tool or was it word of mouth? I would appreciate any feedback on this.</p>
<p>One more thing, please click on any interesting Google Ads links on the page. This is the only way I get anything for my efforts.</p>
<p>Do widzenia </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/steveyoung.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/steveyoung.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/steveyoung.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/steveyoung.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/steveyoung.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/steveyoung.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/steveyoung.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/steveyoung.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/steveyoung.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/steveyoung.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=150&subd=steveyoung&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://steveyoung.wordpress.com/2009/10/08/microwave-link-engineering-tool-proving-popular-in-poland/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f7b2f3de70eec5c499fae50b5fa095e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">steveyoung</media:title>
		</media:content>
	</item>
		<item>
		<title>Forum for General Microwave Discussions</title>
		<link>http://steveyoung.wordpress.com/2009/04/11/forum-for-general-microwave-discussions/</link>
		<comments>http://steveyoung.wordpress.com/2009/04/11/forum-for-general-microwave-discussions/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 17:49:54 +0000</pubDate>
		<dc:creator>steveyoung</dc:creator>
				<category><![CDATA[Gmaps]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[GHz]]></category>
		<category><![CDATA[line of sight]]></category>
		<category><![CDATA[LOS]]></category>
		<category><![CDATA[microwave]]></category>
		<category><![CDATA[path profile]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://steveyoung.wordpress.com/?p=142</guid>
		<description><![CDATA[Because of the general queries I have received in response to my online microwave tools I have decided to initiate a general microwave communications engineering discussion forum. I am hoping that this forum will enable the many knowledgeable microwave engineers out there and myself (with more than 25 years microwave planning experience) to answer any [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=142&subd=steveyoung&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Because of the general queries I have received in response to my online microwave tools I have decided to initiate a <a href="http://microwave-maps.myftp.org/phpBB3/viewtopic.php?f=3&amp;t=2&amp;sid=0599e6213074d4cac87489e1e8392d23">general microwave communications engineering discussion forum</a>. I am hoping that this forum will enable the many knowledgeable microwave engineers out there and myself (with more than 25 years microwave planning experience) to answer any questions regarding microwave communications engineering you might have and at the same time build up a useful knowledge base.</p>
<p>By the way the tools can be found here:<br />
<a href="http://members.chello.at/stephen.joung/indexMW_Distance20.html">Microwave Link Engineering Tool, MLET</a><br />
<a href="http://members.chello.at/stephen.joung/indexDistanceElevation.html">Microwave Line-of-Sight Tool, MLOST</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/steveyoung.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/steveyoung.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/steveyoung.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/steveyoung.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/steveyoung.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/steveyoung.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/steveyoung.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/steveyoung.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/steveyoung.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/steveyoung.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=142&subd=steveyoung&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://steveyoung.wordpress.com/2009/04/11/forum-for-general-microwave-discussions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f7b2f3de70eec5c499fae50b5fa095e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">steveyoung</media:title>
		</media:content>
	</item>
		<item>
		<title>Microwave Online Tools Forum</title>
		<link>http://steveyoung.wordpress.com/2009/04/11/microwave-online-tools-forum/</link>
		<comments>http://steveyoung.wordpress.com/2009/04/11/microwave-online-tools-forum/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 17:00:16 +0000</pubDate>
		<dc:creator>steveyoung</dc:creator>
				<category><![CDATA[Gmaps]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[line of sight]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[link length]]></category>
		<category><![CDATA[microwave]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://steveyoung.wordpress.com/?p=137</guid>
		<description><![CDATA[I have initiated a forum in order to enable discussions regarding my online microwave tools. I will answer any questions about the tools and act upon suggestions if possible.
The tools can be found here:
Microwave Link Engineering Tool, MLET
Microwave Line-of-Sight Tool, MLOST
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=137&subd=steveyoung&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have initiated a <a href="http://microwave-maps.myftp.org/phpBB3/viewforum.php?f=6&amp;sid=0599e6213074d4cac87489e1e8392d23">forum</a> in order to enable discussions regarding my online microwave tools. I will answer any questions about the tools and act upon suggestions if possible.</p>
<p>The tools can be found here:<br />
<a href="http://members.chello.at/stephen.joung/indexMW_Distance20.html">Microwave Link Engineering Tool, MLET</a><br />
<a href="http://members.chello.at/stephen.joung/indexDistanceElevation.html">Microwave Line-of-Sight Tool, MLOST</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/steveyoung.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/steveyoung.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/steveyoung.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/steveyoung.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/steveyoung.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/steveyoung.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/steveyoung.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/steveyoung.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/steveyoung.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/steveyoung.wordpress.com/137/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=137&subd=steveyoung&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://steveyoung.wordpress.com/2009/04/11/microwave-online-tools-forum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f7b2f3de70eec5c499fae50b5fa095e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">steveyoung</media:title>
		</media:content>
	</item>
		<item>
		<title>Deleting root&#8217;s trash</title>
		<link>http://steveyoung.wordpress.com/2009/03/26/deleting-roots-trash/</link>
		<comments>http://steveyoung.wordpress.com/2009/03/26/deleting-roots-trash/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 20:04:00 +0000</pubDate>
		<dc:creator>steveyoung</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://steveyoung.wordpress.com/?p=133</guid>
		<description><![CDATA[Time again I manage to delete the root trash but next time I&#8217;ve forgotten how to do it. So this time I&#8217;ll write it down.
open a root nautilus window with
gksu nautilus /root/.Trash/
now highlight the files you want to delete and then press Shift-delete.
Do not &#8220;move to trash&#8221; as they will just pop up again  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=133&subd=steveyoung&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Time again I manage to delete the root trash but next time I&#8217;ve forgotten how to do it. So this time I&#8217;ll write it down.</p>
<p>open a root nautilus window with</p>
<p><code>gksu nautilus /root/.Trash/</code></p>
<p>now highlight the files you want to delete and then press Shift-delete.</p>
<p>Do not &#8220;move to trash&#8221; as they will just pop up again <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/steveyoung.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/steveyoung.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/steveyoung.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/steveyoung.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/steveyoung.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/steveyoung.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/steveyoung.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/steveyoung.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/steveyoung.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/steveyoung.wordpress.com/133/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=133&subd=steveyoung&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://steveyoung.wordpress.com/2009/03/26/deleting-roots-trash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f7b2f3de70eec5c499fae50b5fa095e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">steveyoung</media:title>
		</media:content>
	</item>
		<item>
		<title>Microwave Planning Tool for Your Website</title>
		<link>http://steveyoung.wordpress.com/2009/02/28/microwave-planning-tool-for-your-website/</link>
		<comments>http://steveyoung.wordpress.com/2009/02/28/microwave-planning-tool-for-your-website/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 15:35:51 +0000</pubDate>
		<dc:creator>steveyoung</dc:creator>
				<category><![CDATA[Gmaps]]></category>

		<guid isPermaLink="false">http://steveyoung.wordpress.com/?p=127</guid>
		<description><![CDATA[Imagine this microwave planning tool on your company webpage with your companies look and feel! Imagine how that would impress your customers!
The LOS part can be seen here and the microwave calculation part here.
I am prepared  to sell the source code together with  documentation  and assistance in adapting it to your needs.
I could also include [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=127&subd=steveyoung&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Imagine this microwave planning tool on your company webpage with your companies look and feel! Imagine how that would impress your customers!</p>
<p>The LOS part can be seen <a href="http://members.chello.at/stephen.joung/indexDistanceElevation.html">here</a> and the microwave calculation part <a href="http://members.chello.at/stephen.joung/indexMW_Distance20.html">here</a>.</p>
<p>I am prepared  to sell the source code together with  documentation  and assistance in adapting it to your needs.</p>
<p>I could also include a new php script I have written which enables the free NASA SRTM3 height data to be installed and read from your own server.</p>
<p>If you are interested leave a short comment below and I will contact you by email.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/steveyoung.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/steveyoung.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/steveyoung.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/steveyoung.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/steveyoung.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/steveyoung.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/steveyoung.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/steveyoung.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/steveyoung.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/steveyoung.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=127&subd=steveyoung&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://steveyoung.wordpress.com/2009/02/28/microwave-planning-tool-for-your-website/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f7b2f3de70eec5c499fae50b5fa095e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">steveyoung</media:title>
		</media:content>
	</item>
		<item>
		<title>Nautilus &#8220;Open as root&#8221; script and &#8220;gksudo nautilus&#8221; not working.</title>
		<link>http://steveyoung.wordpress.com/2009/01/01/nautilus-open-as-root-script-and-gksudo-nautilus-not-working/</link>
		<comments>http://steveyoung.wordpress.com/2009/01/01/nautilus-open-as-root-script-and-gksudo-nautilus-not-working/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 20:00:23 +0000</pubDate>
		<dc:creator>steveyoung</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://steveyoung.wordpress.com/?p=124</guid>
		<description><![CDATA[I recently tried my &#8220;open as root&#8221; script and it didn&#8217;t work so I tried &#8220;gksudo nautilus&#8221; from the terminal and got the following error:
steve@x-desktop:~$ sudo nautilus
[sudo] password for steve:
seahorse nautilus module initialized
Initializing nautilus-share extension

(nautilus:6653): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed

(nautilus:6653): GLib-CRITICAL **: g_error_free: assertion `error != NULL' failed

(nautilus:6653): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=124&subd=steveyoung&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently tried my &#8220;open as root&#8221; script and it didn&#8217;t work so I tried &#8220;gksudo nautilus&#8221; from the terminal and got the following error:</p>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:226px;text-align:left;margin:0;padding:6px;">steve@x-desktop:~$ sudo nautilus
[sudo] password for steve:
seahorse nautilus module initialized
Initializing nautilus-share extension

(nautilus:6653): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed

(nautilus:6653): GLib-CRITICAL **: g_error_free: assertion `error != NULL' failed

(nautilus:6653): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed

(nautilus:6653): GLib-GIO-WARNING **: (/build/buildd/glib2.0-2.16.6/gio/gfile.c:5249):IA__g_file_load_partial_contents_finish: runtime check failed: (g_simple_async_result_get_source_tag (simple) == g_file_load_contents_async)
Segmentation fault</pre>
<p>The problem was that I had a blank CD in the  drive. After I removed the CD everything was back to normal.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/steveyoung.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/steveyoung.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/steveyoung.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/steveyoung.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/steveyoung.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/steveyoung.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/steveyoung.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/steveyoung.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/steveyoung.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/steveyoung.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=124&subd=steveyoung&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://steveyoung.wordpress.com/2009/01/01/nautilus-open-as-root-script-and-gksudo-nautilus-not-working/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f7b2f3de70eec5c499fae50b5fa095e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">steveyoung</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://steveyoung.wordpress.com/2008/11/09/120/</link>
		<comments>http://steveyoung.wordpress.com/2008/11/09/120/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 15:38:32 +0000</pubDate>
		<dc:creator>steveyoung</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://steveyoung.wordpress.com/?p=120</guid>
		<description><![CDATA[I have made a currency convertor which uses the daily updated European Central Banks exchange rates. You can convert between 35 different currencies.
The converter can be found here.
The previous post shows how I download and upload the ECB XML file.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=120&subd=steveyoung&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have made a currency convertor which uses the daily updated European Central Banks exchange rates. You can convert between 35 different currencies.</p>
<p>The converter can be found <a href="http://members.chello.at/stephen.joung/indexCC.html" target="_blank">here</a>.</p>
<p>The previous post shows how I download and upload the ECB XML file.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/steveyoung.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/steveyoung.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/steveyoung.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/steveyoung.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/steveyoung.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/steveyoung.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/steveyoung.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/steveyoung.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/steveyoung.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/steveyoung.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=120&subd=steveyoung&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://steveyoung.wordpress.com/2008/11/09/120/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f7b2f3de70eec5c499fae50b5fa095e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">steveyoung</media:title>
		</media:content>
	</item>
		<item>
		<title>Using the ECB Currency XML with Javascript</title>
		<link>http://steveyoung.wordpress.com/2008/11/08/112/</link>
		<comments>http://steveyoung.wordpress.com/2008/11/08/112/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 17:43:45 +0000</pubDate>
		<dc:creator>steveyoung</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[calculator]]></category>
		<category><![CDATA[converter]]></category>
		<category><![CDATA[Cube]]></category>
		<category><![CDATA[currency]]></category>
		<category><![CDATA[ecb]]></category>
		<category><![CDATA[European Central Bank]]></category>
		<category><![CDATA[exchange rate]]></category>
		<category><![CDATA[gesmes]]></category>
		<category><![CDATA[inter domain]]></category>
		<category><![CDATA[parse]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://steveyoung.wordpress.com/?p=112</guid>
		<description><![CDATA[The European Central Bank make available daily an XML file with the exchange rate of the Euro to 34 currencies. This can be found at http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml
To use this in javascript I faced two problems:
1) How to get around the inter-domain problem. The easiest way to do this is with PHP/Curl but my ISP does not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=112&subd=steveyoung&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The European Central Bank make available daily an XML file with the exchange rate of the Euro to 34 currencies. This can be found at <a href="http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml" target="_blank">http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml</a></p>
<p>To use this in javascript I faced two problems:</p>
<p>1) How to get around the inter-domain problem. The easiest way to do this is with PHP/Curl but my ISP does not support php! I solved this by downloading the file and uploading it to my webserver. First I GET the file from the CEB website.</p>
<p><code>&lt;?php<br />
function get_file1($file, $local_path, $newfilename) {<br />
$out = fopen($newfilename, 'wb');<br />
if ($out == FALSE){<br />
print "File not opened&lt;br&gt;";<br />
exit;<br />
}<br />
$ch = curl_init();<br />
curl_setopt($ch, CURLOPT_FILE, $out);<br />
curl_setopt($ch, CURLOPT_HEADER, 0);<br />
curl_setopt($ch, CURLOPT_URL, $file);<br />
curl_exec($ch);<br />
curl_close($ch);<br />
}</code></p>
<p>and the I PUT the file onto my server.</p>
<p><code>$url = "ftp://my.server.at/ECBRates.xml";<br />
$localfile = "/var/www/ECBRates";<br />
$fp = fopen ($localfile, "r");<br />
$ch = curl_init();<br />
curl_setopt($ch, CURLOPT_VERBOSE, 1);<br />
curl_setopt($ch, CURLOPT_USERPWD, 'user:password');<br />
curl_setopt($ch, CURLOPT_URL, $url);<br />
curl_setopt($ch, CURLOPT_PUT, 1);<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($ch, CURLOPT_INFILE, $fp);<br />
curl_setopt($ch, CURLOPT_INFILESIZE, filesize($localfile));<br />
$http_result = curl_exec($ch);<br />
$error = curl_error($ch);<br />
$http_code = curl_getinfo($ch ,CURLINFO_HTTP_CODE);<br />
curl_close($ch);<br />
fclose($fp);<br />
print $http_code;<br />
print "&lt;br /&gt;&lt;br /&gt;$http_result";<br />
if ($error) {<br />
print "&lt;br /&gt;&lt;br /&gt;$error";<br />
}<br />
?&gt;</code></p>
<p>Copy these into a single document and name it xmlgetandput.php and run it using curl:</p>
<p><code>curl localhost/xmlgetandput.php</code></p>
<p>If for whatever reason you are unable to do this yourself I can upload the file (or any other file) to your webserver daily for fee of €5 per month. Just make a comment with the title &#8220;upload&#8221; and I will contact you via email with details.</p>
<p>2) Loading and parsing an XML file is different for DOM compliant browsers and for Internet Explorer. I found this simple for the DOM complient browsers but it took me over a week of googling to get the IE working. The problem was further compounded by the fact that the ECB Currency XML has a strange hierarchy. But I got it working with the following javascript code.</p>
<p><code>var doc<br />
function load() {<br />
if (document.implementation &amp;&amp;document.implementation.createDocument){<br />
doc = document.implementation.createDocument("", "", null);<br />
doc.load('CEBrates.xml');<br />
doc.onload = createTableMoz;<br />
}<br />
else if (window.ActiveXObject){<br />
var doc1 = new ActiveXObject('Msxml2.DOMDocument.3.0');<br />
function loadXML(xmlFile){<br />
doc1.async=false;<br />
doc1.load(xmlFile);<br />
doc1.setProperty("SelectionLanguage", "XPath");<br />
var nsMappings = "xmlns:gesmes='http://www.gesmes.org/xml/2002-08-01' " + "xmlns:default='http://www.ecb.int/vocabulary/2002-08-01/eurofxref'";<br />
doc1.setProperty("SelectionNamespaces", nsMappings);<br />
var xpath = "/gesmes:Envelope/default:Cube/default:Cube";<br />
var cubeMain = doc1.selectNodes(xpath)<br />
var dateRate = cubeMain[0].getAttribute('time');<br />
var dateRateSplit = dateRate.split('-');<br />
xpath = "/gesmes:Envelope/default:Cube/default:Cube/default:Cube";<br />
var cubes = doc1.selectNodes(xpath);<br />
for (var i = 2; i &lt; cubes.length; i++){<br />
var currency = cubes[i].getAttribute('currency');<br />
var rate = cubes[i].getAttribute('rate');<br />
rateObject[currency] = rate;<br />
}<br />
document.getElementById('boldStuff').innerHTML = dateRateSplit[2] + "." + dateRateSplit[1] + "." + dateRateSplit[0];<br />
document.getElementById("currency").value = "GBP";<br />
getRates();<br />
}<br />
loadXML('CEBrates.xml');<br />
}<br />
else {<br />
alert('ActiveX must be enabled for this feature');<br />
return;<br />
}<br />
}<br />
function createTableMoz() {<br />
var cubes = doc.getElementsByTagNameNS('http://www.ecb.int/vocabulary/2002-08-01/eurofxref','Cube');<br />
var dateRate = cubes[1].getAttribute('time');<br />
var dateRateSplit = dateRate.split('-');<br />
for (var i = 2; i &lt; cubes.length; i++){<br />
var currency = cubes[i].getAttribute('currency');<br />
var rate = cubes[i].getAttribute('rate');<br />
rateObject[currency] = rate;<br />
}<br />
document.getElementById('boldStuff').innerHTML = dateRateSplit[2] + "." + dateRateSplit[1] + "." + dateRateSplit[0];<br />
document.getElementById("currency").value = "GBP";<br />
getRates();<br />
};<br />
var rateObject = {};<br />
function getRates() {<br />
var curr= document.getElementById("currency").value;<br />
var currRate = rateObject[curr];<br />
var currStatement= "1 EUR = " + currRate + " " + curr ;<br />
document.getElementById("rate").value=currStatement;<br />
var currRev=1/currRate;<br />
currRevFix=currRev.toFixed(5);<br />
var currRevStatement= "1 " + curr +"= " + currRevFix + " EUR";<br />
document.getElementById("rateRev").value=currRevStatement;<br />
};</code></p>
<p>Here is a link to the finished product <a href="http://members.chello.at/stephen.joung/indexCC.html" target="_blank">http://members.chello.at/stephen.joung/indexCC.html</a> . You might find the currency converter useful.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/steveyoung.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/steveyoung.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/steveyoung.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/steveyoung.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/steveyoung.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/steveyoung.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/steveyoung.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/steveyoung.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/steveyoung.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/steveyoung.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=112&subd=steveyoung&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://steveyoung.wordpress.com/2008/11/08/112/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f7b2f3de70eec5c499fae50b5fa095e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">steveyoung</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 8.04 Gnome logout hangs system</title>
		<link>http://steveyoung.wordpress.com/2008/09/21/ubuntu-804-gnome-logout-hangs-system/</link>
		<comments>http://steveyoung.wordpress.com/2008/09/21/ubuntu-804-gnome-logout-hangs-system/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 11:54:50 +0000</pubDate>
		<dc:creator>steveyoung</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://steveyoung.wordpress.com/?p=106</guid>
		<description><![CDATA[After the upgrade from 7.10 to 8.04 I have hit the first small bug. I couldn&#8217;t use the &#8220;System &#8211; Quit&#8221; or the Log Out Button in Gnome to logout as they caused the session to hang. Also &#8220;gnome-session-save &#8211;kill&#8221; in a terminal caused the same fault. The only way out was a Control-Alt-Backspace. The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=106&subd=steveyoung&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After the upgrade from 7.10 to 8.04 I have hit the first small bug. I couldn&#8217;t use the &#8220;System &#8211; Quit&#8221; or the Log Out Button in Gnome to logout as they caused the session to hang. Also &#8220;gnome-session-save &#8211;kill&#8221; in a terminal caused the same fault. The only way out was a Control-Alt-Backspace. The forum is down today so I have struggled to find a solution and I have succeeded. Here it is:</p>
<p>Go to &#8220;System &#8211; Preferences &#8211; Sessions&#8221; and either activate or add and activate &#8220;gnome-power-manager&#8221;. and restart Gnome. That&#8217;s it, the usual logout box now appears as soon as you click the Log Out Button.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/steveyoung.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/steveyoung.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/steveyoung.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/steveyoung.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/steveyoung.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/steveyoung.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/steveyoung.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/steveyoung.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/steveyoung.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/steveyoung.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=steveyoung.wordpress.com&blog=656339&post=106&subd=steveyoung&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://steveyoung.wordpress.com/2008/09/21/ubuntu-804-gnome-logout-hangs-system/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f7b2f3de70eec5c499fae50b5fa095e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">steveyoung</media:title>
		</media:content>
	</item>
	</channel>
</rss>